@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-white-100: #fff8f9;
  --color-white-100: #f3f9ff;
  --color-black: #000;
  --color-black-100: #222020;
  --color-red: #f0344a;
  --color-pink: #ff7193;
  --color-pink-100: #ffe8ee;
  --color-pink-200: #ed4568;
  --color-pink-300: #e4385b;
  --color-pink-400: #d53757;
  --color-pink-500: #c82345;
  --color-green: #25a84a;
  --color-orange: #ff6b4a;
  --color-blue: #0e7de3;
  --color-blue-100: #4e8ae3;
  --color-blue-200: #359eff;
  --color-gray: #4d4c5c;
  --color-gray-100: #696878;
  --color-gray-200: #9e9ea7;
  --color-gray-300: #cbcbd4;
  --color-gray-400: #e9e8eb;
  --color-gray-500: #f1f1f1;
  --color-gray-600: #f8f8f8;
  --transition-normal: all 0.3s ease 0s;
  --shadow-block: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
  --gradient-pink: linear-gradient(277deg, #d9294d -8.56%, #fd5e7e 111.41%);
  --gradient-blue: linear-gradient(94deg, #4e8ae3 11.4%, #2962b7 103.02%);
}

/*Обнуление*/

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

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

:focus,
:active {
  outline: none;
}

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

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

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

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: top;
}

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

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 19px;
}

/*Обнуление*/

body {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background: var(--color-gray-500);
}

body.lock {
  overflow: hidden;
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

body.lock .header .header__wrap {
  padding-right: var(--fancybox-scrollbar-compensate);
}

body.hide-scrollbar .header .header__wrap {
  padding-right: var(--fancybox-scrollbar-compensate);
}

body.hide-scrollbar.admin-page .header .header__wrap {
  padding-right: 0;
}

body.page-messages .main {
  padding-bottom: 24px;
}

body.admin-page .header {
  position: relative;
}

body.admin-page .main {
  padding-top: 24px;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  margin: 0 auto;
  max-width: 1032px;
}

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

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: rgba(34, 32, 32, 0.5);
}

.fancybox__slide {
  padding: 30px 16px;
}

@property --bgColorWhite1 {
  syntax: "<color>";
  initial-value: rgba(255, 255, 255, 0);
  inherits: false;
}

@property --bgColorWhite2 {
  syntax: "<color>";
  initial-value: rgba(255, 255, 255, 0);
  inherits: false;
}

@property --headerBtn1 {
  syntax: "<color>";
  initial-value: #d9294d;
  inherits: false;
}

@property --headerBtn2 {
  syntax: "<color>";
  initial-value: #fd5e7e;
  inherits: false;
}

@property --btnSwitch1 {
  syntax: "<color>";
  initial-value: #cbcbd4;
  inherits: false;
}

@property --btnSwitch2 {
  syntax: "<color>";
  initial-value: #cbcbd4;
  inherits: false;
}

@property --btnSecondary1 {
  syntax: "<color>";
  initial-value: rgba(255, 255, 255, 0);
  inherits: false;
}

@property --btnSecondary2 {
  syntax: "<color>";
  initial-value: rgba(255, 255, 255, 0);
  inherits: false;
}

@property --btnLocation1 {
  syntax: "<color>";
  initial-value: #f8f8f8;
  inherits: false;
}

@property --btnLocation2 {
  syntax: "<color>";
  initial-value: #f8f8f8;
  inherits: false;
}

.item-pink-bg {
  position: relative;
  background: -o-linear-gradient(173deg, var(--bgColorWhite1) -8.56%, var(--bgColorWhite2) 111.41%);
  background: linear-gradient(277deg, var(--bgColorWhite1) -8.56%, var(--bgColorWhite2) 111.41%);
  transition: --bgColorWhite1 0.3s ease, --bgColorWhite2 0.3s ease, color 0.3s ease, border-color 0.3s ease, font-weight 0.3s ease;
}

.item-pink-bg:hover {
  --bgColorWhite1: #d9294d;
  --bgColorWhite2: #fd5e7e;
  color: var(--color-white);
}

.item-pink-bg.active {
  font-weight: 600;
  color: var(--color-white);
  --bgColorWhite1: #d9294d;
  --bgColorWhite2: #fd5e7e;
}

.item-pink-bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1.5px solid var(--color-gray-400);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--color-white);
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 92px;
  padding-bottom: 32px;
}

.main.inner {
  padding-bottom: 24px;
}

h1 {
  color: inherit;
  font-size: 38px;
  font-weight: 700;
  line-height: normal;
}

h2 {
  color: inherit;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

h3 {
  color: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

p {
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 5px 24px;
  cursor: pointer;
  height: 54px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  fill: currentColor;
}

.btn.btn-disabled {
  background: var(--color-gray-600);
  color: var(--color-gray-300);
  pointer-events: none;
}

.btn.btn-secondary {
  border: 1px solid var(--color-gray-400);
  color: var(--color-gray-100);
  background: -o-linear-gradient(173deg, var(--btnSecondary1) -8.56%, var(--btnSecondary2) 111.41%);
  background: linear-gradient(277deg, var(--btnSecondary1) -8.56%, var(--btnSecondary2) 111.41%);
  transition: border-color 0.3s ease, color 0.3s ease, --btnSecondary1 0.3s ease, --btnSecondary2 0.3s ease;
}

.btn.btn-secondary.active {
  background: -o-linear-gradient(173deg, #d9294d -8.56%, #fd5e7e 111.41%);
  background: linear-gradient(277deg, #d9294d -8.56%, #fd5e7e 111.41%);
  color: var(--color-white);
  border-color: transparent;
}

.btn.btn-secondary.active:hover {
  background: -o-linear-gradient(173deg, #c82345 -8.56%, #df4765 111.41%);
  background: linear-gradient(277deg, #c82345 -8.56%, #df4765 111.41%);
}

.btn.btn-blue {
  color: var(--color-white);
  background: #31a9ed;
}

.btn.btn-blue-dark {
  color: var(--color-white);
  background: var(--color-blue-200);
}

.btn.btn-pink {
  color: var(--color-white);
  background: -o-linear-gradient(173deg, #d9294d -8.56%, #fd5e7e 111.41%);
  background: linear-gradient(277deg, #d9294d -8.56%, #fd5e7e 111.41%);
  transition: --btnPink1 0.3s ease, --btnPink2 0.3s ease;
}

.btn.btn-white {
  color: var(--color-gray-100);
  background: transparent;
}

.btn.btn-outline-white {
  color: var(--color-white);
  border: 1px solid var(--color-gray-400);
}

.btn.btn-outline-white:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-pink-200);
}

.btn.btn-small {
  height: 40px;
}

.bread-crumbs {
  margin-bottom: 24px;
}

.bread-crumbs__list > span {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  display: inline-block;
  margin: 0 8px;
}

.bread-crumbs__item {
  display: inline;
  color: var(--color-gray-100);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.bread-crumbs__item a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.bread-crumbs__item span {
  color: var(--color-gray-200);
  font-weight: 400;
}

.slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  cursor: pointer;
  margin: 0;
  opacity: 0.3;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 10px;
  max-width: 100%;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-pink);
}

.slider-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.main-popup {
  display: none;
}

.main-popup.fancybox__content {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  background: var(--color-white);
  padding: 30px;
}

.main-popup.fancybox__content .f-button.is-close-btn {
  display: none;
}

.main-popup__close {
  color: var(--color-gray-200);
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
  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;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-popup__close:hover {
  color: var(--color-gray);
}

.main-popup__close svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.main-popup__title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 12px;
  padding-right: 40px;
  min-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-popup__text {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.main-popup__btn {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-popup__btn .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

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

.main-popup__buttons .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 10px);
  max-width: 100%;
}

.main-popup__buttons .btn.inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.main-popup .main-form {
  margin-top: 24px;
}

.location-popup {
  display: none;
}

.location-popup.fancybox__content {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  background: var(--color-white);
  padding: 30px;
}

.location-popup.fancybox__content .f-button.is-close-btn {
  display: none;
}

.location-popup__close {
  color: var(--color-gray-200);
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.location-popup__close:hover {
  color: var(--color-gray);
}

.location-popup__close svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.location-popup__title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 24px;
  padding-right: 40px;
  min-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.location-popup__search {
  margin-bottom: 24px;
}

.location-popup__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 20px;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
}

.location-popup__item {
  padding: 6px 20px;
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  color: rgba(34, 32, 32, 0.5);
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  background: -o-linear-gradient(173deg, var(--btnLocation1) -8.56%, var(--btnLocation2) 111.41%);
  background: linear-gradient(277deg, var(--btnLocation1) -8.56%, var(--btnLocation2) 111.41%);
  transition: color 0.3s ease, --btnLocation1 0.3s ease, --btnLocation2 0.3s ease;
}

.location-popup__item.active {
  color: var(--color-white);
  --btnLocation1: #d9294d;
  --btnLocation2: #fd5e7e;
}

.search-city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  background: var(--color-gray-600);
  padding: 15px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-city button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: var(--color-gray-100);
  background: transparent;
}

.search-city button:focus-visible {
  outline: none;
}

.search-city button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.search-city input {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  background: transparent;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

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

.block-margin:first-child {
  margin-top: 0;
}

.block-margin:last-child {
  margin-bottom: 0;
}

.footer {
  background: var(--color-black-100);
}

.footer-top {
  padding: 50px 42px 45px;
  background: #282828;
}

.footer-top .container {
  max-width: 1440px;
  padding: 0;
}

.footer-top__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -10px;
}

.footer-top__left {
  padding: 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.footer-top__logo {
  display: inline-block;
  width: 225px;
}

.footer-top__logo img {
  max-width: 100%;
}

.footer-top__copy {
  color: #cbcbd4;
  font-size: 16px;
  line-height: 150%;
  margin-top: 22px;
}

.footer-top__copy span {
  display: inline-block;
}

.footer-top__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.footer-top__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.footer-top__box {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 290px;
  max-width: 100%;
}

.footer-top__box:nth-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 260px;
  max-width: 100%;
}

.footer-top__box:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  max-width: 260px;
}

.footer-top__heading {
  color: #f9f9f9;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-menu {
  padding: 0;
  list-style: none;
}

.footer-menu li a {
  display: inline-block;
  padding: 5px 0;
  color: var(--color-gray-300);
  font-size: 16px;
  line-height: 150%;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer-menu li a:hover {
  color: var(--color-gray-200);
}

.footer-bottom {
  background: var(--color-black-100);
  padding: 24px 80px;
}

.footer-bottom .container {
  max-width: 1440px;
  padding: 0;
}

.footer-bottom__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer-bottom__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 70px;
  max-width: 100%;
  height: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
}

.footer-bottom__text {
  color: var(--color-white);
  font-size: 16px;
  line-height: 150%;
  max-width: 560px;
}

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

.categories-block {
  padding: 30px 24px 24px;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

.categories-block__title {
  margin-bottom: 12px;
}

.categories-block__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
}

.categories-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -3.5px;
}

.categories-block__col {
  padding: 3.5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
  max-width: 100%;
}

.categories-block__item {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  border-radius: 12px;
  padding-bottom: 100%;
}

.categories-block__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  will-change: transform;
  border-radius: 12px;
  overflow: hidden;
}

.categories-block__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.categories-block__btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  width: calc(100% - 20px);
  border-radius: 8px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  height: 40px;
  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;
  color: var(--color-black-100);
  font-size: 14px;
  font-weight: 600;
  line-height: 125%;
  padding: 5px 5px;
  -webkit-transition: -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
  transition: -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
  -o-transition: transform 0.22s ease, box-shadow 0.22s ease;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transition: transform 0.22s ease, box-shadow 0.22s ease, -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
  will-change: transform;
}

.main-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin-top: 24px;
}

.main-pagination__prev {
  border-radius: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  max-width: 100%;
  height: 48px;
  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;
  padding: 3px;
  color: var(--color-black-100);
}

.main-pagination__prev svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.main-pagination__block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  max-width: 100%;
  height: 48px;
  color: var(--color-black-100);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 0;
}

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

.main-pagination__item {
  border-radius: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  max-width: 100%;
  height: 48px;
  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;
  padding: 3px;
  color: var(--color-black-100);
  text-align: center;
  font-size: 16px;
  line-height: 150%;
}

.main-pagination__next {
  border-radius: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  max-width: 100%;
  height: 48px;
  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;
  padding: 3px;
  color: var(--color-black-100);
}

.main-pagination__next svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.main-block__top {
  margin-bottom: 24px;
}

.main-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -12px;
}

.main-block__left {
  padding: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

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

.main-block__icon {
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-blue);
}

.main-block__icon.inner {
  background: var(--gradient-pink);
}

.main-block__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.main-block__right {
  padding: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.main-block__items {
  padding: 4px 5px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  pointer-events: auto;
}

.main-block__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;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  padding: 5px 16px;
  background: var(--color-white);
  cursor: pointer;
  border-radius: 100px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.main-block__item.active {
  background: #f5f5f5;
}

.main-block__item.active.inner:nth-child(3) .main-block__item-icon {
  color: var(--color-blue-200);
}

.main-block__item.active.inner:nth-child(4) .main-block__item-icon {
  color: var(--color-blue-100);
}

.main-block__item.active:nth-child(1) .main-block__item-icon {
  color: var(--color-pink);
}

.main-block__item.active:nth-child(2) .main-block__item-icon {
  color: var(--color-red);
}

.main-block__item.active .main-block__item-text {
  color: var(--color-black-100);
}

.main-block__item-icon {
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: var(--color-gray-100);
}

.main-block__item-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.main-block__item-text {
  color: var(--color-gray-100);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.main-block__body {
  position: relative;
  z-index: 2;
}

.main-block__body-item {
  display: none;
}

.main-block__body-item.active {
  display: block;
}

.item-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 16px;
  border-radius: 16px;
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 24px;
  background: var(--color-white);
}

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

.item-product__labels {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
}

.item-product__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 130%;
  height: 24px;
  padding: 2px 8px;
  border-radius: 30px;
  background: var(--gradient-blue);
}

.item-product__label.inner {
  background: var(--gradient-pink);
}

.item-product__label svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  max-width: 100%;
  height: 16px;
  fill: currentColor;
}

.item-product__name {
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-product__name:hover {
  color: var(--color-gray-100);
}

.item-product__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: 100%;
  row-gap: 16px;
}

.item-product__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 4px;
}

.item-product__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-product__box-icon {
  color: var(--color-gray-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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-product__box-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.item-product__box-text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

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

.item-product__btn-favorite {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  cursor: pointer;
}

.item-product__btn-favorite.inner .item-product__btn-favorite-icon {
  border: none;
  -webkit-box-shadow: 0 0 0 1.5px var(--color-gray-200) inset;
          box-shadow: 0 0 0 1.5px var(--color-gray-200) inset;
}

.item-product__btn-favorite-icon {
  color: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-200);
  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;
  padding-top: 2px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-product__btn-favorite-icon svg {
  width: 20px;
  height: 20px;
  fill: transparent;
  stroke: var(--color-gray-200);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-product__btn-favorite-text {
  display: none;
  color: var(--color-gray-100);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-product__btn {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 195px;
  height: 39px;
  color: var(--color-gray-100);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  border-radius: 8px;
  padding: 5px 24px;
  border: 2px solid var(--color-gray-400);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-product__btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 10px 24px;
}

.header .container {
  max-width: 1440px;
  padding: 0;
}

.header__row {
  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: 0 -15px;
}

.header__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__box {
  padding: 0 15px;
}

.header__block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
}

.header__search {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__notifications {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__user-menu {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__btn {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__menu-icon {
  display: none;
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__mob-menu {
  display: none;
  height: 0;
}

.icon-menu {
  cursor: pointer;
  width: 28px;
  height: 28px;
  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;
}

.icon-menu__body {
  width: 22.5px;
  height: 17px;
  position: relative;
}

.icon-menu span {
  position: absolute;
  top: 7px;
  width: 100%;
  height: 3px;
  left: 0;
  border-radius: 4px;
  background: var(--gradient-pink);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

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

.header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 48px;
  border-radius: 8px;
  background: -o-linear-gradient(173deg, #d9294d -8.56%, #fd5e7e 111.41%);
  background: linear-gradient(277deg, #d9294d -8.56%, #fd5e7e 111.41%);
  padding: 5px 20px;
}

.header-btn:hover {
  border-radius: 8px;
  background: -o-linear-gradient(173deg, #c82345 -8.56%, #df4765 111.41%);
  background: linear-gradient(277deg, #c82345 -8.56%, #df4765 111.41%);
  color: var(--color-white);
}

.header-btn__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
}

.header-btn__icon img {
  max-width: 100%;
  max-height: 100%;
}

.header-btn__icon img:first-child {
  display: block;
}

.header-btn__icon img:last-child {
  display: none;
}

.header-btn__text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.notifications-btn {
  position: relative;
  cursor: pointer;
}

.notifications-btn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
}

.notifications-btn__icon img {
  width: 32px;
  height: 32px;
}

.notifications-btn__count {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-white);
  position: absolute;
  top: -8px;
  right: -13px;
  z-index: 2;
}

.notifications-btn__count span {
  width: 24px;
  height: 24px;
  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;
  border-radius: 50%;
  border: 2px solid var(--color-pink-500);
  color: var(--color-pink-300);
  font-size: 11.396px;
  font-weight: 600;
  line-height: normal;
}

.menu-user {
  position: relative;
}

.menu-user.open .menu-user__arrow {
  color: var(--color-gray);
}

.menu-user.open .menu-user__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.menu-user.open .menu-user__body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.menu-user.inner .menu-user__list {
  padding: 16px 30px 16px 30px;
}

.menu-user__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-user__top-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.menu-user__top-text:hover {
  color: var(--color-gray);
  color: var(--color-pink-400);
}

.menu-user__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: inherit;
  padding-left: 6px;
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.menu-user__arrow:hover {
  color: var(--color-gray);
}

.menu-user__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-user__body {
  position: absolute;
  top: 100%;
  left: -58px;
  z-index: 5;
  padding-top: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu-user__list {
  border-radius: 8px;
  border: 1px solid var(--color-gray-400);
  background: var(--color-white);
  -webkit-box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
  min-width: 214px;
  padding: 16px 50px 16px 30px;
  list-style: none;
}

.menu-user__item:not(:first-child) {
  margin-top: 12px;
}

.menu-user__item.inner {
  display: none;
}

.menu-user__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu-user__link:hover {
  color: var(--color-gray);
  color: var(--color-pink-400);
}

.menu-user__icon {
  color: inherit;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
}

.menu-user__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-user__text {
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.menu-user__count {
  height: 28px;
  min-width: 30px;
  border-radius: 5px;
  background: var(--gradient-pink);
  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;
  padding: 1px 6px 2px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: var(--color-gray-300);
}

.search-btn:hover {
  color: var(--color-pink-400);
}

.search-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.logo {
  display: inline-block;
  width: 225px;
}

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

.header-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.header-location:hover {
  color: var(--color-gray);
  color: var(--color-pink-400);
}

.header-location__icon {
  color: inherit;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
}

.header-location__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-location__text {
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.menu__top {
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e4e4;
  padding: 0 44px 16px 0;
  background: var(--color-white);
  margin-bottom: 10px;
  margin-right: 10px;
}

.menu__user {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.menu__user-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41px;
  max-width: 100%;
  height: 41px;
  position: relative;
  overflow: hidden;
}

.menu__user-photo img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.menu__user-name {
  color: var(--color-black-100);
  font-size: 15px;
  font-weight: 700;
  line-height: 130%;
}

.menu__user-city {
  color: var(--color-gray-100);
  font-size: 13px;
  margin-top: 2px;
}

.menu__close {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 5;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 44px;
  max-width: 100%;
  height: 44px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-gray-200);
  margin-left: auto;
}

.menu__close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu__personal {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
}

.menu__personal:first-child {
  margin-top: 0;
}

.menu__personal:last-child {
  margin-bottom: 0;
}

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

.menu__btn:first-child {
  margin-top: 0;
}

.menu__btn:last-child {
  margin-bottom: 0;
}

.menu__btn .btn {
  width: 100%;
}

.menu__block {
  position: relative;
}

.menu__block-top {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.menu__block-top:hover {
  color: var(--color-gray);
}

.menu__block-top-text {
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.menu__block-top-icon {
  color: inherit;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
}

.menu__block-top-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  list-style: none;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.menu__link:hover .menu__link-text {
  color: var(--color-gray);
  color: var(--color-pink-400);
}

.menu__link-icon {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--color-red);
}

.menu__link-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu__link-text {
  color: var(--color-gray-100);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__tg {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}

.menu__tg:first-child {
  margin-top: 0;
}

.menu__tg:last-child {
  margin-bottom: 0;
}

.menu__tg .btn {
  width: 100%;
}

.menu__tg-text {
  color: var(--color-gray-100);
  text-align: center;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 16px;
}

.menu__tg-text strong {
  font-size: 14px;
  font-weight: 700;
}

.menu__bottom {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
  padding-left: 24px;
  padding-right: 24px;
}

.menu__bottom:first-child {
  margin-top: 0;
}

.menu__bottom:last-child {
  margin-bottom: 0;
}

.menu__bottom-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__bottom-link:not(:last-child) {
  margin-bottom: 16px;
}

.menu__bottom-link:hover {
  color: var(--color-gray);
}

.menu__bottom-link-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: inherit;
}

.menu__bottom-link-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu__bottom-link-text {
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}

.slider-tab__slide {
  width: auto;
}

.notifications-parent {
  position: relative;
}

.notifications-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: -40px;
  top: 0;
  z-index: 10;
  width: 410px;
  cursor: default;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.notifications-popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.notifications-popup.open .notifications-popup__overlay {
  opacity: 1;
}

.notifications-popup.open .notifications-popup__body {
  opacity: 1;
}

.notifications-popup.open.active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0s ease 0.4s;
  -o-transition: all 0s ease 0.4s;
  transition: all 0s ease 0.4s;
}

.notifications-popup.open.active .notifications-popup__overlay {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}

.notifications-popup.open.active .notifications-popup__body {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.notifications-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.notifications-popup__body {
  width: 100%;
  max-width: 410px;
  position: relative;
  z-index: 15;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}

.notifications-popup__close {
  color: var(--color-white);
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.notifications-popup__close svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.notifications-popup__block {
  padding: 20px 8px 20px 0;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
}

.notifications-popup__title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 4px;
  padding: 0 20px;
}

.notifications-popup__wrap {
  max-height: 514px;
  overflow-y: auto;
  overflow-x: hidden;
}

.notifications-popup__wrap::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: var(--color-gray-400);
  border-radius: 4px;
}

.notifications-popup__wrap::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
  border: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.notifications-popup__wrap::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-200);
}

.notifications-popup__items {
  padding-left: 20px;
  padding-right: 8px;
}

.notifications-popup__item {
  position: relative;
}

.notifications-popup__item:not(:last-child):before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-gray-400);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.notifications-popup__item + .notifications-popup__item-info {
  padding-top: 12px;
}

.notifications-popup__item-info {
  padding-top: 16px;
  padding-bottom: 16px;
}

.notifications-popup__item-info:last-child {
  padding-bottom: 12px;
}

.notifications-popup__item-info:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-400);
}

.item-notifications {
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  padding: 12px 8px 12px 20px;
  margin-right: -8px;
  margin-left: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.item-notifications:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  opacity: 0;
  background: -webkit-gradient(linear, left top, right top, from(#f1f1f2), color-stop(65.86%, rgba(241, 241, 242, 0.5)), color-stop(90.82%, rgba(241, 241, 242, 0)));
  background: -o-linear-gradient(left, #f1f1f2 0%, rgba(241, 241, 242, 0.5) 65.86%, rgba(241, 241, 242, 0) 90.82%);
  background: linear-gradient(90deg, #f1f1f2 0%, rgba(241, 241, 242, 0.5) 65.86%, rgba(241, 241, 242, 0) 90.82%);
  display: none;
}

.item-notifications:hover {
  background: var(--color-gray-600);
}

.item-notifications:hover:before {
  opacity: 1;
}

.item-notifications__avatar {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 36px;
  max-width: 100%;
  height: 36px;
}

.item-notifications__img {
  position: relative;
  width: 36px;
  height: 36px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.item-notifications__img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.item-notifications__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.item-notifications__label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  z-index: 1;
}

.item-notifications__status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.item-notifications__body {
  padding-right: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.item-notifications__name {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.item-notifications__text {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.item-notifications__text strong,
.item-notifications__text b {
  font-weight: 700;
}

.item-notifications__close {
  color: var(--color-gray-200);
  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;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.item-notifications__close:hover {
  color: var(--color-gray);
}

.item-notifications__close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.info-notifications__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
}

.info-notifications__icon img,
.info-notifications__icon svg {
  width: 34px;
  height: 34px;
}

.info-notifications__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.info-notifications__close {
  color: var(--color-gray-200);
  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;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.info-notifications__close:hover {
  color: var(--color-gray);
}

.info-notifications__close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.info-notifications__text {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
  margin-top: 4px;
}

.info-notifications__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

.info-notifications__btn .btn {
  max-width: 275px;
  width: 100%;
}

.catalog-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
}

.catalog-page__left {
  padding: 0 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.catalog-page__title {
  margin-bottom: 24px;
}

.catalog-page__right {
  padding: 0 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 352px;
  max-width: 100%;
  min-width: 0;
}

.catalog-page .slider-tab {
  margin-bottom: 24px;
}

.catalog-page .slider-tab__slide {
  min-width: 100%;
}

.catalog-page .main-block__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.sidebar-product__top {
  border-radius: 16px 16px 0px 0px;
  background: var(--gradient-pink);
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.sidebar-product__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.sidebar-product__title h2 {
  font-size: inherit;
}

.sidebar-product__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  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;
  color: var(--color-pink-200);
}

.sidebar-product__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.sidebar-product-slider__pagination {
  margin-top: 16px;
  display: none;
}

.item-product-small {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 24px;
}

.item-product-small__body {
  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;
  overflow: hidden;
}

.item-product-small__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;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  width: 100%;
}

.item-product-small__labels {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
}

.item-product-small__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 130%;
  height: 24px;
  padding: 2px 8px;
  border-radius: 30px;
  background: var(--gradient-blue);
}

.item-product-small__label.inner {
  background: var(--gradient-pink);
}

.item-product-small__label svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  max-width: 100%;
  height: 16px;
  fill: currentColor;
}

.item-product-small__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-product-small__city-icon {
  color: var(--color-gray-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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-product-small__city-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.item-product-small__city-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.item-product-small__name {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  margin-top: 8px;
}

.item-product-small__name:hover {
  color: var(--color-gray-100);
}

.item-product-small__bottom {
  margin-top: auto;
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  width: 100%;
}

.item-product-small__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.item-product-small__info-icon {
  color: var(--color-gray-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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-product-small__info-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.item-product-small__info-text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.item-favorite {
  color: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-200);
  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;
  padding-top: 2px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.item-favorite:hover {
  border-color: var(--color-pink-200);
}

.item-favorite:hover svg {
  stroke: var(--color-pink-200);
}

.item-favorite.active {
  border-color: var(--color-pink-200);
}

.item-favorite.active svg {
  fill: var(--color-pink-200);
  stroke: var(--color-pink-200);
}

.item-favorite svg {
  width: 20px;
  height: 20px;
  fill: transparent;
  stroke: var(--color-gray-200);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.block-top {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
}

.block-top:not(:last-child) {
  margin-bottom: 32px;
}

.block-top__title:not(:last-child) {
  margin-bottom: 12px;
}

.block-top__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.block-top__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 -8px;
}

.block-top__left {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}

.block-top__right {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 301px;
  max-width: 100%;
}

.block-top__right .btn {
  width: 100%;
}

.search-filter {
  margin-top: 40px;
}

.search-filter.search-popup {
  margin-top: 20px;
}

.search-filter.search-popup .search-filter__row .search-filter__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.search-filter.search-popup .search-filter__row .search-filter__col:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.search-filter.search-popup .search-filter__row .search-filter__col:nth-child(2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.search-filter.search-popup .search-filter__row .search-filter__col:nth-child(3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.search-filter.search-popup .search-filter__row .search-filter__check {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.search-filter.search-popup .search-filter__row .search-filter__slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.search-filter.search-popup .search-filter__row .search-filter__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
  margin-top: 8px;
}

.search-filter__row {
  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;
  margin: -8px;
}

.search-filter__col {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.search-filter__slider {
  padding: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  min-width: 33.333%;
}

.search-filter__check {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-filter__check .main-checkbox {
  padding: 0 8px;
}

.search-filter__btn {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.search-filter__btn .btn {
  width: 100%;
}

.main-checkbox {
  display: block;
}

.main-checkbox.inner label input:checked + span:before {
  background-image: url("../img/check-white-big.svg");
}

.main-checkbox.inner label input[disabled]:checked + span:before {
  background-image: url("../img/check-white-big.svg");
}

.main-checkbox.inner label span {
  font-weight: 600;
  padding-left: 40px;
}

.main-checkbox.inner label span:before {
  width: 24px;
  height: 24px;
  background-size: 17px 12px;
}

.main-checkbox label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0;
}

.main-checkbox label input {
  display: none;
}

.main-checkbox label input:checked + span:before {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  background-color: var(--color-pink-200);
  background-image: url("../img/check-white.svg");
}

.main-checkbox label input.error + span {
  color: var(--color-red);
}

.main-checkbox label input.error + span:before {
  border: 1px solid var(--color-red);
}

.main-checkbox label input[disabled]:checked + span:before {
  background-color: var(--color-pink-200);
  background-image: url("../img/check-white.svg");
  opacity: 0.4;
}

.main-checkbox label input[disabled] + span {
  cursor: default;
  color: var(--color-gray-200);
}

.main-checkbox label input[disabled] + span:before {
  background-color: var(--color-gray-400);
}

.main-checkbox label span {
  cursor: pointer;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  display: block;
  position: relative;
  padding-left: 28px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-checkbox label span a {
  color: inherit;
  text-decoration: underline;
}

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

.main-checkbox label span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background-color: var(--color-gray-400);
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-size: 13px 9px;
  background-position: center;
  background-repeat: no-repeat;
}

.no-ui-slider.noUi-target {
  background: var(--Content-Background);
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.no-ui-slider.noUi-target.is-equal-range .noUi-base .noUi-origin:nth-child(2) .noUi-handle {
  right: -4px;
}

.no-ui-slider.noUi-target.is-equal-range .noUi-base .noUi-origin:last-child .noUi-handle {
  right: -12px;
}

.no-ui-slider.noUi-target.noUi-horizontal {
  height: 2px;
}

.no-ui-slider.noUi-target .noUi-connects {
  border-radius: 2px;
  background: var(--color-gray-300);
}

.no-ui-slider.noUi-target .noUi-connects .noUi-connect {
  background: var(--color-blue-200);
  border-radius: 0;
}

.no-ui-slider.noUi-target .noUi-handle {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-blue-200);
  -webkit-box-shadow: none;
          box-shadow: none;
  right: -8px;
  top: -7px;
  border: none;
  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;
}

.no-ui-slider.noUi-target .noUi-handle:before {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle:after {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle .noUi-touch-area {
  display: none;
}

.item-no-ui {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 14px 19px;
  height: 54px;
  border-radius: 6px;
  border: 1px solid var(--color-gray-400);
}

.item-no-ui__slider {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.item-no-ui__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}

.item-no-ui__block {
  position: relative;
  color: var(--color-black-100);
  font-size: 14px;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}

.item-no-ui__text {
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
}

.form-group {
  position: relative;
}

.form-group.show-pass .form-control-btn svg:first-child {
  display: none;
}

.form-group.show-pass .form-control-btn svg:last-child {
  display: block;
}

.form-group.focus .form-label {
  font-size: 12px;
  background: var(--color-white);
  color: var(--color-gray-100);
  top: -8px;
}

.form-group.focus .form-control {
  border-color: var(--color-gray-400);
}

.form-group.focus .form-control:focus {
  border-color: var(--color-gray-100);
}

.form-group.focus .form-select .form-select__top {
  border-color: var(--color-gray-400);
}

.form-group.focus.error .form-control {
  border-color: var(--color-red);
}

.form-group.focus.error .form-select .form-select__top {
  border-color: var(--color-red);
}

.form-group.error .form-control {
  border-color: var(--color-red);
}

.form-group.error .form-select .form-select__top {
  border-color: var(--color-red);
}

.form-group.error:hover .form-control {
  border-color: var(--color-red);
}

.form-group.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form-group.disabled .form-label {
  color: var(--color-gray-200);
}

.form-group.disabled .form-control {
  color: var(--color-gray-200);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  border-color: var(--color-gray-400);
}

.form-group.disabled .form-control::-moz-selection {
  background: none;
}

.form-group.disabled .form-control::selection {
  background: none;
}

.form-group.disabled .form-select .form-select__top {
  border-color: var(--color-gray-400);
}

.form-group.disabled .form-select .form-select__text {
  color: var(--color-gray-200);
}

.form-group.disabled .form-select .form-select__arrow {
  color: var(--color-gray-200);
}

.form-group:hover .form-control {
  border-color: var(--color-gray-200);
}

.form-group:hover .form-select .form-select__top {
  border-color: var(--color-gray-200);
}

.form-group.inner {
  display: inline-block;
}

.form-group.inner.focus .form-label {
  font-size: 9px;
  background: var(--color-white);
  color: var(--color-gray-100);
  top: -7px;
}

.form-group.inner .form-label {
  top: 6px;
  left: 8px;
  font-size: 12px;
  padding: 0 4px;
}

.form-group.inner .form-select__top {
  height: 30px;
  padding: 5px 11px;
}

.form-group.inner .form-select__text {
  font-size: 14px;
}

.form-group.inner .form-select__body {
  padding-right: 3px;
}

.form-group.inner .form-select__item {
  font-size: 14px;
  padding: 6px 6px 6px 11px;
}

.form-group-error {
  text-align: center;
  margin-top: 8px;
  color: var(--color-red);
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}

.form-group-error strong {
  font-weight: 700;
}

.form-group-info {
  text-align: center;
  margin-top: 8px;
  color: var(--color-gray-200);
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}

.form-group-info strong {
  font-weight: 700;
}

.form-control-btn {
  width: 28px;
  height: 28px;
  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;
  color: var(--color-black-100);
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  position: absolute;
  right: 15px;
  top: 14px;
  z-index: 3;
}

.form-control-btn ~ .form-control {
  padding-right: 50px;
}

.form-control-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.form-control-btn svg:first-child {
  display: block;
}

.form-control-btn svg:last-child {
  display: none;
}

.form-label {
  color: var(--color-gray-200);
  font-size: 16px;
  line-height: 150%;
  top: 15px;
  left: 12px;
  position: absolute;
  padding: 0 8px;
  z-index: 2;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  pointer-events: none;
  white-space: nowrap;
}

.form-label span {
  display: none;
}

.form-control {
  width: 100%;
  height: 54px;
  border-radius: 6px;
  border: 1px solid var(--color-gray-400);
  padding: 15px 19px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  background: transparent;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.form-control:focus {
  border-color: var(--color-gray-100);
}

.form-control.block-area {
  height: 104px;
  padding: 15px 10px 15px 19px;
}

.form-control.block-area.inner {
  height: auto;
}

.form-control.block-area.inner textarea {
  height: 100%;
}

.form-control.block-area textarea {
  height: 74px;
  width: 100%;
  resize: none;
  padding-right: 9px;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.form-control.block-area textarea::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: var(--color-gray-400);
  border-radius: 4px;
}

.form-control.block-area textarea::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
  border: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.form-control.block-area textarea::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-200);
}

.form-select.open .form-select__top {
  border-color: var(--color-gray-100);
}

.form-select.open .form-select__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.form-select.open .form-select__body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.form-select__top {
  border-radius: 6px;
  border: 1px solid var(--color-gray-400);
  padding: 14px 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  height: 54px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.form-select__top:hover {
  border-color: var(--color-gray-200);
}

.form-select__text {
  width: calc(100% - 20px);
  white-space: nowrap;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.form-select__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  max-width: 100%;
  height: 18px;
  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;
  color: var(--color-black-100);
}

.form-select__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.form-select__body {
  border-radius: 6px;
  border: 1px solid var(--color-gray-300);
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  background: var(--color-white);
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 7px;
}

.form-select__list {
  max-height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
}

.form-select__list::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: var(--color-gray-400);
  border-radius: 4px;
}

.form-select__list::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
  border: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.form-select__list::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-200);
}

.form-select__item {
  padding: 8px 10px 8px 19px;
  cursor: pointer;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  position: relative;
}

.form-select__item.selected {
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}

.form-select__item:hover:before {
  opacity: 1;
}

.form-select__item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#f1f1f2), color-stop(46.83%, rgba(241, 241, 242, 0.5)), color-stop(91.85%, rgba(241, 241, 242, 0)));
  background: -o-linear-gradient(left, #f1f1f2 0%, rgba(241, 241, 242, 0.5) 46.83%, rgba(241, 241, 242, 0) 91.85%);
  background: linear-gradient(90deg, #f1f1f2 0%, rgba(241, 241, 242, 0.5) 46.83%, rgba(241, 241, 242, 0) 91.85%);
  opacity: 0;
}

.search-no-result__title {
  margin-bottom: 24px;
}

.search-no-result__body {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}

.search-no-result__body strong {
  font-weight: 700;
  display: block;
}

.text-block {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 16px;
}

.text-block:not(:last-child) {
  margin-bottom: 40px;
}

.text-block h2 {
  color: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.text-block h2:not(:last-child) {
  margin-bottom: 12px;
}

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

.text-block-info {
  color: var(--color-black-100);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 12px;
}

.support-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
}

.support-page__left {
  padding: 0 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.support-page__top {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
}

.support-page__top:not(:last-child) {
  margin-bottom: 10px;
}

.support-page__title:not(:last-child) {
  margin-bottom: 12px;
}

.support-page__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.support-page__right {
  padding: 0 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 450px;
  max-width: 100%;
}

.support-item {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 24px;
}

.support-item:not(:last-child) {
  margin-bottom: 10px;
}

.support-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.support-item__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.support-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.support-item__images {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.support-item__img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.support-item__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.support-item__status {
  width: 16px;
  height: 16px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  position: absolute;
  z-index: 2;
}

.support-item__box {
  -ms-flex-item-align: center;
      align-self: center;
}

.support-item__title {
  color: var(--color-black-100);
  font-size: 18px;
  font-weight: 700;
}

.support-item__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  margin-top: 4px;
}

.support-item__rigth {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 157px;
  max-width: 100%;
}

.support-item__rigth .btn {
  width: 100%;
}

.support-form {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
}

.support-form.success .support-form__success {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.support-form__title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 24px;
}

.support-form__body {
  position: relative;
}

.support-form__success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
  padding-bottom: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.support-form__success-icon {
  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;
}

.support-form__success-icon img,
.support-form__success-icon svg {
  width: 60px;
  height: 60px;
}

.support-form__success-text {
  color: var(--color-black-100);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.support-form__item:not(:first-child) {
  margin-top: 30px;
}

.support-form__captcha:not(:first-child) {
  margin-top: 30px;
}

.support-form__bottom {
  margin-top: 30px;
}

.support-form__bottom .btn {
  width: 100%;
}

.support-form__text {
  color: var(--color-gray-200);
  text-align: center;
  font-size: 14px;
  line-height: 130%;
  margin-top: 15px;
}

.page-error {
  height: 393px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-error__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.page-error__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.page-error__icon img,
.page-error__icon svg {
  width: 60px;
  height: 60px;
}

.page-error__title {
  font-size: 30px;
}

.page-error__title h1 {
  font-size: inherit;
}

.page-error__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin-top: 24px;
}

.page-error__btn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sales-page {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
}

.sales-page .bread-crumbs {
  margin-bottom: 40px;
  width: 100%;
}

.sales-page__bg {
  position: absolute;
  bottom: -1px;
  right: -1px;
  pointer-events: none;
}

.sales-page__content {
  position: relative;
  z-index: 2;
}

.sales-page__top {
  max-width: 545px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.sales-page__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
}

.sales-page__icon img,
.sales-page__icon svg {
  width: 60px;
  height: 60px;
}

.sales-page__text {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  margin-top: 16px;
  max-width: 545px;
}

.sales-page__text strong {
  font-weight: 700;
  display: inline-block;
}

.sales-page__select {
  max-width: 361px;
  margin-top: 16px;
}

.sales-page__select .form-select .form-select__top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sales-page__select .form-select .form-select__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: auto;
  white-space: normal;
  overflow: visible;
  -o-text-overflow: clip;
     text-overflow: clip;
  text-align: center;
}

.sales-page__list {
  margin-top: 24px;
  max-width: 570px;
  padding: 0;
  list-style: none;
}

.sales-page__list li {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  position: relative;
  padding-left: 22px;
}

.sales-page__list li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: var(--gradient-pink);
  position: absolute;
  left: 0;
  top: 7px;
  z-index: 1;
}

.sales-page__list li:not(:last-child) {
  margin-bottom: 8px;
}

.sales-page__buttons {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.sales-page__buttons .btn:first-child {
  width: 361px;
}

.services-activated__top {
  margin-bottom: 12px;
  padding-right: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.services-activated__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
}

.services-activated__icon img,
.services-activated__icon svg {
  width: 32px;
  height: 32px;
}

.services-activated__title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.services-activated__text {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.services-activated__text:not(:last-child) {
  margin-bottom: 20px;
}

.services-activated__text strong {
  font-weight: 700;
}

.services-activated__text ul {
  padding-left: 24px;
}

.services-activated__text a {
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-pink-200);
          text-decoration-color: var(--color-pink-200);
}

.services-activated__desc {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.services-activated__desc:not(:last-child) {
  margin-bottom: 16px;
}

.services-activated__desc strong {
  font-weight: 700;
}

.services-activated__desc ul {
  padding-left: 24px;
}

.services-activated__desc a {
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-pink-200);
          text-decoration-color: var(--color-pink-200);
}

.services-activated__heading {
  margin-bottom: 8px;
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.services-activated__tg {
  margin-top: 24px;
}

.services-activated__tg:not(:last-child) {
  margin-bottom: 20px;
}

.services-activated__tg .btn {
  width: 100%;
}

.services-activated__tg-text {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

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

.services-activated__tg-text strong {
  font-weight: 700;
}

.services-activated__btn {
  margin-top: 24px;
}

.services-activated__btn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  text-align: left;
}

.services-activated__btn .btn:not(:last-child) {
  margin-bottom: 16px;
}

.services-activated__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.services-activated__buttons .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 12px);
  max-width: 100%;
}

.services-activated__bottom {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  text-align: center;
}

.services-activated__bottom-text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.services-activated__bottom-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: underline;
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.services-activated__bottom-link:hover:before {
  opacity: 0;
}

.services-activated__bottom-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gradient-pink);
  position: absolute;
  bottom: 2px;
  left: 0;
}

.services-activated__share {
  margin-top: 24px;
}

.services-activated__share .ya-share2__container_mobile .ya-share2__badge {
  border-radius: 8px;
}

.services-activated__share .ya-share2__list.ya-share2__list_direction_horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-activated__select {
  margin-top: 24px;
}

.services-activated__select.inner .form-select .form-select__top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 19px;
  height: auto;
}

.services-activated__select.inner .form-select .form-select__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: auto;
  white-space: normal;
  overflow: visible;
  -o-text-overflow: clip;
     text-overflow: clip;
  text-align: left;
}

.services-activated__price-block {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-activated__price-block-text {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.services-activated__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.services-activated__price {
  color: var(--color-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.services-activated__old-price {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  text-decoration: line-through;
  margin-bottom: -2px;
}

.services-activated__price-info {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin-top: 8px;
}

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

.main-page__body {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
}

.main-page__title {
  text-align: center;
  margin-bottom: 24px;
}

.main-page__subtitle {
  text-align: center;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.main-page__subtitle:not(:last-child) {
  margin-bottom: 24px;
}

.main-page__subtitle strong {
  font-weight: 700;
}

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

.main-page__buttons .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 10px);
  max-width: 100%;
}

.main-page__buttons .btn.inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.main-form .form-group:not(:first-child) {
  margin-top: 16px;
}

.main-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px;
}

.main-form__heading {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.main-form__col-50 {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.main-form__col-33 {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.main-form__col {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 8px 4px;
}

.main-form__info {
  margin-top: 24px;
  text-align: center;
  color: var(--color-red);
  font-size: 12px;
  line-height: 150%;
}

.main-form__info strong {
  font-weight: 700;
}

.main-form__text {
  margin-top: 24px;
  color: var(--color-black-100);
  text-align: center;
  font-size: 16px;
  line-height: 150%;
}

.main-form__text strong {
  font-weight: 700;
}

.main-form__text a {
  color: inherit;
  text-decoration: underline;
}

.main-form__text a:hover {
  text-decoration: none;
}

.main-form__captcha {
  margin-top: 24px;
}

.main-form__checkbox {
  margin-top: 24px;
}

.main-form__checkbox .main-checkbox:not(:last-child) {
  margin-bottom: 8px;
}

.main-form__link {
  margin-top: 24px;
  text-align: center;
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.main-form__link a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-form__link a:hover {
  color: var(--color-gray);
}

.main-form__btn {
  margin-top: 24px;
}

.main-form__btn .btn {
  width: 100%;
}

.main-form__bottom {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  text-align: center;
}

.main-form__bottom-text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.main-form__bottom-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: underline;
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.main-form__bottom-link:hover:before {
  opacity: 0;
}

.main-form__bottom-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gradient-pink);
  position: absolute;
  bottom: 2px;
  left: 0;
}

.card-page__mob {
  display: none;
  margin-bottom: 32px;
}

.card-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
}

.card-page__left {
  padding: 0 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.card-page__title {
  margin-bottom: 24px;
}

.card-page__right {
  padding: 0 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 352px;
  max-width: 100%;
  min-width: 0;
}

.card-body {
  border-radius: 16px;
  background: var(--color-white);
  padding: 30px 24px;
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

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

.card-body.inner .card-body__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.card-body.inner .card-body__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.card-body.inner .card-body__btn .btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.card-body__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}

.card-body__crumbs {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.card-body__crumbs .bread-crumbs {
  margin-bottom: 0;
}

.card-body__link {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}

.card-body__link a {
  color: var(--color-gray-100);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.card-body__link a:hover {
  color: var(--color-gray);
}

.card-body__body {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
}

.card-body__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.card-body__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 4px;
}

.card-body__user {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}

.card-body__user.active:before {
  background: var(--color-green);
}

.card-body__user.recently:before {
  background: var(--color-orange);
}

.card-body__user:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  background: var(--color-gray-300);
}

.card-body__status {
  color: var(--color-gray-200);
  font-size: 13px;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.card-body__wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -ms-flex-item-align: center;
      align-self: center;
}

.card-body__wrap-btn {
  height: 35px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 8px;
  background: var(--color-red);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  padding: 3px 9px;
  cursor: pointer;
}

.card-body__wrap-btn img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
}

.card-body__wrap-text {
  color: var(--color-black-100);
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  position: relative;
  padding-left: 20px;
}

.card-body__wrap-text span:first-child {
  display: block;
}

.card-body__wrap-text span:last-child {
  display: none;
}

.card-body__wrap-text:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--color-orange);
  z-index: 1;
  pointer-events: none;
}

.card-body__labels {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
}

.card-body__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  height: 24px;
  padding: 2px 8px;
  border-radius: 30px;
  background: var(--gradient-blue);
}

.card-body__label.inner {
  background: var(--gradient-pink);
}

.card-body__label-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: var(--color-white);
}

.card-body__label-icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  max-width: 100%;
  height: 16px;
  fill: currentColor;
}

.card-body__label-text {
  color: var(--color-white);
  font-size: 14px;
  line-height: 130%;
}

.card-body__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  margin-top: 16px;
}

.card-body__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 4px;
  margin-top: 16px;
}

.card-body__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.card-body__box-icon {
  color: var(--color-gray-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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.card-body__box-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.card-body__box-text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.card-body__buttons {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}

.card-body__like {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.card-body__like .btn {
  width: 100%;
}

.card-body__btn {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.card-body__btn .btn {
  width: 100%;
}

.card-body__btn .btn.active {
  background: var(--color-gray-600);
  border-color: transparent;
  color: var(--color-gray-100);
  pointer-events: none;
}

.card-body__btn .btn.active svg {
  display: block;
}

.card-body__btn .btn svg {
  display: none;
  width: 16px;
  height: 16px;
}

.card-body__share {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.card-body__share .btn {
  width: 54px;
  padding: 5px;
}

.card-body__telegram {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.card-body__telegram-text {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 8px);
  max-width: 100%;
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
}

.card-body__telegram-text strong {
  font-weight: 700;
}

.card-body__telegram-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 8px);
  max-width: 100%;
}

.card-body__telegram-btn .btn {
  width: 100%;
}

.card-body__bottom {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.card-body__prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: var(--color-gray-100);
}

.card-body__prev:hover {
  color: var(--color-gray);
}

.card-body__prev-icon {
  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;
  color: inherit;
}

.card-body__prev-icon svg {
  width: 30px;
  height: 24px;
  fill: currentColor;
}

.card-body__prev-text {
  color: inherit;
  font-size: 16px;
  line-height: 150%;
}

.card-body__prev-text span:first-child {
  display: block;
}

.card-body__prev-text span:last-child {
  display: none;
}

.card-body__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: var(--color-gray-100);
}

.card-body__next:hover {
  color: var(--color-gray);
}

.card-body__next-icon {
  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;
  color: inherit;
}

.card-body__next-icon svg {
  width: 30px;
  height: 24px;
  fill: currentColor;
}

.card-body__next-text {
  color: inherit;
  font-size: 16px;
  line-height: 150%;
}

.card-body__next-text span:first-child {
  display: block;
}

.card-body__next-text span:last-child {
  display: none;
}

.like-advertisement {
  margin-top: 24px;
}

.item-like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.item-like:not(:last-child) {
  margin-bottom: 16px;
}

.item-like.inner .btn span:nth-child(1) {
  display: block;
}

.item-like.inner .btn span:nth-child(2) {
  display: none;
}

.item-like__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.item-like__avatar {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 55px;
  max-width: 100%;
  height: 55px;
}

.item-like__img {
  position: relative;
  width: 55px;
  height: 55px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.item-like__img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.item-like__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.item-like__label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: var(--color-white);
  font-size: 23px;
  font-weight: 700;
  line-height: 150%;
  z-index: 1;
}

.item-like__status {
  width: 16px;
  height: 16px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  position: absolute;
  z-index: 2;
}

.item-like__box {
  -ms-flex-item-align: center;
      align-self: center;
}

.item-like__name {
  color: var(--color-black-100);
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.item-like__city {
  color: var(--color-gray-100);
  font-size: 13px;
}

.item-like .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 197px;
  max-width: 100%;
}

.personal-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
}

.personal-page__left {
  padding: 0 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 321px;
  max-width: 100%;
}

.personal-page__right {
  padding: 0 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.personal-page-top {
  padding: 30px 24px;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

.personal-page-top:not(:last-child) {
  margin-bottom: 24px;
}

.personal-page-top__title {
  font-size: 30px;
}

.personal-page-top__title:not(:last-child) {
  margin-bottom: 12px;
}

.personal-page-top__title h1 {
  font-size: inherit;
}

.personal-page-top__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.personal-block:not(:last-child) {
  margin-bottom: 24px;
}

.personal-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px;
}

.personal-block__col {
  padding: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.personal-item {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 24px;
}

.personal-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -8px;
}

.personal-item__left {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 72px;
  max-width: 100%;
  position: relative;
}

.personal-item__images {
  position: relative;
}

.personal-item__img {
  display: block;
  width: 56px;
  height: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.personal-item__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.personal-item__status {
  width: 16px;
  height: 16px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  position: absolute;
  z-index: 2;
}

.personal-item__center {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.personal-item__title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.personal-item__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.personal-item__right {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 176px;
  max-width: 100%;
}

.personal-item__right .btn {
  width: 100%;
}

.personal-menu {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
}

.personal-menu__top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-400);
  margin-bottom: 20px;
}

.personal-menu__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.personal-menu__user-photo {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 55px;
  max-width: 100%;
  height: 55px;
}

.personal-menu__user-img {
  position: relative;
  width: 55px;
  height: 55px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.personal-menu__user-img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.personal-menu__user-img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.personal-menu__user-label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: var(--color-white);
  font-size: 23px;
  font-weight: 700;
  line-height: 150%;
  z-index: 1;
}

.personal-menu__user-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
  -ms-flex-item-align: center;
      align-self: center;
}

.personal-menu__user-name {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.personal-menu__user-text {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
  margin-top: 2px;
}

.personal-menu__body {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-400);
}

.personal-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 10px 12px;
  color: var(--color-gray-100);
  border-radius: 12px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.personal-menu__item:not(:last-child) {
  margin-bottom: 2px;
}

.personal-menu__item.active {
  background: #ffe8ee;
  color: var(--color-pink-300);
}

.personal-menu__item.active .personal-menu__item-text {
  font-weight: 600;
}

.personal-menu__item-icon {
  color: inherit;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
}

.personal-menu__item-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.personal-menu__item-text {
  color: inherit;
  font-size: 16px;
  line-height: 150%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.personal-menu__item-text span:first-child {
  display: block;
}

.personal-menu__item-text span:last-child {
  display: none;
}

.personal-menu__item-count {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  min-width: 30px;
  height: 24px;
  border-radius: 5px;
  background: var(--gradient-pink);
  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;
  padding: 1px 4px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.personal-menu__tg {
  margin-top: 24px;
}

.personal-menu__tg .btn {
  width: 100%;
}

.personal-menu__tg-text {
  color: var(--color-gray-100);
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 20px;
}

.personal-menu__bottom {
  margin-top: 24px;
  text-align: center;
  color: var(--color-gray-200);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.personal-menu__bottom a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.personal-menu__bottom a:hover {
  color: var(--color-gray);
}

.profile-page {
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 30px 24px;
}

.profile-page__top:not(:last-child) {
  margin-bottom: 24px;
}

.profile-page__text {
  margin-top: 12px;
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.profile-page__text a {
  display: inline-block;
  font-weight: 500;
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.profile-page__text a:hover:before {
  opacity: 0;
}

.profile-page__text a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gradient-pink);
  position: absolute;
  bottom: 2px;
  left: 0;
}

.profile-page__bottom {
  margin-top: 32px;
}

.profile-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -24px;
}

.profile-page__col {
  padding: 12px 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.profile-page__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin-bottom: 24px;
}

.profile-page__item-top .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.profile-page__item-title {
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  -ms-flex-item-align: center;
      align-self: center;
}

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

.main-switch {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.main-switch::-moz-selection {
  background: transparent;
}

.main-switch::selection {
  background: transparent;
}

.main-switch label {
  margin: 0;
  display: inline-block;
}

.main-switch label input {
  display: none;
}

.main-switch label input:checked + span:before {
  --btnSwitch1: #d9294d;
  --btnSwitch2: #fd5e7e;
}

.main-switch label input:checked + span:after {
  left: 18px;
}

.main-switch label input[disabled]:checked + span {
  pointer-events: none;
  cursor: default;
  color: var(--color-gray-200);
}

.main-switch label input[disabled]:checked + span:before {
  --btnSwitch1: #ffb3c7;
  --btnSwitch2: #ffb3c7;
  opacity: 0.5;
}

.main-switch label input[disabled] + span {
  cursor: default;
  color: var(--color-gray-200);
  pointer-events: none;
}

.main-switch label input[disabled] + span:before {
  --btnSwitch1: #cbcbd4;
  --btnSwitch2: #cbcbd4;
  opacity: 0.5;
}

.main-switch label span {
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  display: block;
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.main-switch label span::-moz-selection {
  background: transparent;
  -moz-user-select: none;
       user-select: none;
}

.main-switch label span::selection {
  background: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.main-switch label span:before {
  content: "";
  display: block;
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: var(--color-gray-300);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: -o-linear-gradient(173deg, var(--btnSwitch1) -8.56%, var(--btnSwitch2) 111.41%);
  background: linear-gradient(277deg, var(--btnSwitch1) -8.56%, var(--btnSwitch2) 111.41%);
  transition: --btnSwitch1 0.2s linear, --btnSwitch2 0.2s linear;
}

.main-switch label span:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.main-services {
  border-radius: 16px;
  background: var(--color-white);
  padding: 24px;
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

.main-services:not(:last-child) {
  margin-bottom: 24px;
}

.main-services.active .main-services__status:before,
.main-services.active .main-services__status-mob:before {
  width: 15px;
  height: 24px;
  background: url("../img/check-green-services.svg") center/15px 24px no-repeat;
}

.main-services__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -6px;
}

.main-services__left {
  padding: 0 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.main-services__status {
  margin-right: 5px;
  display: inline;
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  position: relative;
  padding-left: 25px;
}

.main-services__status:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.main-services__status:after {
  content: "—";
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
  margin-left: 8px;
}

.main-services__name {
  display: inline;
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.main-services__name span {
  font-weight: 400;
  display: inline-block;
}

.main-services__name a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-services__right {
  padding: 0 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.main-services__status-mob {
  display: none;
  color: var(--color-black-100);
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
  position: relative;
  padding-left: 25px;
}

.main-services__status-mob:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.main-services__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.main-services__price strong {
  font-weight: 700;
  color: var(--color-black-100);
}

.main-services__bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 5px;
}

.main-services__item {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.main-services__item:nth-child(1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 257px;
  max-width: 100%;
}

.main-services__item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.main-services__item span {
  color: var(--color-black-100);
  display: inline-block;
  padding-left: 4px;
}

.personal-page-nav:not(:last-child) {
  margin-bottom: 24px;
}

.personal-page-nav .slider-tab__slide .main-block__item {
  padding: 5px 16px;
}

.personal-page-nav .slider-tab__slide .main-block__item.active .main-block__item-icon {
  color: var(--color-pink-200);
}

.no-items-block {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  padding: 24px;
}

.no-items-block__body {
  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;
  height: 100%;
  row-gap: 16px;
}

.no-items-block__text {
  text-align: center;
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.item-likes {
  padding: 24px;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

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

.item-likes__labels {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.item-likes__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  height: 24px;
  padding: 2px 8px;
  border-radius: 30px;
  background: var(--gradient-blue);
}

.item-likes__label.inner {
  background: var(--gradient-pink);
}

.item-likes__label-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: var(--color-white);
}

.item-likes__label-icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  max-width: 100%;
  height: 16px;
  fill: currentColor;
}

.item-likes__label-text {
  color: var(--color-white);
  font-size: 14px;
  line-height: 130%;
}

.item-likes__title {
  display: inline;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.item-likes__title a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-likes__bottom {
  margin-top: 16px;
}

.item-likes__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -8px;
}

.item-likes__left {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-likes__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-likes__box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.item-likes__box:not(:first-child) {
  margin-left: -10.5px;
}

.item-likes__box:nth-child(5) .item-likes__img:before {
  display: none;
}

.item-likes__box:nth-child(5) .item-likes__name {
  font-size: 12px;
}

.item-likes__box.active .item-likes__img:before {
  background: var(--color-green);
}

.item-likes__box.recently .item-likes__img:before {
  background: var(--color-orange);
}

.item-likes__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.item-likes__img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.item-likes__img:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gray-200);
  border: 2px solid var(--color-white);
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 2;
}

.item-likes__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.item-likes__name {
  color: var(--color-white);
  text-align: center;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.item-likes__center {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.item-likes__text {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
}

.item-likes__text strong {
  font-weight: 700;
}

.item-likes__right {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 168px;
  max-width: 100%;
}

.item-likes__right .btn {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.item-likes__right .btn.btn-disabled {
  color: var(--color-gray-100);
}

.item-sympathies {
  border-radius: 16px;
  background: var(--color-white);
  padding: 24px;
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

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

.item-sympathies__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.item-sympathies__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 4px;
}

.item-sympathies__user {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}

.item-sympathies__user.active:before {
  background: var(--color-green);
}

.item-sympathies__user.recently:before {
  background: var(--color-orange);
}

.item-sympathies__user:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  background: var(--color-gray-300);
}

.item-sympathies__status {
  color: var(--color-gray-200);
  font-size: 13px;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-sympathies__labels {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
}

.item-sympathies__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  height: 24px;
  padding: 2px 8px;
  border-radius: 30px;
  background: var(--gradient-blue);
}

.item-sympathies__label.inner {
  background: var(--gradient-pink);
}

.item-sympathies__label-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: var(--color-white);
}

.item-sympathies__label-icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  max-width: 100%;
  height: 16px;
  fill: currentColor;
}

.item-sympathies__label-text {
  color: var(--color-white);
  font-size: 14px;
  line-height: 130%;
}

.item-sympathies__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  margin-top: 16px;
}

.item-sympathies__text a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-sympathies__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 4px;
  margin-top: 16px;
}

.item-sympathies__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-sympathies__box-icon {
  color: var(--color-gray-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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-sympathies__box-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.item-sympathies__box-text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
}

.item-sympathies__buttons {
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}

.item-sympathies__like {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.item-sympathies__like .btn {
  width: 100%;
}

.item-sympathies__btn {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.item-sympathies__btn .btn {
  width: 100%;
}

.item-sympathies__btn .btn.btn-secondary.active {
  background: var(--color-gray-600);
  border-color: transparent;
  color: var(--color-gray-100);
  pointer-events: none;
}

.item-sympathies__btn .btn.btn-secondary.active svg {
  display: block;
}

.item-sympathies__btn .btn.btn-secondary svg {
  display: none;
  width: 16px;
  height: 16px;
}

.item-sympathies__share {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-sympathies__share .btn {
  width: 54px;
  padding: 5px;
}

.item-advertisements {
  padding: 24px;
  border-radius: 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
}

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

.item-advertisements.error .item-advertisements__head-status:before {
  background: var(--color-red);
}

.item-advertisements.hidden .item-advertisements__head-status:before {
  background: var(--color-gray-200);
}

.item-advertisements.verification .item-advertisements__head-status:before {
  background: var(--color-orange);
}

.item-advertisements__head {
  margin-bottom: 8px;
}

.item-advertisements__head-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -8px;
}

.item-advertisements__head-left {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

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

.item-advertisements__head-status {
  color: var(--color-black-100);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  padding-left: 20px;
}

.item-advertisements__head-status:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
  background: var(--color-green);
}

.item-advertisements__edit .btn {
  height: 35px;
  padding: 5px 13px;
}

.item-advertisements__btn {
  height: 35px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 8px;
  background: var(--color-red);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  padding: 3px 14px 3px 9px;
  cursor: pointer;
}

.item-advertisements__btn img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
}

.item-advertisements__head-center {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 136px;
  max-width: 100%;
}

.item-advertisements__date {
  color: rgba(34, 32, 32, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  white-space: nowrap;
}

.item-advertisements__head-right {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.item-advertisements__menu {
  position: relative;
}

.item-advertisements__menu.open .item-advertisements__menu-top {
  color: var(--color-gray);
}

.item-advertisements__menu.open .item-advertisements__menu-body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.item-advertisements__menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: rgba(138, 137, 150, 0.5);
}

.item-advertisements__menu-top svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.item-advertisements__menu-body {
  position: absolute;
  right: -7px;
  top: calc(100% - 7px);
  width: 192px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-400);
  background: var(--color-white);
  -webkit-box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
  z-index: 5;
  padding: 18px 34px 18px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-advertisements__menu-item {
  display: block;
  padding: 6px 16px;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-advertisements__labels {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.item-advertisements__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  height: 24px;
  padding: 2px 8px;
  border-radius: 30px;
  background: var(--gradient-blue);
}

.item-advertisements__label.inner {
  background: var(--gradient-pink);
}

.item-advertisements__label-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  color: var(--color-white);
}

.item-advertisements__label-icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  max-width: 100%;
  height: 16px;
  fill: currentColor;
}

.item-advertisements__label-text {
  color: var(--color-white);
  font-size: 14px;
  line-height: 130%;
}

.item-advertisements__title {
  display: inline;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
}

.item-advertisements__title a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-advertisements__bottom {
  margin-top: 16px;
}

.item-advertisements__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -8px;
}

.item-advertisements__left {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.item-advertisements__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-advertisements__box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.item-advertisements__box:not(:first-child) {
  margin-left: -10.5px;
}

.item-advertisements__box:nth-child(5) .item-advertisements__img:before {
  display: none;
}

.item-advertisements__box:nth-child(5) .item-advertisements__name {
  font-size: 12px;
}

.item-advertisements__box.active .item-advertisements__img:before {
  background: var(--color-green);
  border: 2px solid var(--color-white);
  display: block;
}

.item-advertisements__box.recently .item-advertisements__img:before {
  display: block;
  background: var(--color-orange);
  border: 2px solid var(--color-white);
}

.item-advertisements__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.item-advertisements__img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.item-advertisements__img:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gray-200);
  border: 2px solid var(--color-white);
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 2;
  display: none;
}

.item-advertisements__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.item-advertisements__name {
  color: var(--color-white);
  text-align: center;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.item-advertisements__center {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.item-advertisements__text {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
}

.item-advertisements__text strong {
  font-weight: 700;
}

.item-advertisements__right {
  padding: 0 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 168px;
  max-width: 100%;
}

.item-advertisements__right .btn {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.profile-form.open .profile-form__body {
  display: block;
}

.profile-form.open .profile-form__bottom {
  display: none;
}

.profile-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px;
}

.profile-form__col {
  padding: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.profile-form__body {
  margin-top: 24px;
  display: none;
}

.profile-form__heading {
  margin-bottom: 20px;
  color: var(--color-black-100);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.profile-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}

.profile-form__btn .btn.active {
  background: var(--color-gray-600);
  pointer-events: none;
  color: var(--color-gray-100);
}

.profile-form__btn .btn.active span:first-child {
  display: none;
}

.profile-form__btn .btn.active span:last-child {
  display: block;
}

.profile-form__btn .btn span:last-child {
  display: none;
}

.profile-form__btn .btn span:first-child {
  display: block;
}

.profile-form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

.profile-form__edit {
  color: var(--color-gray-200);
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.profile-form__edit:hover {
  color: var(--color-gray-100);
}

.assign-services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 8px;
}

.assign-services-row:not(:last-child) {
  margin-bottom: 16px;
}

.assign-services-row__check {
  -ms-flex-item-align: center;
      align-self: center;
  position: relative;
  z-index: 3;
}

.assign-services-row__items {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 8px;
}

.assign-services-row__items .form-select {
  min-height: auto;
  min-width: 93px;
}

.assign-services-row__items .form-group:not(:last-child) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.assign-services-row__items .form-group:not(:first-child) {
  margin-top: 0;
}

.header-admin {
  padding: 0 24px;
  background: var(--color-white);
  position: relative;
  z-index: 11;
}

.header-admin .container {
  max-width: 1440px;
  padding: 0;
}

.header-admin__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  padding: 8.5px 24px;
  margin: 0 -24px;
  overflow-y: hidden;
  overflow-x: auto;
}

.header-admin__item.inner {
  margin-left: auto;
}

.header-admin__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  padding: 14px 16px;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  border-radius: 8px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.header-admin__link.active {
  background: var(--gradient-pink);
  color: var(--color-white);
}

.header-admin__link.active span {
  color: var(--color-white);
  background: transparent;
  -webkit-text-fill-color: inherit;
}

.header-admin__link span {
  font-weight: 600;
  display: inline-block;
  padding: 0 4px;
  background: var(--gradient-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-admin-top {
  background: var(--gradient-pink);
  padding: 38px 24px;
}

.header-admin-top .container {
  max-width: 1440px;
  padding: 0;
}

.header-admin-top__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -10px;
}

.header-admin-top__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header-admin-top__left .btn svg {
  width: 13px;
  height: 20px;
}

.header-admin-top__center {
  padding: 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-admin-top__name {
  color: var(--color-white);
  font-size: 30px;
  font-weight: 600;
  width: 100%;
  word-wrap: break-word;
}

.header-admin-top__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

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

.header-admin-top .btn {
  padding-left: 31px;
  padding-right: 31px;
}

.main-chat {
  background: var(--color-white);
  height: calc(100vh - 116px);
  min-height: 400px;
  border-radius: 16px;
  -webkit-box-shadow: var(--shadow-block);
          box-shadow: var(--shadow-block);
  border-top: 1px solid var(--color-gray-400);
  border-right: 1px solid var(--color-gray-400);
  border-left: 1px solid var(--color-gray-400);
  border-bottom: 1px solid var(--color-gray-400);
  overflow: hidden;
}

.main-chat.open .main-chat__right {
  right: 0;
}

.main-chat__body {
  height: 100%;
}

.main-chat__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.main-chat__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 415px;
  max-width: 100%;
  border-right: 1px solid var(--color-gray-400);
}

.main-chat__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.main-chat__top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  padding: 8px 15px;
  border-bottom: 1px solid var(--color-gray-400);
}

.main-chat__back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 44px;
  max-width: 100%;
  height: 44px;
  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;
  border-radius: 6px;
  border: 1px solid var(--color-gray-400);
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.main-chat__back svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.main-chat__search {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.main-chat__items {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-chat__items::-webkit-scrollbar-track {
  margin: 8px 0;
  background: var(--color-gray-400);
  border-radius: 4px;
}

.main-chat__items::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-chat__items::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
  border: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-chat__items::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-200);
}

.main-chat__no-result {
  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;
  color: var(--color-gray-200);
  font-size: 15px;
  line-height: 150%;
}

.main-chat__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.main-chat__box {
  background: #f3f9ff;
  height: 100%;
}

.main-chat__info {
  padding: 16px;
  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;
  color: var(--color-gray-200);
  font-size: 16px;
  line-height: 150%;
  height: 100%;
}

.main-chat-menu-mob {
  display: none;
}

.search-chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--color-gray-600);
}

.search-chat__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
  cursor: pointer;
  background: transparent;
  outline: none;
  color: var(--color-gray-200);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.search-chat__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.search-chat__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.search-chat__input.focus + .search-chat__clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-chat__input input {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  background: transparent;
  color: var(--color-gray-200);
  font-size: 16px;
  line-height: 150%;
}

.search-chat__input input::-webkit-input-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input::-moz-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input:-moz-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input:-ms-input-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input:focus::-webkit-input-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input:focus::-moz-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input:focus:-moz-placeholder {
  color: var(--color-gray-200);
}

.search-chat__input input:focus:-ms-input-placeholder {
  color: var(--color-gray-200);
}

.search-chat__clear {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
  cursor: pointer;
  color: var(--color-gray-200);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: none;
}

.search-chat__clear svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.user-chat {
  padding: 6px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border-bottom: 1px solid var(--color-gray-400);
  cursor: pointer;
}

.user-chat.online .user-chat__avatar:before {
  display: block;
}

.user-chat.recently .user-chat__avatar:before {
  display: block;
  background: var(--color-orange);
}

.user-chat.error .user-chat__bottom:after {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  background: url("../img/icon/warning.svg") center/20px 20px no-repeat;
}

.user-chat.unavailable .user-chat__bottom:after {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  background: url("../img/icon/warning.svg") center/20px 20px no-repeat;
}

.user-chat.unavailable .user-chat__text {
  color: var(--color-red);
}

.user-chat.delivered .user-chat__bottom:after {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  background: url("../img/icon/arrow-check-blue.svg") center/20px 20px no-repeat;
}

.user-chat.read .user-chat__bottom:after {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  background: url("../img/icon/double-arrow-check-blue.svg") center/20px 20px no-repeat;
}

.user-chat__avatar {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 55px;
  max-width: 100%;
  height: 55px;
}

.user-chat__avatar:before {
  content: "";
  display: none;
  width: 16px;
  height: 16px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  position: absolute;
  z-index: 2;
}

.user-chat__img {
  position: relative;
  width: 55px;
  height: 55px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.user-chat__img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.user-chat__img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.user-chat__label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: var(--color-white);
  font-size: 23px;
  font-weight: 700;
  line-height: 150%;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.user-chat__body {
  -ms-flex-item-align: center;
      align-self: center;
  width: calc(100% - 67px);
  position: relative;
}

.user-chat__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.user-chat__name {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.user-chat__fixed {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-gray-200);
  margin-left: -4px;
}

.user-chat__fixed svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.user-chat__date {
  margin-left: auto;
  color: var(--color-gray-100);
  text-align: right;
  font-size: 13px;
  line-height: 150%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

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

.user-chat__text {
  color: var(--color-gray-100);
  font-size: 15px;
  line-height: 150%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.user-chat__text span {
  color: var(--color-blue);
}

.user-chat__count {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  height: 20px;
  border-radius: 10px;
  background: var(--gradient-pink);
  color: var(--color-white);
  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;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  min-width: 20px;
  padding: 1px 3px;
}

.chat-block {
  height: 100%;
}

.chat-block__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 7px;
}

.chat-block__top {
  padding: 3px 16px;
  background: var(--color-white);
  height: 67px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-right: -7px;
}

.chat-block__back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 44px;
  max-width: 100%;
  height: 44px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  border: 1px solid var(--color-gray-400);
  color: var(--color-gray-100);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.chat-block__back svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.chat-block__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.chat-block__user.online .chat-block__user-avatar:before {
  display: block;
}

.chat-block__user.recently .chat-block__user-avatar:before {
  display: block;
  background: var(--color-orange);
}

.chat-block__user-avatar {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 55px;
  max-width: 100%;
  height: 55px;
}

.chat-block__user-avatar:before {
  content: "";
  display: none;
  width: 16px;
  height: 16px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  position: absolute;
  z-index: 2;
}

.chat-block__user-img {
  position: relative;
  width: 55px;
  height: 55px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.chat-block__user-img:after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
}

.chat-block__user-img img {
  position: absolute;
  inset: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.chat-block__user-label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: var(--color-white);
  font-size: 23px;
  font-weight: 700;
  line-height: 150%;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.chat-block__user-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.chat-block__user-name {
  color: var(--color-black-100);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1875;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.chat-block__user-text {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
}

.chat-block__user-city {
  color: var(--color-gray-100);
  font-size: 14px;
  line-height: 130%;
  margin-top: 2px;
}

.chat-block__menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
}

.chat-block__menu.open .chat-block__menu-top {
  color: var(--color-gray);
}

.chat-block__menu.open .chat-block__menu-body {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-block__menu-top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  color: rgba(138, 137, 150, 0.5);
}

.chat-block__menu-top svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.chat-block__menu-body {
  position: absolute;
  right: -7px;
  top: calc(100% - 7px);
  width: 192px;
  border-radius: 8px;
  border: 1px solid var(--color-gray-400);
  background: var(--color-white);
  -webkit-box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
  z-index: 5;
  padding: 18px 34px 18px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.chat-block__menu-item {
  display: block;
  padding: 6px 16px;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.chat-block__box {
  background: #f3f9ff;
  padding: 16px 9px 16px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: auto;
}

.chat-block__box::-webkit-scrollbar-track {
  margin: 8px 0;
  background: transparent;
  border-radius: 4px;
  background: var(--color-gray-400);
}

.chat-block__box::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.chat-block__box::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
  border: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.chat-block__box::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-200);
}

.chat-block__area {
  border-top: 1px solid var(--color-gray-400);
  margin-right: -7px;
}

.form-chat {
  padding: 10px 16px;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.form-chat__area {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  resize: none;
  color: var(--color-black-100);
  font-size: 16px;
  line-height: 150%;
  height: 24px;
  max-height: 192px;
}

.form-chat__area.active + .form-chat__btn {
  color: var(--color-blue);
}

.form-chat__area[disabled] {
  color: var(--color-gray-300);
}

.form-chat__area[disabled] + .form-chat__btn {
  pointer-events: none;
  color: var(--color-gray-400);
}

.form-chat__area::-webkit-scrollbar-track {
  margin: 8px 0;
  background: transparent;
  border-radius: 4px;
  background: var(--color-gray-400);
}

.form-chat__area::-webkit-scrollbar {
  width: 0;
  height: 0;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.form-chat__area::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 4px;
  border: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.form-chat__area::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-200);
}

.form-chat__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 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;
  cursor: pointer;
  color: var(--color-gray-200);
  background: transparent;
  outline: none;
}

.form-chat__btn:focus-visible {
  outline: none;
}

.form-chat__btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.main-chat-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.main-chat-date:first-child {
  margin-top: 0;
}

.main-chat-date:last-child {
  margin-bottom: 0;
}

.main-chat-date span {
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  padding: 5px 10px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  background: var(--color-blue);
  border-radius: 100px;
}

.main-chat-text-info {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.main-chat-text-info + .main-chat-text-action {
  margin-top: 8px;
}

.main-chat-text-info__text {
  color: var(--color-gray-100);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}

.main-chat-text-info__text strong {
  font-weight: 700;
}

.main-chat-text-info__text a {
  color: inherit;
  text-decoration: underline;
}

.main-chat-text-info__btn {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-chat-text-info__bottom {
  text-align: center;
  color: rgba(34, 32, 32, 0.5);
  font-size: 16px;
  line-height: 150%;
}

.main-chat-text-info__bottom a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-chat-text-info__bottom a:hover {
  color: var(--color-gray-100);
}

.main-chat-text-info__link {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-pink-200);
}

.main-chat-text-info__link a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-chat-text-info__link a:hover {
  color: var(--color-pink-400);
}

.main-chat-item-user {
  margin-top: 16px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.main-chat-item-user + .main-chat-item-user {
  margin-top: 8px;
}

.main-chat-item-user:first-child {
  margin-top: 0;
}

.main-chat-item-user:last-child {
  margin-bottom: 0;
}

.main-chat-item-user.error {
  padding-left: 38px;
  padding-right: 3px;
}

.main-chat-item-user.error:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: url("../img/icon/warning.svg") center/28px 28px no-repeat;
}

.main-chat-item-user.error .main-chat-item-user__text {
  position: relative;
  background: url("../img/text-hide.png") 0 0 repeat;
  color: transparent;
  padding: 4px 0 0;
}

.main-chat-item-user.error .main-chat-item-user__text:after {
  width: 47px;
}

.main-chat-item-user.error .main-chat-item-user__time {
  background: var(--color-white);
  padding-left: 10px;
}

.main-chat-item-user.error .main-chat-item-user__time:after {
  display: none;
}

.main-chat-item-user__body {
  position: relative;
  border-radius: 6px 6px 6px 0px;
  border: 1px solid var(--color-gray-400);
  background: var(--color-white);
  padding: 11px 15px;
  max-width: 92%;
}

.main-chat-item-user__text {
  color: var(--color-black-100);
  font-size: 15px;
  line-height: 150%;
  position: relative;
  display: inline;
}

.main-chat-item-user__text:after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 47px;
  max-width: 100%;
  font-size: 15px;
}

.main-chat-item-user__text a {
  color: inherit;
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}

.main-chat-item-user__time {
  color: var(--color-gray-200);
  font-size: 14px;
  line-height: 1.60714;
  position: absolute;
  bottom: 11px;
  right: 15px;
  pointer-events: none;
  z-index: 1;
}

.main-chat-item-user__time:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.main-chat-item {
  margin-top: 16px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.main-chat-item.read .main-chat-item__time:after {
  background-image: url("../img/icon/double-arrow-check-white.svg");
}

.main-chat-item.error {
  padding-right: 38px;
  padding-left: 3px;
}

.main-chat-item.error:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: url("../img/icon/warning.svg") center/28px 28px no-repeat;
}

.main-chat-item.error .main-chat-item__text:after {
  width: 47px;
}

.main-chat-item.error .main-chat-item__time:after {
  display: none;
}

.main-chat-item + .main-chat-item {
  margin-top: 8px;
}

.main-chat-item:first-child {
  margin-top: 0;
}

.main-chat-item:last-child {
  margin-bottom: 0;
}

.main-chat-item__body {
  max-width: 92%;
  border-radius: 6px 6px 0px 6px;
  background: var(--color-blue);
  position: relative;
  padding: 12px 16px;
}

.main-chat-item__text {
  color: var(--color-white);
  font-size: 15px;
  line-height: 150%;
  position: relative;
}

.main-chat-item__text a {
  color: inherit;
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}

.main-chat-item__text:after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 81px;
  max-width: 100%;
}

.main-chat-item__time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.71429;
  position: absolute;
  bottom: 11px;
  right: 16px;
  pointer-events: none;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.main-chat-item__time:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
  background: url("../img/icon/arrow-check-white.svg") center/24px 24px no-repeat;
}

@media (min-width: 359.98px) {
  .sidebar-product-slider__slide {
    width: 312px;
  }
}

@media (min-width: 575.98px) and (max-height: 610px) {
  .notifications-popup__wrap {
    max-height: 350px;
  }
}

@media (min-width: 575.98px) and (max-height: 450px) {
  .notifications-popup__wrap {
    max-height: 250px;
  }
}

@media (min-width: 575.98px) and (max-height: 350px) {
  .notifications-popup__wrap {
    max-height: 150px;
  }
}

@media (min-width: 767.98px) {
  .user-chat.active {
    background: var(--color-blue);
  }

  .user-chat.active .user-chat__name,
  .user-chat.active .user-chat__date,
  .user-chat.active .user-chat__text {
    color: var(--color-white);
  }

  .user-chat.active .user-chat__text span {
    color: rgba(255, 255, 255, 0.5);
  }

  .user-chat.active.unavailable .user-chat__text {
    color: var(--color-white);
  }

  .user-chat.active.delivered .user-chat__bottom:after {
    background-image: url("../img/icon/arrow-check-white.svg");
  }

  .user-chat.active.read .user-chat__bottom:after {
    background-image: url("../img/icon/double-arrow-check-white.svg");
  }
}

@media (min-width: 767.98px) and (any-hover: hover) {
  .user-chat.active:hover {
    background: var(--color-blue);
  }
}

@media (min-width: 1023.98px) {
  .item-product__btn-favorite.inner:hover .item-product__btn-favorite-icon {
    -webkit-box-shadow: 0 0 0 1.5px var(--color-pink-200) inset;
            box-shadow: 0 0 0 1.5px var(--color-pink-200) inset;
  }

  .item-product__btn-favorite.inner.active .item-product__btn-favorite-icon {
    -webkit-box-shadow: 0 0 0 1.5px var(--color-pink-200) inset;
            box-shadow: 0 0 0 1.5px var(--color-pink-200) inset;
  }

  .item-product__btn-favorite.inner.active .item-product__btn-favorite-icon svg {
    fill: var(--color-pink-200);
    stroke: var(--color-pink-200);
  }

  .item-product__btn-favorite:hover .item-product__btn-favorite-icon {
    border-color: var(--color-pink-200);
  }

  .item-product__btn-favorite:hover .item-product__btn-favorite-icon svg {
    stroke: var(--color-pink-200);
  }

  .item-product__btn-favorite.active .item-product__btn-favorite-icon {
    border-color: var(--color-pink-200);
  }

  .item-product__btn-favorite.active .item-product__btn-favorite-icon svg {
    fill: var(--color-pink-200);
    stroke: var(--color-pink-200);
  }

  .menu-user.open-hover:hover .menu-user__arrow {
    color: var(--color-gray);
  }

  .menu-user.open-hover:hover .menu-user__arrow svg {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .menu-user.open-hover:hover .menu-user__body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .sidebar-product-slider__wrapper {
    display: block;
  }

  .sidebar-product-slider__slide {
    width: 100%;
  }

  .sidebar-product-slider__slide:not(:last-child) {
    margin-bottom: 24px;
  }

  .sidebar-product-slider__slide:first-child .item-product-small {
    border-radius: 0 0 16px 16px;
  }

  .header-admin__link:hover {
    background: rgba(255, 66, 111, 0.1);
  }

  .main-chat__items::-webkit-scrollbar-track {
    background: transparent;
  }

  .main-chat__items::-webkit-scrollbar-thumb {
    background: transparent;
  }
}

@media (min-width: 1023.98px) and (any-hover: hover) {
  .personal-menu__item:hover {
    background: #ffe8ee;
    color: var(--color-pink-300);
  }
}

@media (max-width: 1439.98px) {
  .footer-top {
    padding: 50px 24px 45px;
  }

  .header-btn {
    padding: 5px 18px;
  }

  .header-btn__text span {
    display: none;
  }
}

@media (max-width: 1350px) {
  .header__row {
    margin: 0 -10px;
  }

  .header__left {
    padding: 0 10px;
  }

  .header__box {
    padding: 0 10px;
  }

  .header__block {
    padding: 0 10px;
  }

  .header__search {
    padding: 0 10px;
  }

  .header__notifications {
    padding: 0 10px;
  }

  .header__user-menu {
    padding: 0 10px;
  }

  .header__btn {
    padding: 0 10px;
  }

  .header__menu-icon {
    padding: 0 10px;
  }
}

@media (max-width: 1199.98px) {
  .footer-top__box:nth-child(1) {
    width: 190px;
  }

  .categories-block__row {
    margin: -2.5px;
  }

  .categories-block__col {
    padding: 2.5px;
  }

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

  .logo {
    width: 160px;
    padding: 4px 0;
  }

  .menu__block.open .menu__block-top {
    color: var(--color-gray);
  }

  .menu__block.open .menu__block-top svg {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .menu__block.open .menu__block-body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .menu__block.open-hover:hover .menu__block-top {
    color: var(--color-gray);
  }

  .menu__block.open-hover:hover .menu__block-top svg {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .menu__block.open-hover:hover .menu__block-body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .menu__block-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__block-body {
    position: absolute;
    top: 100%;
    left: -58px;
    z-index: 5;
    padding-top: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: var(--transition-normal);
    -o-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu__list {
    display: block;
    border-radius: 8px;
    border: 1px solid var(--color-gray-400);
    background: var(--color-white);
    -webkit-box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 15px 15px 100px 0px rgba(0, 0, 0, 0.08);
    min-width: 214px;
    padding: 16px 50px 16px 30px;
  }

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

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

  .menu__link-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1199.98px) and (max-width: 1023.98px) {
  .menu__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media (max-width: 1023.98px) {
  body.page-personal .footer {
    padding-bottom: 56px;
  }

  body.page-messages .main {
    padding-bottom: 80px;
  }

  .main {
    padding-top: 84px;
  }

  h1 {
    font-size: 26px;
    line-height: 130%;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }

  .btn {
    font-size: 15px;
  }

  .bread-crumbs {
    margin-bottom: 8px;
  }

  .bread-crumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-y: hidden;
    overflow-x: auto;
    margin: 0 -16px;
    padding: 0 16px 8px;
  }

  .bread-crumbs__list::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: var(--color-gray-400);
    border-radius: 4px;
  }

  .bread-crumbs__list::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
    border-radius: 4px;
    border: none;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .bread-crumbs__list::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-200);
  }

  .bread-crumbs__list > span {
    font-size: 15px;
    margin: 0 8px;
  }

  .bread-crumbs__item {
    display: block;
    font-size: 13px;
    white-space: nowrap;
  }

  .main-popup.fancybox__content {
    padding: 20px;
  }

  .main-popup__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .main-popup__close svg {
    width: 24px;
    height: 24px;
  }

  .main-popup__title {
    font-size: 18px;
    padding-right: 30px;
    margin-bottom: 12px;
    min-height: 24px;
  }

  .main-popup__text {
    font-size: 15px;
  }

  .main-popup__btn {
    margin-top: 16px;
  }

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

  .main-popup__buttons {
    margin-top: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }

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

  .location-popup.fancybox__content {
    max-width: 328px;
    padding: 20px;
  }

  .location-popup__close {
    top: 20px;
    right: 20px;
  }

  .location-popup__close svg {
    width: 24px;
    height: 24px;
  }

  .location-popup__title {
    font-size: 18px;
    padding-right: 30px;
    margin-bottom: 16px;
    min-height: 24px;
  }

  .location-popup__search {
    margin-bottom: 16px;
  }

  .location-popup__items {
    display: block;
    max-height: 314px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .location-popup__items::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background: var(--color-gray-400);
    border-radius: 4px;
  }

  .location-popup__items::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
    border-radius: 4px;
    border: none;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .location-popup__items::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-200);
  }

  .location-popup__item.active {
    background: transparent;
    background: var(--gradient-pink);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .location-popup__item {
    padding: 0px 16px;
    border-radius: 0px;
    background: transparent;
    font-size: 18px;
    color: var(--color-black-100);
    display: block;
    text-align: left;
  }

  .location-popup__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .block-margin {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .footer-top {
    padding: 24px 16px 20px;
  }

  .footer-top__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer-top__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }

  .footer-top__copy {
    font-size: 15px;
    margin: 0;
    text-align: center;
  }

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

  .footer-top__boxes {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer-top__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    min-width: 151px;
  }

  .footer-top__box:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    min-width: 151px;
  }

  .footer-top__box:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    min-width: 151px;
  }

  .footer-top__heading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.53333;
  }

  .footer-menu li a {
    line-height: 1.53333;
    font-size: 15px;
    padding: 4px 0;
  }

  .footer-bottom {
    padding: 24px 16px;
  }

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

  .footer-bottom__text {
    font-size: 15px;
    text-align: center;
    max-width: none;
  }

  .footer-bottom__copy {
    display: block;
  }

  .categories-block {
    padding: 24px 16px 16px;
  }

  .categories-block__title {
    text-align: center;
  }

  .categories-block__text {
    text-align: center;
    font-size: 15px;
    line-height: 150%;
  }

  .categories-block__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: -6px;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .categories-block__row::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }

  .categories-block__col {
    padding: 5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 143px;
    max-width: 100%;
  }

  .categories-block__btn {
    font-size: 12px;
    height: 30px;
  }

  .main-pagination {
    -webkit-column-gap: 33px;
       -moz-column-gap: 33px;
            column-gap: 33px;
    margin-top: 16px;
  }

  .main-pagination__prev {
    width: 38px;
    height: 38px;
    border-radius: 9.5px;
  }

  .main-pagination__prev svg {
    width: 21px;
    height: 21px;
  }

  .main-pagination__block {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .main-pagination__items {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .main-pagination__item {
    width: 38px;
    height: 38px;
    border-radius: 9.5px;
  }

  .main-pagination__next {
    width: 38px;
    height: 38px;
    border-radius: 9.5px;
  }

  .main-pagination__next svg {
    width: 21px;
    height: 21px;
  }

  .main-block__top {
    margin-bottom: 16px;
  }

  .main-block__row {
    margin: -8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .main-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 8px;
  }

  .main-block__box {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .main-block__icon {
    width: 28px;
    height: 28px;
  }

  .main-block__icon svg {
    width: 16px;
    height: 16px;
  }

  .main-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 8px;
  }

  .main-block__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    padding: 5px 12px;
  }

  .item-product {
    padding: 16px;
    row-gap: 8px;
  }

  .item-product:not(:last-child) {
    margin-bottom: 16px;
  }

  .item-product__labels {
    margin-bottom: 2px;
  }

  .item-product__label {
    font-size: 13px;
    line-height: 140%;
  }

  .item-product__name {
    font-size: 15px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

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

  .item-product__boxes {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-product__box {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }

  .item-product__box-icon svg {
    width: 16px;
    height: 16px;
  }

  .item-product__box-text {
    font-size: 15px;
  }

  .item-product__buttons {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .item-product__btn-favorite.inner .item-product__btn-favorite-icon {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .item-product__btn-favorite {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 195px;
    height: 39px;
    border: 2px solid var(--color-gray-400);
    color: var(--color-gray-100);
    -webkit-transition: var(--transition-normal);
    -o-transition: var(--transition-normal);
    transition: var(--transition-normal);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    border-radius: 8px;
    padding: 5px 24px;
  }

  .item-product__btn-favorite.active {
    border-color: var(--color-pink-200);
  }

  .item-product__btn-favorite.active .item-product__btn-favorite-icon svg {
    fill: var(--color-pink-200);
    stroke: var(--color-pink-200);
  }

  .item-product__btn-favorite.active .item-product__btn-favorite-text {
    color: var(--color-pink-200);
  }

  .item-product__btn-favorite-icon {
    border: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 24px;
    max-width: 100%;
    height: 24px;
  }

  .item-product__btn-favorite-icon svg {
    stroke: var(--color-gray-100);
  }

  .item-product__btn-favorite-text {
    display: block;
  }

  .item-product__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header {
    padding: 10px 16px;
  }

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

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

  .header__block {
    padding: 0;
    display: none;
  }

  .header__search {
    padding: 0;
    display: none;
  }

  .header__notifications {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .header__user-menu {
    padding: 0;
    display: none;
  }

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

  .header__menu-icon {
    display: block;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .header__mob-menu {
    display: block;
  }

  .header-btn {
    height: 40px;
  }

  .header-btn__text {
    font-size: 15px;
  }

  .notifications-btn__icon {
    width: 28px;
    height: 28px;
  }

  .notifications-btn__icon img {
    width: 28px;
    height: 28px;
  }

  .notifications-btn__count {
    top: -9px;
  }

  .menu-user__top {
    display: none;
  }

  .menu-user__body {
    position: static;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .menu-user__list {
    border-radius: 0px;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: auto;
  }

  .menu-user__item:not(:first-child) {
    margin-top: 16px;
  }

  .menu-user__item.inner {
    display: block;
  }

  .menu-user__icon {
    padding-right: 2px;
  }

  .menu-user__count {
    height: 21px;
    font-size: 13px;
    min-width: 27px;
    padding: 1px 4px;
    line-height: normal;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: all 0.375s ease;
    -o-transition: all 0.375s ease;
    transition: all 0.375s ease;
  }

  .menu.open .menu__body {
    right: 0;
  }

  .menu.open.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0.15s;
    -o-transition: all 0.3s ease 0.15s;
    transition: all 0.3s ease 0.15s;
  }

  .menu.open.active .menu__body {
    right: -100%;
    -webkit-transition: all 0.375s ease 0;
    -o-transition: all 0.375s ease 0;
    transition: all 0.375s ease 0;
  }

  .menu__body {
    width: 100%;
    max-width: 320px;
    background: var(--color-white);
    right: -100%;
    position: relative;
    -webkit-transition: all 0.375s ease 0.075s;
    -o-transition: all 0.375s ease 0.075s;
    transition: all 0.375s ease 0.075s;
    padding: 16px 6px 0 16px;
    height: 100%;
  }

  .menu__box {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

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

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

  .menu__wrap {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 10px 20px 0;
  }

  .menu__wrap::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background: var(--color-gray-400);
    border-radius: 3px;
  }

  .menu__wrap::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
    border-radius: 4px;
    border: none;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu__wrap::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-200);
  }

  .menu__personal {
    display: block;
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu__btn {
    display: block;
  }

  .menu__block {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu__block:first-child {
    margin-top: 0;
  }

  .menu__block:last-child {
    margin-bottom: 0;
  }

  .menu__block-top {
    display: none;
  }

  .menu__block-body {
    position: static;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .menu__list {
    border-radius: 0px;
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    min-width: auto;
  }

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

  .menu__tg {
    display: block;
  }

  .menu__bottom {
    display: block;
    padding-left: 12px;
    padding-right: 12px;
  }

  .slider-tab {
    margin: 0 -16px;
  }

  .slider-tab__slide {
    min-width: 100%;
    padding: 0 16px;
  }

  .notifications-popup__block {
    padding: 20px 3px 20px 0;
  }

  .item-notifications__avatar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 44px;
    max-width: 100%;
    height: 44px;
  }

  .item-notifications__img {
    width: 44px;
    height: 44px;
  }

  .item-notifications__status {
    width: 16px;
    height: 16px;
    bottom: 0;
    right: -2px;
  }

  .item-notifications__body {
    padding-right: 0;
  }

  .item-notifications__name {
    font-size: 15px;
    font-weight: 700;
  }

  .item-notifications__text {
    font-size: 15px;
    line-height: 150%;
  }

  .info-notifications__icon img,
  .info-notifications__icon svg {
    width: 40px;
    height: 40px;
  }

  .info-notifications__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 130%;
  }

  .info-notifications__text {
    font-size: 15px;
    line-height: 150%;
    margin-top: 8px;
  }

  .info-notifications__btn {
    margin-top: 12px;
  }

  .catalog-page__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .catalog-page__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .catalog-page__title {
    margin-bottom: 16px;
  }

  .catalog-page__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .catalog-page .slider-tab {
    margin-bottom: 16px;
  }

  .sidebar-product__top {
    margin-bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    background: transparent;
    padding: 0;
    border-radius: 0px;
  }

  .sidebar-product__title {
    font-size: 24px;
    color: var(--color-black-100);
  }

  .sidebar-product__icon {
    color: var(--color-white);
    width: 28px;
    height: 28px;
    background: var(--gradient-pink);
  }

  .sidebar-product__icon svg {
    width: 20px;
    height: 20px;
  }

  .sidebar-product-slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .item-product-small {
    background: var(--gradient-pink);
    padding: 1px;
  }

  .item-product-small__body {
    padding: 15px;
    background: var(--color-white);
    border-radius: 15px;
  }

  .item-product-small__labels {
    margin-bottom: 2px;
  }

  .item-product-small__label {
    font-size: 13px;
    line-height: 140%;
  }

  .item-product-small__city-icon svg {
    width: 16px;
    height: 16px;
  }

  .item-product-small__city-text {
    font-size: 14px;
  }

  .item-product-small__name {
    font-size: 15px;
  }

  .item-product-small__info-text {
    font-size: 15px;
  }

  .block-top {
    border-radius: 0px;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }

  .block-top__body {
    padding: 16px;
    border-radius: 16px;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-block);
            box-shadow: var(--shadow-block);
  }

  .block-top__title {
    width: 100%;
    word-wrap: break-word;
  }

  .block-top__text {
    font-size: 15px;
  }

  .block-top__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .block-top__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .block-top__left .block-top__text {
    margin-bottom: 20px;
  }

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

  .search-filter {
    margin-top: 32px;
  }

  .search-filter.search-popup .search-filter__row .search-filter__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .search-filter.search-popup .search-filter__row .search-filter__col:nth-child(1) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .search-filter.search-popup .search-filter__row .search-filter__col:nth-child(2) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .search-filter.search-popup .search-filter__row .search-filter__col:nth-child(3) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .search-filter.search-popup .search-filter__row .search-filter__check {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .search-filter.search-popup .search-filter__row .search-filter__slider {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .search-filter.search-popup .search-filter__row .search-filter__btn {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

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

  .search-filter__slider {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    min-width: auto;
  }

  .search-filter__check {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    margin-top: 16px;
  }

  .search-filter__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    margin-top: 16px;
  }

  .main-checkbox label span {
    font-size: 15px;
  }

  .item-no-ui {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .item-no-ui__bottom {
    -webkit-column-gap: 3px;
       -moz-column-gap: 3px;
            column-gap: 3px;
  }

  .item-no-ui__block {
    font-size: 13px;
    -webkit-column-gap: 3px;
       -moz-column-gap: 3px;
            column-gap: 3px;
  }

  .item-no-ui__text {
    width: 16px;
  }

  .form-group.focus .form-label {
    font-size: 13px;
  }

  .form-group-error {
    font-size: 13px;
    margin-top: 6px;
  }

  .form-group-error strong {
    font-size: 12px;
  }

  .form-group-info {
    margin-top: 6px;
  }

  .form-label {
    font-size: 15px;
  }

  .form-control {
    font-size: 15px;
  }

  .form-control.block-area textarea {
    font-size: 15px;
  }

  .form-select__text {
    font-size: 15px;
  }

  .search-no-result__title {
    margin-bottom: 16px;
  }

  .search-no-result__body {
    padding: 16px;
    font-size: 15px;
  }

  .text-block {
    font-size: 15px;
    margin-top: 12px;
  }

  .text-block:not(:last-child) {
    margin-bottom: 32px;
  }

  .text-block-info {
    font-size: 15px;
  }

  .support-page__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .support-page__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .support-page__top {
    background: transparent;
    padding: 0;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .support-page__top:not(:last-child) {
    margin-bottom: 16px;
  }

  .support-page__body {
    border-radius: 16px;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-block);
            box-shadow: var(--shadow-block);
    padding: 16px;
  }

  .support-page__title:not(:last-child) {
    margin-bottom: 16px;
  }

  .support-page__text {
    font-size: 15px;
  }

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

  .support-item {
    padding: 24px 16px 16px;
  }

  .support-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .support-item__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 8px);
    max-width: 100%;
  }

  .support-item__body {
    -webkit-column-gap: 21px;
       -moz-column-gap: 21px;
            column-gap: 21px;
  }

  .support-item__text {
    font-size: 15px;
  }

  .support-item__rigth {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 8px);
    max-width: 100%;
  }

  .support-form {
    padding: 16px;
  }

  .support-form__title {
    font-size: 24px;
  }

  .support-form__success-text {
    font-size: 15px;
  }

  .support-form__item:not(:first-child) {
    margin-top: 20px;
  }

  .support-form__captcha:not(:first-child) {
    margin-top: 24px;
  }

  .support-form__bottom {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }

  .support-form__bottom .btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 12px);
    max-width: 100%;
  }

  .support-form__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 12px);
    max-width: 100%;
    margin-top: 0;
    font-size: 13px;
    line-height: 140%;
    text-align: left;
  }

  .page-error {
    height: 390px;
  }

  .page-error__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
    text-align: center;
  }

  .page-error__icon img,
  .page-error__icon svg {
    width: 48px;
    height: 48px;
  }

  .page-error__title {
    font-size: 26px;
  }

  .page-error__text {
    margin-top: 8px;
    font-size: 15px;
  }

  .page-error__btn {
    margin-top: 24px;
    width: 100%;
  }

  .sales-page {
    padding: 24px 16px 8px;
  }

  .sales-page .bread-crumbs {
    margin-bottom: 24px;
  }

  .sales-page__bg {
    display: none;
  }

  .sales-page__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sales-page__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    width: 100%;
  }

  .sales-page__icon img,
  .sales-page__icon svg {
    width: 48px;
    height: 48px;
  }

  .sales-page__text {
    font-size: 15px;
    text-align: center;
  }

  .sales-page__select {
    max-width: 366px;
    width: 100%;
  }

  .sales-page__select .form-select .form-select__text {
    font-size: 14px;
  }

  .sales-page__select .form-select .form-select__text span {
    display: inline-block;
  }

  .sales-page__list li {
    font-size: 15px;
  }

  .sales-page__list li:before {
    top: 6px;
  }

  .sales-page__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 366px;
  }

  .services-activated__top {
    margin-bottom: 12px;
    padding-right: 30px;
  }

  .services-activated__icon img,
  .services-activated__icon svg {
    width: 24px;
    height: 24px;
  }

  .services-activated__title {
    font-size: 18px;
    min-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .services-activated__text:not(:last-child) {
    margin-bottom: 12px;
  }

  .services-activated__text {
    font-size: 15px;
  }

  .services-activated__desc {
    font-size: 15px;
  }

  .services-activated__heading {
    font-size: 15px;
  }

  .services-activated__tg-text:not(:last-child) {
    margin-bottom: 12px;
  }

  .services-activated__tg-text {
    font-size: 15px;
  }

  .services-activated__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

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

  .services-activated__bottom {
    margin-top: 16px;
  }

  .services-activated__share .ya-share2__container_size_l .ya-share2__badge .ya-share2__icon {
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }

  .services-activated__select.inner .form-select .form-select__text {
    font-size: 14px;
  }

  .services-activated__select.inner .form-select .form-select__text span {
    display: inline-block;
  }

  .services-activated__price-block-text {
    font-size: 14px;
  }

  .services-activated__price {
    font-size: 18px;
  }

  .services-activated__old-price {
    font-size: 14px;
  }

  .services-activated__price-info {
    font-size: 15px;
  }

  .main-page__body {
    padding: 24px 16px;
  }

  .main-page__subtitle {
    font-size: 15px;
  }

  .main-page__buttons {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }

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

  .main-form__heading {
    font-size: 15px;
  }

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

  .main-form__info {
    font-size: 13px;
  }

  .main-form__info strong {
    font-size: 12px;
  }

  .main-form__text {
    font-size: 15px;
  }

  .card-page__mob {
    display: block;
  }

  .card-page__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .card-page__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .card-page__title {
    margin-bottom: 16px;
  }

  .card-page__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .card-body {
    border-radius: 0px;
    background: transparent;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .card-body__crumbs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .card-body__crumbs .bread-crumbs {
    margin-bottom: 8px;
  }

  .card-body__link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 24px;
    text-align: center;
  }

  .card-body__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
  }

  .card-body__block {
    border-radius: 16px;
    background: var(--color-white);
    padding: 16px;
    -webkit-box-shadow: var(--shadow-block);
            box-shadow: var(--shadow-block);
  }

  .card-body__user {
    font-size: 15px;
    line-height: 130%;
  }

  .card-body__wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .card-body__wrap-text span:first-child {
    display: none;
  }

  .card-body__wrap-text span:last-child {
    display: block;
  }

  .card-body__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 24px;
    max-width: 100%;
    padding: 0;
    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;
  }

  .card-body__label-text {
    font-size: 13px;
    line-height: 140%;
    display: none;
  }

  .card-body__text {
    font-size: 15px;
    margin-top: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .card-body__boxes {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .card-body__box {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }

  .card-body__box-icon svg {
    width: 16px;
    height: 16px;
  }

  .card-body__box-text {
    font-size: 15px;
  }

  .card-body__telegram-text {
    font-size: 15px;
  }

  .card-body__telegram-text strong {
    font-size: 14px;
  }

  .card-body__bottom {
    margin-top: 24px;
  }

  .card-body__prev-text {
    font-size: 15px;
  }

  .card-body__next-text {
    font-size: 15px;
  }

  .like-advertisement {
    margin-top: 16px;
  }

  .item-like {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-like.inner .btn span:nth-child(1) {
    display: none;
  }

  .item-like.inner .btn span:nth-child(2) {
    display: block;
  }

  .item-like.inner .btn svg {
    display: none;
  }

  .item-like__body {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .item-like__name {
    font-size: 15px;
  }

  .item-like .btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 73px;
    max-width: 100%;
    padding: 5px;
  }

  .item-like .btn span {
    display: none;
  }

  .personal-page__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

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

  .personal-page-top {
    padding: 24px 16px;
  }

  .personal-page-top:not(:last-child) {
    margin-bottom: 16px;
  }

  .personal-page-top__title {
    font-size: 24px;
  }

  .personal-page-top__text {
    font-size: 15px;
  }

  .personal-block:not(:last-child) {
    margin-bottom: 16px;
  }

  .personal-block__row {
    margin: -8px;
  }

  .personal-block__col {
    padding: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .personal-item {
    padding: 16px;
  }

  .personal-item__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
  }

  .personal-item__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .personal-item__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .personal-item__title {
    font-size: 18px;
  }

  .personal-item__text {
    font-size: 15px;
  }

  .personal-item__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    padding: 0;
  }

  .personal-menu {
    border-radius: 0px;
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
  }

  .personal-menu__top {
    display: none;
  }

  .personal-menu__user-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 44px;
    max-width: 100%;
    height: 44px;
  }

  .personal-menu__user-img {
    width: 44px;
    height: 44px;
  }

  .personal-menu__user-name {
    font-size: 15px;
    font-weight: 700;
  }

  .personal-menu__user-text {
    font-size: 15px;
    line-height: 150%;
  }

  .personal-menu__body {
    padding-bottom: 0;
    border: none;
  }

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

  .personal-menu__item:not(:last-child) {
    margin-bottom: 0;
  }

  .personal-menu__item {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding: 16px 16px;
    position: relative;
  }

  .personal-menu__item.inner {
    display: none;
  }

  .personal-menu__item.active {
    background: transparent;
  }

  .personal-menu__item-text {
    font-size: 15px;
  }

  .personal-menu__item-text span:first-child {
    display: none;
  }

  .personal-menu__item-text span:last-child {
    display: block;
  }

  .personal-menu__item-count {
    width: 21px;
    height: 21px;
    min-width: auto;
    border-radius: 50%;
    padding: 1px;
    font-size: 10px;
    position: absolute;
    top: 9px;
    left: 28px;
    z-index: 1;
  }

  .personal-menu__tg {
    display: none;
  }

  .personal-menu__bottom {
    display: none;
  }

  .profile-page {
    padding: 24px 16px;
  }

  .profile-page__text {
    font-size: 15px;
  }

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

  .profile-page__item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

  .profile-page__item-top .btn {
    width: 100%;
  }

  .profile-page__item-title {
    text-align: center;
  }

  .profile-page__item-body {
    row-gap: 16px;
  }

  .main-services {
    padding: 16px;
  }

  .main-services:not(:last-child) {
    margin-bottom: 16px;
  }

  .main-services__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .main-services__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .main-services__status {
    display: none;
  }

  .main-services__name {
    font-size: 15px;
    line-height: 130%;
  }

  .main-services__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .main-services__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    row-gap: 4px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .main-services__status-mob {
    display: none;
  }

  .main-services__status-mob {
    display: block;
  }

  .main-services__price {
    font-size: 15px;
  }

  .main-services__bottom {
    margin-top: 10px;
  }

  .main-services__item {
    font-size: 15px;
  }

  .personal-page-nav:not(:last-child) {
    margin-bottom: 16px;
  }

  .no-items-block {
    padding: 24px 16px;
  }

  .no-items-block__text {
    font-size: 15px;
  }

  .item-likes {
    padding: 16px;
  }

  .item-likes:not(:last-child) {
    margin-bottom: 16px;
  }

  .item-likes__label-text {
    font-size: 13px;
    line-height: 140%;
  }

  .item-likes__title {
    font-size: 15px;
  }

  .item-likes__text {
    font-size: 13px;
  }

  .item-sympathies:not(:last-child) {
    margin-bottom: 16px;
  }

  .item-sympathies {
    padding: 16px;
  }

  .item-sympathies__user {
    font-size: 15px;
    line-height: 130%;
  }

  .item-sympathies__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 24px;
    max-width: 100%;
    padding: 0;
    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;
  }

  .item-sympathies__label-text {
    font-size: 13px;
    line-height: 140%;
    display: none;
  }

  .item-sympathies__text {
    font-size: 15px;
    margin-top: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .item-sympathies__boxes {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 6px;
    margin-top: 8px;
  }

  .item-sympathies__box {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }

  .item-sympathies__box-icon svg {
    width: 16px;
    height: 16px;
  }

  .item-sympathies__box-text {
    font-size: 15px;
  }

  .item-advertisements {
    padding: 16px;
  }

  .item-advertisements:not(:last-child) {
    margin-bottom: 16px;
  }

  .item-advertisements__head {
    margin-bottom: 16px;
  }

  .item-advertisements__head-row {
    margin: 0 -4px;
  }

  .item-advertisements__head-left {
    padding: 0 4px;
  }

  .item-advertisements__head-body {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .item-advertisements__head-status {
    font-size: 13px;
    line-height: normal;
  }

  .item-advertisements__head-center {
    padding: 0 4px;
  }

  .item-advertisements__date {
    font-size: 13px;
    line-height: normal;
  }

  .item-advertisements__head-right {
    padding: 0 4px;
  }

  .item-advertisements__menu-top {
    width: 24px;
    height: 24px;
  }

  .item-advertisements__menu-top svg {
    width: 24px;
    height: 24px;
  }

  .item-advertisements__menu-body {
    top: calc(100% + 8px);
    padding: 10px 8px 10px 0;
    width: 155px;
  }

  .item-advertisements__menu-item {
    font-size: 15px;
  }

  .item-advertisements__label-text {
    font-size: 13px;
    line-height: 140%;
  }

  .item-advertisements__title {
    font-size: 15px;
  }

  .item-advertisements__text {
    font-size: 13px;
  }

  .assign-services-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .assign-services-row__check {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .header-admin {
    padding: 0 16px;
  }

  .header-admin__list {
    margin: 0 -16px;
    padding: 11.5px 16px;
  }

  .header-admin__link {
    font-weight: 500;
    padding: 5px 6px;
    border-radius: 4px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    color: var(--color-gray-100);
  }

  .header-admin__link span {
    padding: 0;
  }

  .header-admin-top {
    padding: 16px;
  }

  .header-admin-top__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -8px;
  }

  .header-admin-top__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
  }

  .header-admin-top__center {
    margin-bottom: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0 8px;
  }

  .header-admin-top__name {
    font-size: 16px;
    text-align: center;
  }

  .header-admin-top__right {
    padding: 0 8px;
  }

  .header-admin-top__buttons {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }

  .main-chat {
    height: calc(100vh - 164px);
  }

  .main-chat__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 360px;
    max-width: 100%;
  }

  .main-chat-menu-mob {
    display: block;
  }

  .chat-block__menu-body {
    top: calc(100% + 8px);
    padding: 10px 8px 10px 0;
    width: 155px;
  }

  .chat-block__menu-item {
    font-size: 15px;
  }

  .chat-block__box {
    padding: 12px 9px 12px 16px;
  }

  .form-chat {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .form-chat__area {
    max-height: 144px;
  }

  .form-chat__btn svg {
    width: 24px;
    height: 24px;
  }

  .main-chat-date {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .main-chat-text-info {
    margin-top: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .main-chat-text-info__text {
    font-size: 13px;
    line-height: 140%;
  }

  .main-chat-text-info__btn {
    margin-top: 12px;
  }

  .main-chat-text-info__bottom {
    font-size: 13px;
    line-height: 140%;
  }

  .main-chat-text-info__link {
    font-size: 13px;
    line-height: 140%;
  }

  .main-chat-item-user {
    margin-top: 12px;
  }

  .main-chat-item-user__body {
    padding: 7px 9px;
  }

  .main-chat-item-user__text {
    font-size: 14px;
    line-height: 1.42857;
  }

  .main-chat-item-user__time {
    right: 9px;
    bottom: 7px;
    line-height: 1.42857;
  }

  .main-chat-item {
    margin-top: 12px;
  }

  .main-chat-item__body {
    padding: 8px 10px;
  }

  .main-chat-item__text {
    font-size: 14px;
    line-height: 1.42857;
  }

  .main-chat-item__time {
    line-height: 1.42857;
    bottom: 6px;
    right: 10px;
  }

  .main-chat-item__time:after {
    position: relative;
    top: -1px;
  }
}

@media (max-width: 1023.98px) and (max-width: 359.98px) {
  .bread-crumbs__list {
    margin: 0 -10px;
    padding: 0 10px 8px;
  }
}

@media (max-width: 1023.98px) and (max-width: 319.98px) {
  .bread-crumbs__list {
    margin: 0 -5px;
    padding: 0 5px 8px;
  }
}

@media (any-hover: hover) and (max-width: 1023.98px) {
  .location-popup__item:hover {
    background: transparent;
    background: var(--gradient-pink);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 1023.98px) and (any-hover: hover) {
  .item-product__btn-favorite:hover {
    border-color: var(--color-pink-200);
  }

  .item-product__btn-favorite:hover .item-product__btn-favorite-icon svg {
    stroke: var(--color-pink-200);
  }

  .item-product__btn-favorite:hover .item-product__btn-favorite-text {
    color: var(--color-pink-200);
  }
}

@media (max-width: 767.98px) {
  body.page-messages .main {
    padding-top: 60px;
    padding-bottom: 0;
  }

  body.page-messages .header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  body.page-messages .personal-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top: 1px solid var(--color-gray-400);
  }

  h3 {
    font-size: 18px;
    line-height: normal;
  }

  .categories-block__title {
    text-align: left;
  }

  .categories-block__text {
    text-align: left;
  }

  .categories-block__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .categories-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 133px;
    max-width: 100%;
    padding: 0;
  }

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

  .main-block__item-text {
    font-size: 15px;
  }

  .header-btn {
    background: transparent;
    height: 28px;
    width: 28px;
    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;
    padding: 0;
    border-radius: 0px;
  }

  .header-btn__icon {
    width: 28px;
    height: 28px;
  }

  .header-btn__icon img {
    width: 28px;
    height: 28px;
  }

  .header-btn__icon img:first-child {
    display: none;
  }

  .header-btn__icon img:last-child {
    display: block;
  }

  .header-btn__text {
    display: none;
  }

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

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

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

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

  .text-block h2 {
    font-size: 18px;
    line-height: normal;
  }

  .support-item__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 16px;
  }

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

  .support-item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 12px;
  }

  .support-item__box {
    text-align: center;
  }

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

  .support-form__bottom {
    display: block;
  }

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

  .support-form__text {
    text-align: center;
    margin-top: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .card-body.inner .card-body__like {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .card-body__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -8px -5px;
  }

  .card-body__like {
    padding: 8px 5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .card-body__btn {
    padding: 8px 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .card-body__share {
    padding: 8px 5px;
  }

  .card-body__telegram {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

  .card-body__telegram-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

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

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

  .personal-menu__item {
    color: var(--color-black-100);
  }

  .personal-menu__item-text {
    display: none;
  }

  .profile-page__row {
    margin: -16px 0;
  }

  .profile-page__col {
    padding: 16px 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .profile-page__item-top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .profile-page__item-top .btn {
    max-width: 366px;
  }

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

  .main-services__item:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .no-items-block .btn {
    width: 100%;
  }

  .item-likes__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .item-likes__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

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

  .item-likes__text {
    text-align: center;
  }

  .item-likes__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }

  .item-sympathies__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -8px -5px;
  }

  .item-sympathies__like {
    padding: 8px 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .item-sympathies__btn {
    padding: 8px 5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .item-sympathies__share {
    padding: 8px 5px;
  }

  .item-advertisements__head-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .item-advertisements__head-left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    -ms-flex-item-align: center;
        align-self: center;
  }

  .item-advertisements__head-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

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

  .item-advertisements__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .item-advertisements__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

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

  .item-advertisements__text {
    text-align: center;
  }

  .item-advertisements__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }

  .header-admin-top__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }

  .header-admin-top__left .btn {
    width: 100%;
  }

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

  .header-admin-top__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }

  .header-admin-top .btn {
    width: 100%;
  }

  .main-chat {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: relative;
    border: none;
    border-top: 1px solid var(--color-gray-400);
    height: calc(100vh - 60px);
    padding-bottom: 56px;
    min-height: 300px;
  }

  .main-chat__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    border: none;
  }

  .main-chat__top {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding: 16px 16px;
    height: 75px;
  }

  .main-chat__right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 50;
    -webkit-transition: var(--transition-normal);
    -o-transition: var(--transition-normal);
    transition: var(--transition-normal);
    background: var(--color-white);
  }

  .main-chat__box {
    min-width: 280px;
  }

  .user-chat {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding: 8px 16px;
  }

  .user-chat.error .user-chat__bottom:after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .user-chat.unavailable .user-chat__bottom:after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .user-chat.delivered .user-chat__bottom:after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .user-chat.read .user-chat__bottom:after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .user-chat__avatar {
    width: 44px;
    height: 44px;
  }

  .user-chat__avatar:before {
    width: 13px;
    height: 13px;
  }

  .user-chat__img {
    width: 44px;
    height: 44px;
  }

  .user-chat__label {
    font-size: 18.5px;
  }

  .user-chat__body {
    width: calc(100% - 52px);
  }

  .user-chat__top {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .user-chat__fixed svg {
    width: 20px;
    height: 20px;
  }

  .user-chat__bottom {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .user-chat__count {
    font-size: 13px;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    padding: 1px 4.5px;
  }

  .chat-block__top {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    height: 56px;
    padding: 3px 16px;
    border-bottom: 1px solid var(--color-gray-400);
  }

  .chat-block__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .chat-block__user {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .chat-block__user-avatar {
    width: 40px;
    height: 40px;
  }

  .chat-block__user-avatar:before {
    width: 12px;
    height: 12px;
  }

  .chat-block__user-img {
    width: 40px;
    height: 40px;
  }

  .chat-block__user-label {
    font-size: 16.5px;
  }

  .chat-block__user-name {
    font-size: 14px;
    line-height: 1.21429;
  }

  .chat-block__user-text {
    font-size: 12px;
    line-height: 140%;
  }

  .chat-block__user-city {
    font-size: 12px;
    line-height: 140%;
    margin-top: 0;
  }

  .chat-block__menu-top {
    width: 24px;
    height: 24px;
  }

  .chat-block__menu-top svg {
    width: 24px;
    height: 24px;
  }

  .main-chat-date span {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) and (max-width: 279.98px) {
  .main-chat__right {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 575.98px) {
  .footer-top {
    padding: 24px 10px 20px;
  }

  .footer-top__boxes {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer-top__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    max-width: 340px;
    text-align: center;
  }

  .footer-top__box:not(:last-child) {
    margin-bottom: 20px;
  }

  .footer-top__box:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    max-width: 340px;
  }

  .footer-top__box:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    max-width: 340px;
  }

  .main-pagination {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .header__box {
    padding: 0;
    display: none;
  }

  .notifications-popup {
    width: 100vw;
    height: 100%;
    right: 0;
    position: fixed;
    padding: 16px 16px 47px;
  }

  .notifications-popup__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }

  .notifications-popup__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }

  .notifications-popup__close {
    position: static;
    width: 100%;
    height: 83px;
    padding-top: 47px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
  }

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

  .page-error__btn .btn {
    width: 100%;
  }

  .sales-page__top {
    width: 100%;
  }

  .sales-page__title {
    width: 100%;
    text-align: center;
  }

  .sales-page__text {
    width: 100%;
    max-width: none;
  }

  .sales-page__select {
    width: 100%;
    max-width: none;
  }

  .sales-page__list {
    width: 100%;
    max-width: none;
  }

  .sales-page__buttons {
    width: 100%;
    max-width: none;
  }

  .sales-page__buttons .btn:first-child {
    width: 100%;
  }

  .sales-page__buttons .btn {
    width: 100%;
  }

  .main-form__col-33 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(100% - 230px);
    max-width: 100%;
  }

  .main-form__col-33.inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 115px;
    max-width: 100%;
  }

  .profile-page__item-top .btn {
    max-width: none;
  }

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

  .profile-form__btn .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) and (max-width: 319.98px) {
  .notifications-popup {
    padding: 16px 5px 47px;
  }
}

@media (max-width: 429.98px) {
  .footer-bottom {
    padding: 24px 10px;
  }

  .categories-block__text {
    margin-bottom: 32px;
  }

  .main-pagination {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .main-pagination__block {
    display: none;
  }

  .item-product__btn-favorite {
    padding: 5px 3px;
  }

  .item-product__btn {
    padding: 5px 3px;
  }

  .main-form__row {
    margin: -8px -4px;
  }

  .main-form__heading {
    padding: 8px 4px 0;
  }

  .main-form__col-50 {
    padding: 8px 4px;
  }

  .main-form__col-33 {
    padding: 8px 4px;
    width: calc(100% - 164px);
  }

  .main-form__col-33.inner {
    width: 82px;
  }
}

@media (max-width: 359.98px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fancybox__slide {
    padding: 30px 10px;
  }

  .btn {
    padding: 5px 5px;
  }

  .main-pagination {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .header {
    padding: 10px 10px;
  }

  .header__row {
    margin: 0 -5px;
  }

  .header__left {
    padding: 0 5px;
  }

  .header__notifications {
    padding: 0 5px;
  }

  .header__btn {
    padding: 0 5px;
  }

  .header__menu-icon {
    padding: 0 5px;
  }

  .slider-tab {
    margin: 0 -10px;
  }

  .slider-tab__slide {
    padding: 0 10px;
  }

  .card-body__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .card-body__labels {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }

  .card-body__prev-text span:first-child {
    display: none;
  }

  .card-body__prev-text span:last-child {
    display: block;
  }

  .card-body__next-text span:first-child {
    display: none;
  }

  .card-body__next-text span:last-child {
    display: block;
  }

  .item-like .btn {
    width: 54px;
  }

  .item-likes__labels {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }

  .item-sympathies__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .item-sympathies__labels {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }

  .item-advertisements__labels {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }

  .header-admin {
    padding: 0 10px;
  }

  .header-admin__list {
    margin: 0 -10px;
    padding: 11.5px 10px;
  }

  .header-admin-top {
    padding: 16px 10px;
  }

  .main-chat {
    margin-left: -10px;
    margin-right: -10px;
  }

  .main-chat__top {
    padding: 16px 10px;
  }

  .user-chat {
    padding: 8px 10px;
  }

  .chat-block__content {
    padding-right: 5px;
  }

  .chat-block__top {
    margin-right: -7px;
    padding: 3px 10px;
  }

  .chat-block__box {
    padding: 12px 5px 12px 10px;
  }

  .chat-block__items .btn {
    padding-left: 24px;
    padding-right: 24px;
  }

  .chat-block__area {
    margin-right: -5px;
  }

  .form-chat {
    padding: 10px 10px;
  }

  .main-chat-item-user__body {
    max-width: none;
  }

  .main-chat-item__body {
    max-width: none;
  }
}

@media (max-width: 319.98px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .fancybox__slide {
    padding: 30px 5px;
  }

  .main-popup.fancybox__content {
    padding: 20px 10px;
  }

  .main-popup__close {
    right: 0;
  }

  .location-popup.fancybox__content {
    padding: 20px 10px;
  }

  .location-popup__close {
    right: 10px;
  }

  .main-pagination {
    -webkit-column-gap: 2px;
       -moz-column-gap: 2px;
            column-gap: 2px;
  }

  .main-pagination__items {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }

  .main-pagination__item {
    width: 32px;
    height: 32px;
  }

  .header {
    padding: 10px 5px;
  }

  .header__btn {
    padding: 0;
    display: none;
  }

  .slider-tab {
    margin: 0 -5px;
  }

  .slider-tab__slide {
    padding: 0 5px;
  }

  .notifications-popup__items {
    padding-left: 10px;
    padding-right: 4px;
  }

  .item-notifications {
    padding: 12px 4px 12px 10px;
    margin-right: -4px;
    margin-left: -10px;
  }

  .form-label span {
    display: inline-block;
  }

  .main-form__heading {
    display: none;
  }

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

  .main-form__col-33.inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .card-body__wrap {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .card-body__wrap-text {
    padding-left: 16px;
  }

  .card-body__btn .btn {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }

  .item-sympathies__btn .btn {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }

  .header-admin {
    padding: 0 5px;
  }

  .header-admin__list {
    margin: 0 -5px;
    padding: 11.5px 5px;
  }

  .header-admin-top {
    padding: 16px 5px;
  }

  .main-chat {
    margin-left: -5px;
    margin-right: -5px;
  }

  .main-chat__top {
    padding: 16px 5px;
  }

  .user-chat {
    padding: 8px 5px;
  }

  .chat-block__content {
    padding-right: 0;
  }

  .chat-block__top {
    padding: 3px 5px;
    margin-right: 0;
  }

  .chat-block__box {
    padding: 12px 5px;
  }

  .chat-block__area {
    margin-right: 0;
  }

  .form-chat {
    padding: 10px 5px;
  }
}

@media (min-width: 319.98px) and (max-width: 429.98px) {
  .main-form__col-33 .form-label {
    font-size: 14px;
    left: 5px;
    padding: 0 5px;
  }

  .main-form__col-33 .form-select__top {
    padding: 14px 5px 14px 8px;
  }

  .main-form__col-33 .form-select__item {
    padding: 8px 10px 8px 9px;
  }
}

@media (any-hover: hover) {
  .btn.btn-secondary:hover {
    --btnSecondary1: #d9294d;
    --btnSecondary2: #fd5e7e;
    color: var(--color-white);
    border-color: transparent;
  }

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

  .btn.btn-blue-dark:hover {
    background: var(--color-blue);
  }

  .btn.btn-pink:hover {
    background: -o-linear-gradient(173deg, #c82345 -8.56%, #df4765 111.41%);
    background: linear-gradient(277deg, #c82345 -8.56%, #df4765 111.41%);
  }

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

  .bread-crumbs__item a:hover {
    color: var(--color-gray);
  }

  .location-popup__item:hover {
    color: var(--color-white);
    --btnLocation1: #d9294d;
    --btnLocation2: #fd5e7e;
  }

  .categories-block__item:hover .categories-block__img {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
        -ms-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
  }
  .categories-block__item:hover .categories-block__btn {
    -webkit-transform: scale(0.985);
        -ms-transform: scale(0.985);
            transform: scale(0.985);
  }

  .main-block__item:hover {
    background: #f5f5f5;
  }

  .main-block__item:hover:nth-child(1) .main-block__item-icon {
    color: var(--color-pink);
  }

  .main-block__item:hover:nth-child(2) .main-block__item-icon {
    color: var(--color-red);
  }

  .main-block__item:hover .main-block__item-text {
    color: var(--color-black-100);
  }

  .main-block__item.inner:hover:nth-child(3) .main-block__item-icon {
    color: var(--color-blue-200);
  }

  .main-block__item.inner:hover:nth-child(4) .main-block__item-icon {
    color: var(--color-blue-100);
  }

  .item-product__btn:hover {
    color: var(--color-pink-200);
    border-color: var(--color-pink-200);
  }

  .main-checkbox label:hover input:checked + span:before {
    background-color: var(--color-pink-400);
  }

  .main-checkbox label:hover input[disabled]:checked + span:before {
    background-color: var(--color-pink-200);
  }

  .main-checkbox label:hover span:before {
    background-color: var(--color-gray-200);
  }

  .services-activated__text a:hover {
    text-decoration: none;
  }

  .services-activated__desc a:hover {
    text-decoration: none;
  }

  .main-switch label:hover input[disabled] + span {
    cursor: default;
    color: var(--color-gray-200);
    pointer-events: none;
  }

  .main-switch label:hover input[disabled] + span:before {
    --btnSwitch1: #cbcbd4;
    --btnSwitch2: #cbcbd4;
    opacity: 0.5;
  }

  .main-switch label:hover input[disabled]:checked + span {
    pointer-events: none;
    cursor: default;
    color: var(--color-gray-200);
  }

  .main-switch label:hover input[disabled]:checked + span:before {
    --btnSwitch1: #ffb3c7;
    --btnSwitch2: #ffb3c7;
    opacity: 0.5;
  }

  .main-switch label:hover input:checked + span:before {
    --btnSwitch1: #c82345;
    --btnSwitch2: #df4765;
  }

  .main-switch label:hover span:before {
    --btnSwitch1: #9e9ea7;
    --btnSwitch2: #9e9ea7;
  }

  .main-services__name a:hover {
    text-decoration: none;
  }

  .personal-page-nav .slider-tab__slide .main-block__item:hover .main-block__item-icon {
    color: var(--color-pink-200);
  }

  .item-likes__title a:hover {
    color: var(--color-gray-100);
  }

  .item-sympathies__text a:hover {
    color: var(--color-gray-100);
  }

  .item-advertisements__menu:hover .item-advertisements__menu-top {
    color: var(--color-gray);
  }

  .item-advertisements__menu:hover .item-advertisements__menu-body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .item-advertisements__menu-item:hover {
    color: var(--color-pink-400);
  }

  .item-advertisements__title a:hover {
    color: var(--color-gray-100);
  }

  .main-chat__back:hover {
    color: var(--color-gray);
    border-color: var(--color-gray-200);
  }

  .main-chat__items:hover::-webkit-scrollbar-track {
    background: var(--color-gray-400);
  }

  .main-chat__items:hover::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
  }

  .search-chat__btn:hover {
    color: var(--color-gray);
  }

  .search-chat__clear:hover {
    color: var(--color-gray);
  }

  .user-chat:hover {
    background: var(--color-gray-400);
  }

  .chat-block__back:hover {
    color: var(--color-gray);
    border-color: var(--color-gray-200);
  }

  .chat-block__menu-top:hover {
    color: var(--color-gray);
  }

  .chat-block__menu-item:hover {
    color: var(--color-pink-400);
  }

  .main-chat-text-info__text a:hover {
    text-decoration: none;
  }

  .main-chat-item-user__text a:hover {
    text-decoration: none;
  }

  .main-chat-item__text a:hover {
    text-decoration: none;
  }
}
