@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Основные цвета текста */
  --color-text-primary: #000; /* основной текст */
  --color-text-secondary: #334259; /* вторичный текст, сдержанный */
  --color-text-inverse: #ffffff; /* белый (для кнопок и фона) */
  /* Фоновые цвета */
  --color-bg-primary: #F9F9F6; /* основной светлый фон */
  --color-bg-white: #fff; /* белый фон для карточек и блоков */
  --color-bg-transparent-black: #1F29370D; /* легкий прозрачный черный (для хедера и футера) */
  /* Акцентные синие цвета */
  --color-accent-blue: #2563EB; /* основной акцентный синий (кнопки, ссылки) */
  /* Акценты зеленого цвета */
  --color-accent-green: #379841; /* зеленый для положительных значений, статусов */
  --color-accent-lime: #10B981;
  /* Акценты красного цвета */
  --color-accent-red: #FF0202; /* красный для негативных значений, ошибок */
  --color-accent-pink: #F54B8B; /* розовый/красный для роли "Продавец" */
  --color-accent-orange: #F37749; /* розовый/красный для роли "Продавец" */
  /* Иконки и штрихи */
  --color-icon-stroke-primary: var(--color-accent-blue); /* синий штрих */
  --color-icon-stroke-secondary: var(--color-text-primary); /* серый штрих */
  --color-icon-stroke-tertiary: #6b7280; /* темно-серый штрих */
  /* Тени и разделители */
  --color-shadow-light: rgba(0, 0, 0, 0.05); /* легкая тень */
  --color-border-light: #e0e7ff; /* светлая граница */
}

svg {
  display: block;
}

html {
  font-size: 3.684vmin;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.4;
  --theme-header-height: 4.28rem;
  --theme-header-height-half: 2.14rem;
  padding-top: var(--theme-header-height);
  padding-bottom: var(--theme-header-height);
  letter-spacing: -0.041em;
  background: var(--color-bg-primary);
}

button {
  letter-spacing: -0.041em;
  padding: 0;
  font-family: "Inter", sans-serif;
}

a {
  color: var(--color-accent-blue);
}
a:visited {
  color: inherit;
}

/* Чекбоксы */
/* Универсальный стиль для кастомных чекбоксов */
.custom-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-primary);
  position: relative;
  /* Квадрат чекбокса справа */
  /* Состояние checked — синий фон и белая галочка */
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox > span:nth-last-child(1)::after {
  content: "";
  display: block;
  width: 1.61rem;
  height: 1.61rem;
  border-radius: 0.33rem;
  background: var(--color-bg-transparent-black);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}
.custom-checkbox input[type=checkbox]:checked + span:nth-last-child(1)::after {
  background: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
  background-image: url("data:image/svg+xml,%3csvg fill='none' stroke='%23fff' stroke-width='3' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 13l4 4L19 7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
}

main {
  margin: 0 auto;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  max-width: var(--theme-max-width);
}

.btn, .search-filters .search-form input[type=search] {
  --btn-color-text: var(--color-bg-white);
  --btn-color-bg: var(--color-accent-blue);
  --btn-hover-color-bg: var(--btn-color-text);
  --btn-hover-color-text: var(--btn-color-bg);
  border-radius: 0.5rem;
  border: none;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  transition: 0.3s;
  background-color: var(--btn-color-bg);
  color: var(--btn-color-text);
}
.btn.white, .search-filters .search-form input.white[type=search] {
  --btn-color-text: var(--color-bg-white);
  --btn-color-bg: var(--color-accent-blue);
}
.btn.opacity-bg, .search-filters .search-form input.opacity-bg[type=search] {
  background: none;
  position: relative;
  color: var(--btn-color-bg);
  --btn-hover-color-text: var(--color-bg-white);
}
.btn.opacity-bg span, .search-filters .search-form input.opacity-bg[type=search] span {
  position: relative;
  z-index: 2;
}
.btn.opacity-bg:before, .search-filters .search-form input.opacity-bg[type=search]:before {
  background-color: var(--btn-color-bg);
  transition: 0.3s;
  z-index: 1;
}
.btn:hover:not(.opacity-bg), .search-filters .search-form input[type=search]:hover:not(.opacity-bg) {
  background-color: var(--btn-hover-color-bg);
  color: var(--btn-hover-color-text);
}
.btn:hover.opacity-bg, .search-filters .search-form input[type=search]:hover.opacity-bg {
  color: var(--btn-hover-color-text);
}
.btn:hover.opacity-bg:before, .search-filters .search-form input[type=search]:hover.opacity-bg:before {
  opacity: 1;
}

.social-btn,
i.theChampLogin {
  border: none;
  background: var(--color-bg-white);
  padding: 0.4rem;
  border-radius: 50%;
  --theme-social-size: 2.57rem;
  width: var(--theme-social-size);
  height: var(--theme-social-size);
}
.social-btn svg,
.social-btn ss,
i.theChampLogin svg,
i.theChampLogin ss {
  width: 100%;
  height: 100%;
}

/* лого бокс */
.logo-box {
  display: block;
  text-decoration: none;
}
.logo-box__logo {
  height: 1.4rem;
  width: min-content;
}
.logo-box__logo svg path {
  fill: var(--color-text-primary);
}
.logo-box__slash {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-accent-blue);
  line-height: 1;
}
.logo-box__subtitle {
  font-weight: 400;
  font-size: 0.71rem;
  color: var(--color-text-secondary);
  line-height: 1;
  margin-top: 0.2rem;
  letter-spacing: -0.04rem;
  display: flex;
  align-items: center;
}

/* Хедер */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--theme-header-height);
  background: var(--color-bg-transparent-black);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: inset 0 var(--theme-header-height-half) var(--theme-header-height-half) var(--color-bg-primary);
}
header button.back {
  position: absolute;
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0 0.75rem 0 0;
  user-select: none;
  left: 1.2rem;
  top: 1.25rem;
  height: 2rem;
  width: max-content;
  z-index: 101;
}
header .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 0.61rem;
  width: 100%;
  z-index: 101;
}
header .base-wrapper {
  position: relative;
}

main {
  --main-side-padding: 0.57rem;
}

.base-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: var(--theme-max-width);
}

/* Категории */
.categories, .search-filters {
  display: flex;
  gap: 0.28rem;
  height: 4.71rem;
  padding: 1.1rem var(--main-side-padding);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories::-webkit-scrollbar, .search-filters::-webkit-scrollbar {
  display: none;
}
.categories a, .search-filters a {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.71rem 0.57rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  background: var(--color-bg-white);
  color: var(--color-text-secondary);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: all 0.2s ease;
  text-decoration: none;
}
.categories a.active, .search-filters a.active {
  color: var(--color-text-primary);
  font-weight: 500;
}
.categories a svg, .search-filters a svg {
  width: 1.14rem;
  height: 1.14rem;
}
.categories .icon-popular, .search-filters .icon-popular {
  stroke: var(--color-icon-stroke-primary);
  stroke-width: 2;
}
.categories .icon-hot, .search-filters .icon-hot,
.categories .icon-fresh,
.search-filters .icon-fresh,
.categories .icon-expert,
.search-filters .icon-expert {
  stroke: var(--color-icon-stroke-secondary);
  stroke-width: 2;
}

main.author .categories, main.author .search-filters {
  display: none;
}

/* Курс валют */
.rates {
  position: relative;
  display: flex;
  justify-content: start;
  padding: 0 var(--main-side-padding);
  font-size: 0.71rem;
  color: var(--color-text-primary);
}
.rates__item {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  min-width: 5rem;
  margin-right: 0.4rem;
}
.rates__item > svg {
  display: none;
}
.rates__item .label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text-secondary);
  line-height: 0.85rem;
}
.rates__item .value {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-secondary);
  letter-spacing: -0.09rem;
}
.rates .icon-up {
  width: 0.75rem;
  height: 0.75rem;
  stroke: var(--color-accent-green);
}
.rates .icon-down {
  width: 0.75rem;
  height: 0.75rem;
  stroke: var(--color-accent-red);
}
.rates__filter {
  position: absolute;
  right: var(--main-side-padding);
  top: 0;
  bottom: 0;
  margin: 0 auto;
  padding-top: 0.2rem;
  text-align: right;
}
.rates__filter button {
  background: none;
  border: none;
  cursor: pointer;
}
.rates__filter button svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: var(--color-text-secondary);
  stroke-width: 2;
}
.rates__filter-desk {
  display: none;
}

/* Блоки с иконкой и свгешкой */
.common-svg-btn-block {
  text-decoration: none;
  color: var(--color-text-primary);
  display: flex;
  width: 100%;
  padding: 0.7rem 0.6rem;
  gap: 0.55rem;
}
.common-svg-btn-block svg {
  width: 1.71rem;
  height: 1.71rem;
  --svg-color: var(--color-text-primary);
}
.common-svg-btn-block svg path {
  transition: 0.2s;
}
.common-svg-btn-block svg path[stroke] {
  stroke: var(--svg-color);
}
.common-svg-btn-block svg path[fill] {
  fill: var(--svg-color);
}
.common-svg-btn-block span {
  font-size: 1.14rem;
  align-self: center;
  transition: 0.2s;
}
.common-svg-btn-block:hover span {
  transform: translateX(0.5rem);
}
.common-svg-btn-block:hover svg {
  --svg-color: var(--color-accent-orange);
}

/* Ссылка узнать подробнее */
.link-more, .profile-info .profile-more {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-accent-blue);
  cursor: pointer;
  display: inline-block;
}

/* Новости дня */
.news {
  background: var(--color-bg-white);
  margin: var(--main-side-padding);
  border-radius: 0.75rem;
  padding: 1rem 1.13rem;
}
.news h2 {
  font-weight: 400;
  font-size: 1.125rem;
  margin: 0 0 0 0;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.06em;
  margin-bottom: 1.1rem;
}
.news h2::before {
  position: relative;
  bottom: 0.1rem;
  content: "—";
  font-weight: 400;
  font-size: 1.02rem;
  margin-right: 0.13rem;
  color: var(--color-accent-blue);
}
.news p {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-primary);
  margin: 0.5rem 0 0.5rem 0;
  white-space: pre-line;
  line-height: 1.45em;
  letter-spacing: -0.067em;
}
.news p a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-accent-blue);
  text-decoration: none;
  cursor: pointer;
}
.news p a:hover {
  text-decoration: underline;
}
.news p.important {
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.13em;
}
.news .link-more, .news .profile-info .profile-more, .profile-info .news .profile-more {
  margin-top: 1.2rem;
  letter-spacing: -0.06em;
}

/* Плашка автора */
.author-info {
  display: grid;
  grid-template-columns: min-content auto;
  gap: 0.28rem 0.57rem;
  --avatar-size: 3.75rem;
  max-height: var(--avatar-size);
}
.author-info.company-review {
  grid-template-columns: max-content max-content;
  line-height: normal;
}
.author-info.company-review > div {
  align-items: center;
}
.author-info .stars ~ .time {
  align-self: center;
}
.author-info .avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}
.author-info .avatar img {
  width: 100%;
  height: 100%;
}
.author-info:has(div:nth-child(3)) .avatar {
  grid-row: 1/3;
}
.author-info:not(:has(div:nth-child(3))) .author-name, .author-info:not(:has(div:nth-child(3))) .comment-area > .comment > .comment-header .author-name, .comment-area > .comment > .comment-header .author-info:not(:has(div:nth-child(3))) .author-name {
  align-self: center;
  margin-top: 0;
}
.author-info .author-name, .author-info .comment-area > .comment > .comment-header .author-name, .comment-area > .comment > .comment-header .author-info .author-name {
  font-weight: bold;
  font-size: 1rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  align-self: end;
  margin-top: 0.4rem;
}
.author-info .verified-badge {
  width: 1.5rem;
  height: 1.5rem;
}
.author-info > div {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
}
.author-info > div .status {
  font-weight: 600;
  color: var(--color-accent-green);
}
.author-info > div .time {
  font-weight: 400;
  color: var(--color-text-secondary);
}
.author-info > div .post-link {
  color: var(--color-text-primary);
  text-decoration: none;
}
.author-info.medium {
  --avatar-size: 3.75rem;
}
.author-info.small {
  gap: 0.15rem 1rem;
  --avatar-size: 3.42rem;
}
.author-info.small > div:nth-child(3) {
  font-size: 0.8125rem;
  align-self: start;
}
.author-info.small .author-name, .author-info.small .comment-area > .comment > .comment-header .author-name, .comment-area > .comment > .comment-header .author-info.small .author-name {
  margin-top: 0;
}

.company-category {
  width: max-content;
}

.avatars-list {
  --avatar-size: 1.5rem;
  display: flex;
  height: var(--avatar-size);
}
.avatars-list img {
  width: var(--avatar-size);
  height: var(--avatar-size);
  object-fit: cover;
  border-radius: 50%;
}
.avatars-list div:not(:last-child) {
  width: calc(var(--avatar-size) / 2);
}

/* Пост */
.post, .comment-area > .comment, .contact-block, .reviews-summary {
  --content-margin: 1rem;
  --header-margin: 0.25rem;
  background: var(--color-bg-white);
  margin: 1rem var(--main-side-padding);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1.25rem;
  max-height: max-content;
  display: grid;
  gap: var(--content-margin);
}
.post .post-footer, .comment-area > .comment .post-footer, .contact-block .post-footer, .reviews-summary .post-footer {
  display: flex;
}
.post .post-rate, .comment-area > .comment .post-rate, .contact-block .post-rate, .reviews-summary .post-rate {
  display: flex;
  justify-content: space-between;
}
.post .post-rate .rating, .comment-area > .comment .post-rate .rating, .contact-block .post-rate .rating, .reviews-summary .post-rate .rating {
  display: flex;
  gap: 0.5rem;
}
.post .post-rate .review-counts, .comment-area > .comment .post-rate .review-counts, .contact-block .post-rate .review-counts, .reviews-summary .post-rate .review-counts {
  display: flex;
  gap: 0.5rem;
  color: var(--color-text-secondary);
}
.post .post-header, .comment-area > .comment .post-header, .contact-block .post-header, .reviews-summary .post-header {
  display: flex;
  align-items: start;
  gap: 1.21rem;
  margin-bottom: var(--content-margin);
  justify-content: space-between;
}
.post .post-header .rank-arrow, .comment-area > .comment .post-header .rank-arrow, .contact-block .post-header .rank-arrow, .reviews-summary .post-header .rank-arrow {
  align-self: center;
}
.post .post-header .menu-btn, .comment-area > .comment .post-header .menu-btn, .contact-block .post-header .menu-btn, .reviews-summary .post-header .menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  margin-left: auto;
}
.post .post-header .menu-btn svg, .comment-area > .comment .post-header .menu-btn svg, .contact-block .post-header .menu-btn svg, .reviews-summary .post-header .menu-btn svg {
  width: 2.15rem;
  height: 2rem;
}
.post .subscribe, .comment-area > .comment .subscribe, .contact-block .subscribe, .reviews-summary .subscribe {
  display: none;
}
.post .post-content, .comment-area > .comment .post-content, .contact-block .post-content, .reviews-summary .post-content {
  padding: 0.05rem 0.15rem;
  color: var(--color-text-primary);
}
.post .post-content img, .comment-area > .comment .post-content img, .contact-block .post-content img, .reviews-summary .post-content img {
  margin-top: var(--content-margin);
  max-width: 100%;
  border-radius: 0.5rem;
  height: 100%;
  max-height: fit-content;
}
.post .post-content h3, .comment-area > .comment .post-content h3, .contact-block .post-content h3, .reviews-summary .post-content h3 {
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 1.71rem;
  color: var(--color-text-primary);
  margin-top: var(--header-margin);
  letter-spacing: -0.06em;
  margin-bottom: var(--content-margin);
}
.post .post-content p, .comment-area > .comment .post-content p, .contact-block .post-content p, .reviews-summary .post-content p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: var(--content-margin);
  line-height: 1.55rem;
  letter-spacing: 0;
}
.post .post-content p a, .comment-area > .comment .post-content p a, .contact-block .post-content p a, .reviews-summary .post-content p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-accent-blue);
  font-weight: 400;
}
.post .post-content p a:hover, .comment-area > .comment .post-content p a:hover, .contact-block .post-content p a:hover, .reviews-summary .post-content p a:hover {
  text-decoration-color: var(--color-accent-blue);
}
.post .post-content div, .comment-area > .comment .post-content div, .contact-block .post-content div, .reviews-summary .post-content div,
.post .post-content blockquote,
.comment-area > .comment .post-content blockquote,
.contact-block .post-content blockquote,
.reviews-summary .post-content blockquote,
.post .post-content h1,
.comment-area > .comment .post-content h1,
.contact-block .post-content h1,
.reviews-summary .post-content h1,
.post .post-content h2,
.comment-area > .comment .post-content h2,
.contact-block .post-content h2,
.reviews-summary .post-content h2,
.post .post-content h3,
.comment-area > .comment .post-content h3,
.contact-block .post-content h3,
.reviews-summary .post-content h3,
.post .post-content h4,
.comment-area > .comment .post-content h4,
.contact-block .post-content h4,
.reviews-summary .post-content h4,
.post .post-content h5,
.comment-area > .comment .post-content h5,
.contact-block .post-content h5,
.reviews-summary .post-content h5,
.post .post-content ul,
.comment-area > .comment .post-content ul,
.contact-block .post-content ul,
.reviews-summary .post-content ul, .post .post-content ol, .comment-area > .comment .post-content ol, .contact-block .post-content ol, .reviews-summary .post-content ol, .post .post-content code, .comment-area > .comment .post-content code, .contact-block .post-content code, .reviews-summary .post-content code {
  margin-bottom: var(--content-margin);
}
.post .post-content a:not(.link-more), .comment-area > .comment .post-content a:not(.link-more), .contact-block .post-content a:not(.link-more), .reviews-summary .post-content a:not(.link-more) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-accent-blue);
  font-weight: 400;
}
.post .post-content a:not(.link-more):hover, .comment-area > .comment .post-content a:not(.link-more):hover, .contact-block .post-content a:not(.link-more):hover, .reviews-summary .post-content a:not(.link-more):hover {
  text-decoration-color: var(--color-accent-blue);
}
.post .post-content .link-more, .comment-area > .comment .post-content .link-more, .contact-block .post-content .link-more, .reviews-summary .post-content .link-more, .post .post-content .profile-info .profile-more, .comment-area > .comment .post-content .profile-info .profile-more, .contact-block .post-content .profile-info .profile-more, .reviews-summary .post-content .profile-info .profile-more, .profile-info .post .post-content .profile-more, .profile-info .comment-area > .comment .post-content .profile-more, .profile-info .contact-block .post-content .profile-more, .profile-info .reviews-summary .post-content .profile-more {
  margin-top: var(--content-margin);
  text-decoration: none;
  background: none;
  border: none;
}
.post .post-content .d-1, .comment-area > .comment .post-content .d-1, .contact-block .post-content .d-1, .reviews-summary .post-content .d-1,
.post .post-content .d-2,
.comment-area > .comment .post-content .d-2,
.contact-block .post-content .d-2,
.reviews-summary .post-content .d-2 {
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.post .post-content .d-1 p, .comment-area > .comment .post-content .d-1 p, .contact-block .post-content .d-1 p, .reviews-summary .post-content .d-1 p,
.post .post-content .d-2 p,
.comment-area > .comment .post-content .d-2 p,
.contact-block .post-content .d-2 p,
.reviews-summary .post-content .d-2 p {
  margin: 0;
}
.post .post-content .d-1, .comment-area > .comment .post-content .d-1, .contact-block .post-content .d-1, .reviews-summary .post-content .d-1 {
  position: relative;
  color: var(--color-text-primary);
}
.post .post-content .d-1:before, .comment-area > .comment .post-content .d-1:before, .contact-block .post-content .d-1:before, .reviews-summary .post-content .d-1:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-blue);
  opacity: 0.1;
  border-radius: 0.5rem;
}
.post .post-content .d-2, .comment-area > .comment .post-content .d-2, .contact-block .post-content .d-2, .reviews-summary .post-content .d-2 {
  background-color: var(--color-bg-transparent-black);
  color: var(--color-text-secondary);
}
.post .post-content blockquote, .comment-area > .comment .post-content blockquote, .contact-block .post-content blockquote, .reviews-summary .post-content blockquote,
.post .post-content .d-3,
.comment-area > .comment .post-content .d-3,
.contact-block .post-content .d-3,
.reviews-summary .post-content .d-3,
.post .post-content code,
.comment-area > .comment .post-content code,
.contact-block .post-content code,
.reviews-summary .post-content code {
  padding: 1rem;
  border-left: 0.15rem solid var(--color-accent-blue);
}
.post .post-content blockquote p, .comment-area > .comment .post-content blockquote p, .contact-block .post-content blockquote p, .reviews-summary .post-content blockquote p,
.post .post-content .d-3 p,
.comment-area > .comment .post-content .d-3 p,
.contact-block .post-content .d-3 p,
.reviews-summary .post-content .d-3 p,
.post .post-content code p,
.comment-area > .comment .post-content code p,
.contact-block .post-content code p,
.reviews-summary .post-content code p {
  margin: 0;
}
.post .post-content blockquote, .comment-area > .comment .post-content blockquote, .contact-block .post-content blockquote, .reviews-summary .post-content blockquote,
.post .post-content code,
.comment-area > .comment .post-content code,
.contact-block .post-content code,
.reviews-summary .post-content code {
  border-radius: 0.5rem;
  position: relative;
  padding-right: 2rem;
}
.post .post-content blockquote:before, .comment-area > .comment .post-content blockquote:before, .contact-block .post-content blockquote:before, .reviews-summary .post-content blockquote:before,
.post .post-content code:before,
.comment-area > .comment .post-content code:before,
.contact-block .post-content code:before,
.reviews-summary .post-content code:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-blue);
  opacity: 0.1;
  border-radius: 0.5rem;
}
.post .post-content table, .comment-area > .comment .post-content table, .contact-block .post-content table, .reviews-summary .post-content table {
  display: grid;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  border: 0.1rem solid var(--color-bg-transparent-black);
  border-radius: 0.5rem;
}
.post .post-content table p, .comment-area > .comment .post-content table p, .contact-block .post-content table p, .reviews-summary .post-content table p {
  margin: 0;
}
.post .post-content table th, .comment-area > .comment .post-content table th, .contact-block .post-content table th, .reviews-summary .post-content table th {
  padding: 0.5rem 1rem;
  user-select: none;
  position: relative;
  background: var(--color-text-secondary);
  color: var(--color-bg-white);
}
.post .post-content table th:not(:first-child), .comment-area > .comment .post-content table th:not(:first-child), .contact-block .post-content table th:not(:first-child), .reviews-summary .post-content table th:not(:first-child) {
  border-left: 0.1rem solid var(--color-bg-white);
}
.post .post-content table td:first-child, .comment-area > .comment .post-content table td:first-child, .contact-block .post-content table td:first-child, .reviews-summary .post-content table td:first-child, .post .post-content table th:first-child, .comment-area > .comment .post-content table th:first-child, .contact-block .post-content table th:first-child, .reviews-summary .post-content table th:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.post .post-content table td:last-child, .comment-area > .comment .post-content table td:last-child, .contact-block .post-content table td:last-child, .reviews-summary .post-content table td:last-child, .post .post-content table th:last-child, .comment-area > .comment .post-content table th:last-child, .contact-block .post-content table th:last-child, .reviews-summary .post-content table th:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.post .post-content table tbody, .comment-area > .comment .post-content table tbody, .contact-block .post-content table tbody, .reviews-summary .post-content table tbody {
  display: table;
  min-width: 100%;
}
.post .post-content table tbody tr:nth-child(odd), .comment-area > .comment .post-content table tbody tr:nth-child(odd), .contact-block .post-content table tbody tr:nth-child(odd), .reviews-summary .post-content table tbody tr:nth-child(odd) {
  background-color: var(--color-bg-primary); /* светлый фон для нечётных строк */
}
.post .post-content table tbody td, .comment-area > .comment .post-content table tbody td, .contact-block .post-content table tbody td, .reviews-summary .post-content table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem;
}
.post .post-content table tbody td:not(:first-child), .comment-area > .comment .post-content table tbody td:not(:first-child), .contact-block .post-content table tbody td:not(:first-child), .reviews-summary .post-content table tbody td:not(:first-child) {
  border-left: 0.1rem solid var(--color-bg-transparent-black);
}
.post .post-content table th.resizable, .comment-area > .comment .post-content table th.resizable, .contact-block .post-content table th.resizable, .reviews-summary .post-content table th.resizable {
  cursor: col-resize;
}
.post .post-content table th.resizable::after, .comment-area > .comment .post-content table th.resizable::after, .contact-block .post-content table th.resizable::after, .reviews-summary .post-content table th.resizable::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: transparent;
  transition: background-color 0.3s;
}
.post .post-content ul, .comment-area > .comment .post-content ul, .contact-block .post-content ul, .reviews-summary .post-content ul, .post .post-content ol, .comment-area > .comment .post-content ol, .contact-block .post-content ol, .reviews-summary .post-content ol {
  padding-left: 1rem;
  padding-inline-start: 1rem;
  font-size: 1rem;
  color: var(--color-text-secondary);
  display: grid;
  gap: 0.25rem;
}
.post .post-content code, .comment-area > .comment .post-content code, .contact-block .post-content code, .reviews-summary .post-content code {
  display: grid;
  position: relative;
  width: 90%;
  padding-right: 3rem;
}
.post .post-content code .copy-btn, .comment-area > .comment .post-content code .copy-btn, .contact-block .post-content code .copy-btn, .reviews-summary .post-content code .copy-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  border: none;
  background: none;
}
.post .post-content code .copy-btn svg, .comment-area > .comment .post-content code .copy-btn svg, .contact-block .post-content code .copy-btn svg, .reviews-summary .post-content code .copy-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.post .post-content blockquote:after, .comment-area > .comment .post-content blockquote:after, .contact-block .post-content blockquote:after, .reviews-summary .post-content blockquote:after {
  font-family: Arial;
  content: "”";
  color: var(--color-accent-blue);
  font-size: 3rem;
  line-height: 1.5rem;
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  pointer-events: none;
}
.post .company-link, .comment-area > .comment .company-link, .contact-block .company-link, .reviews-summary .company-link {
  display: flex;
  align-self: center;
  margin-left: auto;
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
}
.post .company-link svg, .comment-area > .comment .company-link svg, .contact-block .company-link svg, .reviews-summary .company-link svg {
  transform: rotate(-90deg);
  width: 1em;
  height: 1em;
}
.post .company-link svg path, .comment-area > .comment .company-link svg path, .contact-block .company-link svg path, .reviews-summary .company-link svg path {
  color: var(--color-accent-blue);
}
.post p.company-description, .comment-area > .comment p.company-description, .contact-block p.company-description, .reviews-summary p.company-description {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}
.post.company .post-comments, .comment-area > .company.comment .post-comments, .company.contact-block .post-comments, .company.reviews-summary .post-comments {
  color: var(--color-text-primary);
}
.post.company .comment, .comment-area > .company.comment .comment, .company.contact-block .comment, .company.reviews-summary .comment {
  padding: 0;
}
.post.company .comment .author-info, .comment-area > .company.comment .comment .author-info, .company.contact-block .comment .author-info, .company.reviews-summary .comment .author-info {
  --avatar-size: 2rem;
}

.company-region {
  display: flex;
  color: var(--color-accent-blue);
  align-items: center;
  gap: 0.3em;
  text-decoration: none;
  line-height: normal;
}
.company-region svg {
  height: 1.5em;
  width: 1.5em;
}
.company-region svg path {
  stroke: var(--color-accent-blue);
}

.rank-arrow {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  height: 1.5rem;
  font-size: 1.21rem;
}
.rank-arrow svg {
  height: 1.21rem;
  width: 1.21rem;
}
.rank-arrow span {
  line-height: normal;
}

/* after/before opacity bg */
.after-bg, .reviews-summary__center .reviews-filter .btn.active:before, .reviews-summary__center .reviews-filter .search-filters .search-form input.active[type=search]:before, .search-filters .search-form .reviews-summary__center .reviews-filter input.active[type=search]:before, .reviews-summary__center .reviews-filter .btn:hover:before, .reviews-summary__center .reviews-filter .search-filters .search-form input[type=search]:hover:before, .search-filters .search-form .reviews-summary__center .reviews-filter input[type=search]:hover:before, .profile-info .profile-rate__label:before, .profile-info .profile-rate__mobile-buttons button:before, .btn.opacity-bg:before, .search-filters .search-form input.opacity-bg[type=search]:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background: var(--color-accent-blue);
  opacity: 0.1;
  pointer-events: none;
}

/* Bottom block */
.bottom-block {
  display: grid;
  align-items: center;
  justify-items: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: var(--theme-header-height);
  background: var(--color-bg-transparent-black);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 100;
}

/* Bottom nav */
nav.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
nav.bottom-nav label,
nav.bottom-nav button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  font-size: 1.5rem;
  user-select: none;
  transition: color 0.2s ease;
}
nav.bottom-nav label.active, nav.bottom-nav label:hover,
nav.bottom-nav button.active,
nav.bottom-nav button:hover {
  color: var(--color-accent-blue);
}
nav.bottom-nav label svg,
nav.bottom-nav label img,
nav.bottom-nav button svg,
nav.bottom-nav button img {
  width: 1.71rem;
  height: 1.71rem;
}
nav.bottom-nav label img,
nav.bottom-nav button img {
  border: 1px dashed var(--color-accent-blue);
  border-radius: 50%;
  transform: scale(1.5) translateY(0.1rem);
}

/* Плавающая кнопка */
.fab {
  position: fixed;
  bottom: 5.52rem;
  right: 1.82rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--color-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-inverse);
  font-size: 1.75rem;
  cursor: pointer;
  user-select: none;
  border: none;
}
.fab svg {
  width: 1.5rem;
  height: 1.5rem;
}
.fab svg path {
  stroke: var(--color-bg-white);
  stroke-width: 2;
}

/* profile */
.profile-header {
  position: relative;
  margin-bottom: 1rem;
  padding: 1rem var(--main-side-padding);
  z-index: 10;
  border-radius: 1rem 1rem 0 0;
}
.profile-header .profile-banner {
  width: 100%;
  height: 12.7rem;
  object-fit: cover;
  background: linear-gradient(90deg, #00a8f3 0%, #7b00f3 100%);
  border-radius: 1rem 1rem 0 0;
}
.profile-header .profile-avatar {
  position: absolute;
  bottom: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 9.1rem;
  height: 9.1rem;
  object-fit: cover;
  background: var(--color-bg-white);
}
.profile-header .profile-banner-upload {
  position: absolute;
  right: 2.25rem;
  top: 2.25rem;
  width: 1.75rem;
  height: 1.75rem;
}

.profile-info {
  text-align: left;
  padding: 0.4rem var(--main-side-padding);
  min-height: 20rem;
}
.profile-info .profile-buttons {
  display: none;
}
.profile-info .profile-name {
  font-weight: 700;
  font-size: 1.42rem;
  letter-spacing: -0.11rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
}
.profile-info .profile-username {
  display: none;
}
.profile-info .profile-role-city {
  display: flex;
  align-items: center;
  --role-gap: 0.65rem;
  gap: var(--role-gap);
  justify-content: center;
  letter-spacing: -0.08rem;
}
.profile-info .profile-role-city .profile-role {
  font-weight: 400;
}
.profile-info .profile-role-city .profile-role:after {
  content: "/";
  color: var(--color-accent-blue);
  margin-left: var(--role-gap);
}
.profile-info .profile-role-city .profile-city {
  color: var(--color-text-secondary);
  letter-spacing: -0.08rem;
  font-size: 1rem;
  white-space: nowrap;
}
.profile-info .profile-role-city .profile-city:before {
  display: inline-block;
  content: url("/assets/img/flag_ru.png");
  width: 1.35rem;
  height: 100%;
}
.profile-info .profile-description {
  font-size: 0.95rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: 0.35rem;
}
.profile-info .profile-more {
  color: var(--color-text-secondary);
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.profile-info .profile-rate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-right: 6rem;
  position: relative;
}
.profile-info .profile-rate__mobile-buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 100%;
  gap: 0.5rem;
}
.profile-info .profile-rate__mobile-buttons button {
  position: relative;
  height: min-content;
  width: min-content;
  border: none;
  padding: 0.2rem;
  border-radius: 0.5rem;
  background: 0;
}
.profile-info .profile-rate__mobile-buttons button path {
  stroke: var(--color-accent-blue);
}
.profile-info .profile-rate__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-weight: 500;
  font-size: 1.14rem;
  color: var(--color-text-primary);
  padding: 0.5rem;
  width: max-content;
}
.profile-info .profile-rate__label span, .profile-info .profile-rate__label svg {
  position: relative;
}
.profile-info .profile-rate__label svg {
  width: 1.1rem;
  height: 1.1rem;
}
.profile-info .profile-rate__label span {
  line-height: 1.1rem;
  letter-spacing: -0.1rem;
}
.profile-info .profile-rate__label:has(.profile-rate__info) {
  padding-right: 2.5rem;
}
.profile-info .profile-rate__info {
  position: absolute;
  right: 0.5rem;
}
.profile-info .profile-rate__info path {
  stroke: var(--color-text-secondary);
}
.profile-info .profile-rate__info svg {
  width: 1rem;
  height: 1rem;
}
.profile-info .profile-rate__score {
  width: 100%;
}
.profile-info .profile-rate__score:before {
  background: var(--color-accent-lime);
}
.profile-info .profile-rate__score__growth {
  color: var(--color-accent-lime);
  font-weight: 400;
  font-size: 0.75rem;
  user-select: none;
  margin-left: 0.7rem;
  letter-spacing: -0.03rem !important;
}
.profile-info .profile-rate__rank:before {
  background: #F5624B;
}
.profile-info .profile-rate__rating:before {
  background: #FFC402;
}
.profile-info .profile-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  padding-top: 1.53rem;
  padding-bottom: var(--main-side-padding);
}
.profile-info .profile-stats__comments {
  display: none;
}
.profile-info .profile-stats .number {
  font-size: 1.14rem;
  margin-bottom: 0.2rem;
}

.stars {
  font-size: 1.25rem;
  color: #FBBF24;
  letter-spacing: -0.17rem;
  user-select: none;
  min-width: max-content;
  display: grid;
  align-items: center;
  --opacity-no-star: 0.25;
  --star-size: 1.25rem;
  height: var(--star-size);
}
.stars svg {
  height: var(--star-size);
}
.stars.r4 path:nth-child(n+5) {
  opacity: var(--opacity-no-star);
}
.stars.r3 path:nth-child(n+4) {
  opacity: var(--opacity-no-star);
}
.stars.r2 path:nth-child(n+3) {
  opacity: var(--opacity-no-star);
}
.stars.r1 path:nth-child(n+2) {
  opacity: var(--opacity-no-star);
}

.reviews-summary {
  display: grid;
  grid-template-columns: min-content auto;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-bottom: 5rem;
}
.reviews-summary .review-btn {
  position: absolute;
  right: 1rem;
  left: 1rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  border: none;
  gap: 0.2rem;
  background: none;
  color: var(--color-accent-blue);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  justify-content: center;
}
.reviews-summary .review-btn:before {
  content: " ";
  border-radius: 0.5rem;
  pointer-events: none;
  background: var(--color-accent-blue);
  opacity: 0.1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.reviews-summary .review-btn svg path {
  stroke: var(--color-accent-blue);
  width: 1rem;
  height: 1rem;
}
.reviews-summary .review-btn:hover {
  background: var(--color-accent-blue);
  color: var(--color-bg-white);
}
.reviews-summary .review-btn:hover svg path {
  stroke: var(--color-bg-white);
}
.reviews-summary__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.reviews-summary__rating {
  gap: 0 0.5rem;
  display: grid;
  grid-auto-flow: column;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
}
.reviews-summary__rating__score {
  font-size: 3rem;
  font-weight: 600;
  color: #0F172A;
  grid-row: 1/3;
  line-height: normal;
  letter-spacing: -0.25rem;
}
.reviews-summary__rating__count {
  font-size: 0.875rem;
  color: #94A3B8;
  align-self: end;
}
.reviews-summary .rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 11.7rem;
  padding-left: 0.5rem;
}
.reviews-summary .rating-bars .rating-bar {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.reviews-summary .rating-bars .rating-bar .bar-label {
  width: 1rem;
  font-size: 0.875rem;
  user-select: none;
}
.reviews-summary .rating-bars .rating-bar .bar-fill {
  --bar-height: 0.5rem;
  flex-grow: 1;
  height: var(--bar-height);
  background: #F1F5F9;
  border-radius: 0.25rem;
  position: relative;
}
.reviews-summary .rating-bars .rating-bar .bar-fill::after {
  content: "";
  display: block;
  height: var(--bar-height);
  width: calc(var(--fill) * 5%);
  max-width: 100%;
  background: #FBBF24;
  border-radius: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
}
.reviews-summary .rating-bars .rating-bar .bar-count {
  width: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-align: center;
  user-select: none;
}
.reviews-summary__center {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: end;
  padding-bottom: 0.25rem;
}
.reviews-summary__center .reviews-filter {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: end;
}
.reviews-summary__center .reviews-filter .btn, .reviews-summary__center .reviews-filter .search-filters .search-form input[type=search], .search-filters .search-form .reviews-summary__center .reviews-filter input[type=search] {
  border-radius: 0.5rem;
  --btn-color-bg: var(--color-accent-blue);
  --btn-color-text: var(--color-text-secondary);
}
.reviews-summary__center .reviews-filter .btn.active, .reviews-summary__center .reviews-filter .search-filters .search-form input.active[type=search], .search-filters .search-form .reviews-summary__center .reviews-filter input.active[type=search] {
  --btn-color-text: var(--color-bg-white);
}
.reviews-summary__center .reviews-filter .btn.active, .reviews-summary__center .reviews-filter .search-filters .search-form input.active[type=search], .search-filters .search-form .reviews-summary__center .reviews-filter input.active[type=search], .reviews-summary__center .reviews-filter .btn:hover, .reviews-summary__center .reviews-filter .search-filters .search-form input[type=search]:hover, .search-filters .search-form .reviews-summary__center .reviews-filter input[type=search]:hover {
  position: relative;
}
.reviews-summary__right {
  display: flex;
  align-items: end;
  align-self: end;
  justify-content: flex-end;
  gap: 1rem;
  grid-column: 1/3;
}
.reviews-summary__right .review-photos {
  display: flex;
  justify-content: end;
  gap: 0.5rem 0.3rem;
  flex-wrap: wrap;
  min-width: 17rem;
  padding-bottom: 0.25rem;
  padding-right: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
}
.reviews-summary__right .review-photos img {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 0.5rem;
  object-fit: cover;
  cursor: pointer;
}
.reviews-summary__right .review-photos .photos-label {
  font-size: 0.75rem;
  width: 100%;
  color: var(--color-text-secondary);
  user-select: none;
  white-space: nowrap;
  order: 2;
}

.contact-block {
  display: flex;
}
.contact-block .column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.contact-block .item {
  display: flex;
  flex-direction: column;
}
.contact-block .item .label {
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
  font-weight: 500;
}
.contact-block .item .value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-block .item .value a {
  color: var(--color-accent-blue);
  text-decoration: none;
  cursor: pointer;
}
.contact-block .item .value a:hover {
  text-decoration: underline;
}
.contact-block .item .value .icon {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-block .item .value .icon.copy {
  background-image: url("/assets/svg/copy-btn.svg");
  transform: rotateY(180deg);
}
.contact-block .item .value .icon.eye {
  background-image: url("/assets/svg/eye-2.svg");
}

.comment-area {
  --content-margin: 1rem;
}
.comment-area > .comment > .comment-header .author-info {
  --avatar-size: 3rem;
}
.comment-area > .comment .comment-header {
  margin-bottom: var(--content-margin);
}

.reviews-list > .comment {
  --content-margin: 0.5rem;
}

.profile-tabs {
  max-width: 100vw;
}
.profile-tabs__tablist {
  display: flex;
  gap: 0rem;
  margin-bottom: 0.3rem;
  border-radius: 0 0 1rem 1rem;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.profile-tabs__tablist button {
  background: none;
  border: none;
  font-weight: 500;
  font-size: 1.14rem;
  padding: 0.5rem 0.7rem;
  padding-bottom: 0.9rem;
  letter-spacing: -0.05rem;
  cursor: pointer;
  color: var(--color-text-secondary);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.profile-tabs__tablist button.active, .profile-tabs__tablist button:focus {
  color: var(--color-text-primary);
  border-color: var(--color-accent-blue);
  outline: none;
}
.profile-tabs__tablist button:hover:not(.active) {
  color: var(--color-accent-blue);
}

/* попап */
.popup-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  padding-bottom: var(--theme-header-height);
  background: var(--color-bg-primary);
  height: 42.685rem;
  border-radius: 1.5rem;
  transition: 0.5s;
  z-index: 98;
}
.popup-overlay .popup-close {
  background: none;
  border: none;
  padding: none;
  margin: none;
  position: absolute;
  right: 1.69rem;
  top: 1.45rem;
  z-index: 2;
}
.popup-overlay .popup-close svg {
  width: 1.75rem;
  height: 1.75rem;
}

.popup-trigger {
  display: none;
}
.popup-trigger:checked + .popup-overlay {
  bottom: 0;
}

form input,
form button.btn {
  border: none;
  padding: 1.15rem;
  width: 100%;
  border-radius: 1rem;
  font-size: 1.14rem;
}

.popup {
  position: relative;
  height: 100%;
  --theme-popup-padding: 1.7rem;
  --theme-popup-padding-r: -1.7rem;
  padding: var(--theme-popup-padding);
}
.popup .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 0.61rem;
  width: 100%;
  max-width: 100vw;
  margin-top: 4.68rem;
  padding-bottom: 6.14rem;
}
.popup .popup-setting-log-out {
  position: absolute;
  bottom: 0;
}
.popup .popup-form {
  display: grid;
  gap: 0.57rem;
}
.popup .popup-form input {
  text-align: center;
}
.popup .edit-profile-link {
  margin-top: 1rem;
}
.popup .edit-profile-link a {
  text-decoration: none;
  color: var(--color-text-primary);
}
.popup .popup-setting-list {
  height: 100%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding-bottom: var(--theme-header-height);
}
.popup .popup-setting-list .common-svg-btn-block {
  position: relative;
  bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
}
.popup .popup-social-text {
  margin-top: 2rem;
  font-size: 0.857rem;
  text-align: center;
}
.popup .popup-register {
  position: absolute;
  bottom: 1.5em;
  text-align: center;
  width: 100%;
  margin-left: var(--theme-popup-padding-r);
  color: var(--color-text-secondary);
}
.popup .popup-register .register-link {
  color: var(--color-text-primary);
  text-decoration: none;
}
.popup .popup-social-icons {
  display: flex;
  justify-content: center;
  padding-top: 0.48rem;
  gap: 0.47rem;
}

/* Настройки */
/* Обертка для блока настроек, чтобы добавить внутренние отступы */
.settings-wrapper {
  padding: 0.4rem var(--main-side-padding);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Общие стили секций настроек */
.settings-section {
  background: var(--color-bg-white);
  border-radius: 1rem;
  padding: 1.5rem 1.3rem 2rem;
  margin-bottom: 2rem;
  /* Контейнер для строки с почтой и паролем */
  /* Связанные аккаунты */
  /* Нижние кнопки */
}
.settings-section form {
  display: flex;
  flex-direction: column;
  /* Кнопки */
  /* fieldset для чекбоксов в уведомлениях */
}
.settings-section form label {
  font-weight: 500;
  font-size: 1.14rem;
  color: var(--color-text-primary);
  margin-bottom: 0.55rem;
  user-select: none;
}
.settings-section form input[type=text],
.settings-section form input[type=email],
.settings-section form input[type=password],
.settings-section form select,
.settings-section form textarea,
.settings-section form .readonly-field {
  font-size: 1rem;
  padding: 1.11rem 1.14rem;
  border-radius: 0.28rem;
  border: none;
  background: var(--color-bg-transparent-black);
  color: var(--color-text-primary);
  margin-bottom: 1.14rem;
  transition: border-color 0.3s ease;
}
.settings-section form input[type=text]:focus,
.settings-section form input[type=email]:focus,
.settings-section form input[type=password]:focus,
.settings-section form select:focus,
.settings-section form textarea:focus,
.settings-section form .readonly-field:focus {
  outline: none;
  border-color: var(--color-accent-blue);
}
.settings-section form textarea {
  min-height: 5rem;
  resize: vertical;
}
.settings-section form .btn, .settings-section form .search-filters .search-form input[type=search], .search-filters .search-form .settings-section form input[type=search] {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}
.settings-section form .btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-accent-blue);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 0.25rem;
}
.settings-section form .btn-link.logout {
  color: var(--color-text-secondary);
}
.settings-section form .btn-link.delete-account {
  color: var(--color-accent-red);
}
.settings-section form .btn-link:hover, .settings-section form .btn-link:focus {
  opacity: 0.8;
  outline: none;
}
.settings-section form fieldset {
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
}
.settings-section form fieldset legend {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}
.settings-section form fieldset label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  color: var(--color-text-primary);
}
.settings-section form fieldset label input[type=checkbox] {
  margin-right: 0.75rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.settings-section h2 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}
.settings-section .settings-item {
  margin-bottom: 1.5rem;
}
.settings-section .settings-item label {
  display: block;
  font-weight: 500;
  font-size: 1.14rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  user-select: none;
}
.settings-section .settings-item .readonly-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  padding: 1.11rem 1.14rem;
  border-radius: 0.28rem;
  border: none;
  background: var(--color-bg-transparent-black);
  color: var(--color-text-primary);
  margin-bottom: 1.14rem;
  transition: border-color 0.3s ease;
  user-select: none;
}
.settings-section .settings-item .readonly-field .field-action {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.settings-section .settings-item .readonly-field .field-action:hover, .settings-section .settings-item .readonly-field .field-action:focus {
  color: var(--color-text-primary);
  outline: none;
}
.settings-section .linked-accounts {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}
.settings-section .linked-accounts .social-btn {
  background: var(--color-bg-transparent-black);
}
.settings-section .settings-footer {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  bottom: var(--theme-header-height);
}
.settings-section .settings-footer button.logout-btn {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  text-align: left;
  padding: 0;
  user-select: none;
}
.settings-section .settings-footer button.logout-btn:hover, .settings-section .settings-footer button.logout-btn:focus {
  text-decoration: underline;
  outline: none;
}
.settings-section .settings-footer button.delete-btn {
  background: none;
  border: none;
  color: var(--color-accent-red);
  font-size: 0.875rem;
  cursor: pointer;
  text-align: left;
  padding: 0;
  user-select: none;
}
.settings-section .settings-footer button.delete-btn:hover, .settings-section .settings-footer button.delete-btn:focus {
  text-decoration: underline;
  outline: none;
}

/* Меню настроек */
.settings-menu {
  background: var(--color-bg-white);
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  margin-bottom: 2rem;
}
.settings-menu h1 {
  text-align: center;
  font-weight: 600;
  font-size: 1.14rem;
  margin-bottom: 0.7rem;
  color: var(--color-text-primary);
}
.settings-menu .settings-form button[type=submit] {
  padding: 1.2rem 1rem;
  position: fixed;
  width: 22.57rem;
  margin-bottom: 0.85rem;
  left: var(--theme-popup-padding);
  right: var(--theme-popup-padding);
  bottom: var(--theme-header-height);
}
.settings-menu .settings-nav {
  display: flex;
  flex-direction: column;
  gap: 1.71rem;
}
.settings-menu .settings-nav a.settings-nav__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.55rem;
  border-radius: 0.75rem;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.settings-menu .settings-nav a.settings-nav__item:nth-child(1) {
  background: var(--color-bg-transparent-black);
  padding: 1.14rem 1.55rem;
}
.settings-menu .settings-nav a.settings-nav__item svg {
  flex-shrink: 0;
  width: 1.71rem;
  height: 1.71rem;
}
.settings-menu .settings-nav__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  letter-spacing: -0.07rem;
}
.settings-menu .settings-nav__title {
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.settings-menu .settings-nav__desc {
  color: var(--color-text-secondary);
  line-height: 1.2;
}

.notification-group {
  display: grid;
  margin-top: 2rem;
}
.notification-group h2 {
  text-align: left;
  font-size: 1.14rem;
  margin-bottom: 1.05rem;
}
.notification-group label {
  font-size: 1.14rem;
  margin-bottom: 1.25rem;
}
.notification-group label:nth-last-child(1) {
  margin-bottom: 0.2rem;
}

/* Аватар загрузка */
.avatar-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.avatar-upload .avatar-placeholder {
  width: 9.14rem;
  height: 9.14rem;
  border-radius: 50%;
  background: var(--color-bg-transparent-black);
  display: grid;
  justify-items: center;
  align-items: center;
}
.avatar-upload .avatar-placeholder svg {
  height: 4.5rem;
  width: 4.5rem;
}
.avatar-upload > button.btn {
  font-size: 1rem;
  width: auto;
  align-self: center;
}

/* Темы в ленте */
.setting-topics-list {
  background: var(--color-bg-transparent-black);
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  width: 100%;
}
.setting-topics-list__tag {
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: default;
  white-space: nowrap;
}
.setting-topics-list__tag:nth-child(1) {
  background: #F5E6F0;
  color: #7B4F7D;
}
.setting-topics-list__tag:nth-child(2) {
  background: #DCE3F2;
  color: #4A5B8A;
}
.setting-topics-list__add-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: color 0.3s ease;
}
.setting-topics-list__add-btn:hover, .setting-topics-list__add-btn:focus {
  color: var(--color-accent-blue);
  outline: none;
}

.sidebar-left .topics {
  display: none;
}

.sidebar-right {
  display: none;
}

/* Социальные иконки */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.social-icons img {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  filter: grayscale(0.7);
  transition: filter 0.3s ease;
}
.social-icons img:hover, .social-icons img:focus {
  filter: none;
  outline: none;
}

/* Сверка */
img.sverka {
  position: absolute;
  z-index: 9999;
  bottom: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0.55;
  filter: contrast(1);
  display: none;
}

footer .login,
footer .profile {
  display: none;
}

.post-summary {
  display: flex;
  align-items: center;
  gap: var(--content-margin);
  flex-wrap: wrap;
}
.post-summary__important {
  display: flex;
  width: 100%;
  gap: var(--content-margin);
}
.post-summary__important svg {
  width: 1.3rem;
  height: 1.3rem;
}
.post-summary__important svg path {
  stroke: var(--color-text-secondary);
}
.post-summary .rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.post-summary .rating .btn-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-accent-blue);
  padding: 0;
  user-select: none;
  opacity: 0.5;
}
.post-summary .rating .btn-arrow path {
  fill: var(--color-accent-blue);
  stroke: var(--color-accent-blue);
}
.post-summary .rating .btn-arrow.down {
  transform: rotate(180deg);
}
.post-summary .rating .btn-arrow:hover {
  opacity: 1;
}
.post-summary .rating .rating-count {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  min-width: 2rem;
  text-align: center;
}
.post-summary .btn-reactions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
}
.post-summary .btn-reactions .count {
  font-weight: 700;
  color: var(--color-text-secondary);
}
.post-summary .btn-reactions:hover {
  color: #2563eb;
}
.post-summary .reactions-emojis {
  display: flex;
  gap: 0.5rem;
}
.post-summary .views-count {
  margin-left: auto;
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  user-select: none;
}
.post-summary .views-count path {
  stroke: var(--color-text-secondary);
}

.post-tags {
  display: flex;
  gap: var(--content-margin);
}
.post-tags a {
  color: var(--color-accent-blue);
  text-decoration: none;
}

.emoji-btn {
  background: var(--color-bg-transparent-black);
  border: none;
  border-radius: 2rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.87rem;
  cursor: pointer;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.emoji-btn:hover {
  background: var(--color-bg-primary);
}

.comment-input {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-radius: 0.5rem;
}
.comment-input input[type=text] {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  color: #374151;
  outline: none;
  padding: 1rem 0.5rem;
}
.comment-input input[type=text]::placeholder {
  color: #9ca3af;
}
.comment-input button {
  width: min-content;
  padding: 1rem;
}
.comment-input .attach-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
}
.comment-input .attach-btn:hover {
  color: #2563eb;
}
.comment-input .send-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #2563eb;
  cursor: pointer;
  user-select: none;
}
.comment-input .send-btn:hover {
  color: #1e40af;
}

.comment-actions {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.5rem;
  font-size: 1rem;
  color: #2563eb;
}
.comment-actions .reply-count,
.comment-actions .btn-reply,
.comment-actions .btn-more {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  padding: 0;
  user-select: none;
}
.comment-actions .reply-count:hover,
.comment-actions .btn-reply:hover,
.comment-actions .btn-more:hover {
  text-decoration: underline;
}
.comment-actions .reply-count {
  color: var(--color-accent-blue);
}
.comment-actions .btn-more {
  font-weight: bold;
  font-size: 1.75rem;
  position: relative;
  color: var(--color-text-secondary);
  bottom: 0.35rem;
}

.comment-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.comment-connections path {
  stroke: var(--color-accent-blue);
}

.comment {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
}
.comment .replies {
  padding-left: 1.5rem;
}
.comment.nested-reply {
  margin-left: 3rem;
  border-left-color: #a5b4fc;
}
.comment .comment-text {
  margin-bottom: 0.5rem;
}
.comment .comment-header .author-info {
  --avatar-size: 2.75rem;
}
.comment .comment-header .author-info .time {
  font-size: 0.75rem;
}
.comment .comment-header .author-name, .comment-area > .comment > .comment-header .comment-header .author-name {
  font-size: 0.82rem;
}
.comment .comment-reactions {
  display: flex;
  gap: 0.5rem;
}
.comment .comment-reactions .emoji-btn {
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
}

.post-comments {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.post-comments .btn-show-more {
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: #2563eb;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
}
.post-comments .btn-show-more:hover {
  text-decoration: underline;
}

.rate-page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rate-page-header h1 {
  margin-right: auto;
  font-size: 1.21rem;
  font-weight: normal;
}
.rate-page-header > div {
  color: var(--color-text-secondary);
  justify-self: end;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.rate-page-header > div svg {
  width: 1em;
  height: 1em;
}
.rate-page-header > div svg path {
  stroke: var(--color-text-secondary);
}

.search-filters {
  display: grid;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  gap: 0.5rem;
}
.search-filters .search-form {
  position: relative;
}
.search-filters .search-form input[type=search] {
  --btn-color-bg: var(--color-bg-white);
  --btn-color-text: var(--color-text-primary);
  --btn-hover-color-bg: var(--color-bg-white);
  --btn-hover-color-text: var(--color-text-primary);
  padding: 0.75rem 1rem;
}
.search-filters .search-form input[type=search]::placeholder {
  color: var(--color-text-secondary);
}
.search-filters .search-form input[type=search]:focus {
  outline: none;
}
.search-filters .search-form button {
  position: absolute;
  right: 1rem;
  width: max-content;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 0.5rem;
}
.search-filters .search-form button svg {
  width: 100%;
  height: 100%;
}
.search-filters .search-form button:hover, .search-filters .search-form button:focus {
  color: #2563eb;
}
.search-filters .company-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.search-filters .company-filters::-webkit-scrollbar {
  display: none;
}
.search-filters .company-filters .btn, .search-filters .company-filters .search-form input[type=search], .search-filters .search-form .company-filters input[type=search] {
  flex: 0 0 auto;
  padding: 1rem;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.search-filters .company-filters .btn.active, .search-filters .company-filters .search-form input.active[type=search], .search-filters .search-form .company-filters input.active[type=search], .search-filters .company-filters .btn[aria-pressed=true], .search-filters .company-filters .search-form input[aria-pressed=true][type=search], .search-filters .search-form .company-filters input[aria-pressed=true][type=search] {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
  button {
    letter-spacing: -0.021em;
    padding: 0;
  }
  body {
    padding-bottom: 0;
    background: var(--color-bg-primary);
    --theme-max-width: 1440px;
    --theme-max-width-half: 720px;
    --theme-side-width: 288px;
    --theme-side-min-width: 144px;
    --theme-desctop-side-padding: 70px;
    --theme-header-height: 3.74rem;
    --theme-header-height-half: 1.87rem;
  }
  main {
    margin: 0 auto;
    display: grid;
    grid-template-columns: var(--theme-side-width) auto var(--theme-side-width);
    grid-template-rows: auto 1fr auto;
    gap: 0rem;
    min-height: 100vh;
    padding: 0 var(--theme-desctop-side-padding);
  }
  .emoji-btn {
    padding: 0.62rem 0.86rem;
  }
  .comment .comment-reactions .emoji-btn {
    padding: 0.5rem 0.8rem;
  }
  .comment .comment-header .author-info {
    --avatar-size: 2.3rem;
  }
  .comment .comment-header .author-info .time {
    font-size: 0.75rem;
  }
  .comment .comment-header .author-name, .comment-area > .comment > .comment-header .comment-header .author-name {
    font-size: 0.82rem;
  }
  .reviews-summary {
    grid-template-columns: min-content auto 33%;
    padding-bottom: 1rem;
  }
  .reviews-summary .review-btn {
    top: 1.5rem;
    right: 1.5rem;
    bottom: auto;
    left: auto;
  }
  .reviews-summary__right {
    grid-column: auto;
    width: auto;
  }
  .reviews-summary__right .review-photos .photos-label {
    order: unset;
    text-align: end;
  }
  .reviews-summary__right .review-photos img:nth-child(3n) {
    display: none;
  }
  .reviews-summary__center .reviews-filter {
    justify-content: normal;
  }
  .reviews-summary__center .reviews-filter .btn, .reviews-summary__center .reviews-filter .search-filters .search-form input[type=search], .search-filters .search-form .reviews-summary__center .reviews-filter input[type=search] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  .reviews-summary__center .reviews-filter .btn.active, .reviews-summary__center .reviews-filter .search-filters .search-form input.active[type=search], .search-filters .search-form .reviews-summary__center .reviews-filter input.active[type=search] {
    margin-right: 30%;
  }
  .search-filters {
    gap: 1rem;
  }
  .search-filters .search-form input[type=search] {
    padding: 1rem !important;
  }
  header {
    background: var(--color-bg-primary);
  }
  header:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-bg-transparent-black);
  }
  header .base-wrapper {
    padding: 0 var(--theme-desctop-side-padding);
    justify-content: start;
  }
  header .logo-box {
    width: max-content;
    flex-grow: 0;
    padding-left: 0.82rem;
    margin-top: 0;
    gap: 0.5rem;
  }
  header .logo-box__logo {
    height: 1.25rem;
  }
  header .logo-box__slash {
    font-size: 1.35rem;
  }
  header .logo-box__subtitle {
    font-size: 0.625rem;
  }
  header button.back {
    left: 24.37rem;
    top: 0;
    margin: auto 0;
    bottom: 0;
  }
  main {
    --main-side-padding: 2rem;
  }
  /* Центр — основной контент */
  .main {
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
  }
  footer {
    display: flex;
    align-items: center;
    justify-content: start;
    position: fixed;
    height: var(--theme-header-height);
    top: 0;
    left: 50%;
    right: 0;
    bottom: auto;
    z-index: 99;
  }
  footer .bottom-block {
    top: 0;
    position: relative;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: max-content;
    left: 0.5rem;
    right: auto;
  }
  footer .bottom-block .bottom-nav {
    gap: 1rem;
  }
  footer .base-wrapper {
    justify-content: end;
    padding: 0;
    padding-right: var(--theme-desctop-side-padding);
    max-width: var(--theme-max-width-half);
    gap: 0.75rem;
  }
  footer .fab {
    position: static;
  }
  footer .fab svg {
    margin-right: 0.5rem;
  }
  footer .fab svg path {
    stroke: var(--color-accent-orange);
    stroke-width: 2;
  }
  footer .fab:after {
    content: "Написать";
  }
  footer .bottom-nav__hide-on-pc {
    display: none;
  }
  footer .fab,
  footer .login {
    display: flex;
    width: auto;
    height: 3rem;
    background: var(--color-bg-white);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    color: var(--color-text-primary);
    border-radius: 1rem;
    border: none;
    cursor: pointer;
  }
  footer label.profile {
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    height: 3rem;
  }
  footer label.profile img {
    width: 3rem;
    height: 3rem;
  }
  .settings-menu h1 {
    text-align: start;
    font-size: 1rem;
    margin-top: 0.45rem;
    margin-bottom: 1.75rem;
  }
  .settings-menu .settings-nav {
    gap: 0.2rem;
  }
  .settings-menu .settings-nav a.settings-nav__item {
    padding: 1.1rem 1.4rem;
  }
  .settings-menu .settings-nav__title {
    font-size: 1rem;
  }
  .settings-menu .settings-nav__desc {
    font-size: 0.82rem;
  }
  .settings-menu .settings-form button[type=submit] {
    position: static;
    margin-top: 2rem;
  }
  form input,
  form button.btn {
    padding: 1rem;
    font-size: 1rem;
  }
  .settings-section .settings-item,
  .settings-section select,
  .settings-section .setting-topics-list {
    max-width: var(--theme-side-width);
    font-size: 0.82rem;
  }
  .settings-section .settings-item label,
  .settings-section select label,
  .settings-section .setting-topics-list label {
    font-size: 1rem;
  }
  .settings-section .settings-item .readonly-field,
  .settings-section select .readonly-field,
  .settings-section .setting-topics-list .readonly-field {
    font-size: 0.82rem;
  }
  .settings-section .settings-item .readonly-field .field-action,
  .settings-section select .readonly-field .field-action,
  .settings-section .setting-topics-list .readonly-field .field-action {
    font-size: 0.82rem;
  }
  .settings-section form {
    max-width: var(--theme-side-width);
  }
  .settings-section form label {
    font-size: 1rem;
  }
  .settings-section form select {
    font-size: 0.82rem;
  }
  .settings-section .settings-footer {
    position: static;
    padding-top: 5rem;
  }
  .settings-section .notification-group {
    margin-top: 1rem;
  }
  .settings-section .notification-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .settings-section .notification-group h2 {
    margin-bottom: 1rem;
  }
  .settings-section .custom-checkbox {
    justify-content: start;
    gap: 0.4rem;
  }
  .settings-section .custom-checkbox__text {
    order: 1;
    text-align: start;
  }
  .settings-section .custom-checkbox > span:nth-last-child(1)::after {
    width: 1.54rem;
    height: 1.54rem;
  }
  .rates {
    justify-content: end;
    font-size: 0.87rem;
    padding-top: 1rem;
    gap: 0.53rem;
  }
  .rates .value {
    font-size: 0.87rem;
  }
  .rates__item {
    flex-direction: row;
    margin-right: 0;
    gap: 0.2rem;
  }
  .rates__item > svg {
    display: block;
    width: 1rem;
    height: 1rem;
  }
  .rates__item .label > svg {
    display: none;
  }
  .rates__filter {
    display: none;
  }
  .rates__filter-desk {
    display: flex;
    position: absolute;
    font-size: 1rem;
    left: var(--main-side-padding);
    top: 0.5rem;
    bottom: 0;
    margin: 0 auto;
    padding-top: 0.2rem;
    text-align: right;
  }
  .rates__filter-desk label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .news {
    padding: 0.75rem 0.85rem;
    margin-bottom: 1.4rem;
  }
  .news p {
    margin: 0.65rem 0 0.5rem 0;
    letter-spacing: -0.03rem;
  }
  .news h2 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    padding-left: 0;
    gap: 0;
  }
  .news h2:before {
    position: relative;
    content: "—";
    font-size: 0.85rem;
    font-weight: 1000;
    line-height: 0.1rem;
    bottom: 0.2rem;
    margin-right: 0.5rem;
    color: var(--color-accent-blue);
  }
  .news .link-more, .news .profile-info .profile-more, .profile-info .news .profile-more {
    font-size: 1rem;
  }
  .post, .reviews-summary, .contact-block, .comment-area > .comment {
    margin-bottom: 0rem;
  }
  .post .post-header, .reviews-summary .post-header, .contact-block .post-header, .comment-area > .comment .post-header {
    position: relative;
    margin-bottom: var(--content-margin);
  }
  .post .subscribe, .reviews-summary .subscribe, .contact-block .subscribe, .comment-area > .comment .subscribe {
    position: absolute;
    right: 3rem;
    top: 0.75rem;
    font-weight: 600;
  }
  .post .post-content, .reviews-summary .post-content, .contact-block .post-content, .comment-area > .comment .post-content {
    padding: 0;
  }
  .post .post-content h3, .reviews-summary .post-content h3, .contact-block .post-content h3, .comment-area > .comment .post-content h3 {
    margin-top: 0;
    line-height: 1.5rem;
    font-size: 1.25rem;
  }
  .post .post-content img, .reviews-summary .post-content img, .contact-block .post-content img, .comment-area > .comment .post-content img {
    margin-top: 0.5rem;
    max-width: 100%;
    border-radius: 0.5rem;
    height: 100%;
  }
  .post .link-more, .reviews-summary .link-more, .contact-block .link-more, .comment-area > .comment .link-more, .post .profile-info .profile-more, .profile-info .post .profile-more, .reviews-summary .profile-info .profile-more, .profile-info .reviews-summary .profile-more, .contact-block .profile-info .profile-more, .profile-info .contact-block .profile-more, .comment-area > .comment .profile-info .profile-more, .profile-info .comment-area > .comment .profile-more {
    font-size: 1rem;
    letter-spacing: -0.05rem;
  }
  .post.company, .company.reviews-summary, .company.contact-block, .comment-area > .company.comment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content min-content auto min-content;
    gap: 0.5rem 1.5rem;
  }
  .post.company .post-content, .company.reviews-summary .post-content, .company.contact-block .post-content, .comment-area > .company.comment .post-content {
    grid-row: 3;
  }
  .post.company .post-header, .company.reviews-summary .post-header, .company.contact-block .post-header, .comment-area > .company.comment .post-header {
    grid-row: 1/3;
    margin-bottom: 0;
  }
  .post.company .post-rate, .company.reviews-summary .post-rate, .company.contact-block .post-rate, .comment-area > .company.comment .post-rate {
    margin-right: 3rem;
  }
  .post.company .post-comments, .company.reviews-summary .post-comments, .company.contact-block .post-comments, .comment-area > .company.comment .post-comments {
    grid-row: 2/4;
  }
  .post.company .post-comments .comment-header, .company.reviews-summary .post-comments .comment-header, .company.contact-block .post-comments .comment-header, .comment-area > .company.comment .post-comments .comment-header {
    margin-bottom: 0.5rem;
  }
  .post.company .post-comments .comment-header .author-info, .company.reviews-summary .post-comments .comment-header .author-info, .company.contact-block .post-comments .comment-header .author-info, .comment-area > .company.comment .post-comments .comment-header .author-info {
    --avatar-size: 1rem;
  }
  .post.company .post-comments .comment-header .author-name, .company.reviews-summary .post-comments .comment-header .author-name, .company.contact-block .post-comments .comment-header .author-name, .comment-area > .company.comment .post-comments .comment-header .author-name {
    font-size: 0.75rem;
  }
  .post.company .post-comments .comment-text, .company.reviews-summary .post-comments .comment-text, .company.contact-block .post-comments .comment-text, .comment-area > .company.comment .post-comments .comment-text {
    font-size: 0.75rem;
  }
  .post.company .post-footer, .company.reviews-summary .post-footer, .company.contact-block .post-footer, .comment-area > .company.comment .post-footer {
    grid-column: 1/3;
  }
  .post.company .menu-btn, .company.reviews-summary .menu-btn, .company.contact-block .menu-btn, .comment-area > .company.comment .menu-btn {
    transform: translateX(20.5rem) translateY(-0.5rem);
  }
  .post.company .review-counts .avatars-list, .company.reviews-summary .review-counts .avatars-list, .company.contact-block .review-counts .avatars-list, .comment-area > .company.comment .review-counts .avatars-list {
    --avatar-size: 1.21rem;
  }
  .post.company .review-counts__counts, .company.reviews-summary .review-counts__counts, .company.contact-block .review-counts__counts, .comment-area > .company.comment .review-counts__counts {
    font-size: 0.81rem;
  }
  .post.company .company-category, .company.reviews-summary .company-category, .company.contact-block .company-category, .comment-area > .company.comment .company-category {
    padding: 0.25rem 0.5rem;
    font-size: 0.81rem;
  }
  .post.company .company-link, .company.reviews-summary .company-link, .company.contact-block .company-link, .comment-area > .company.comment .company-link {
    font-size: 0.81rem;
  }
  .post.company .company-description, .company.reviews-summary .company-description, .company.contact-block .company-description, .comment-area > .company.comment .company-description {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
  .btn, .search-filters .search-form input[type=search] {
    padding: 0.5rem 1rem;
  }
  .author-info {
    --avatar-size: 3rem;
    gap: 0 0.5rem;
  }
  .author-info .author-name, .author-info .comment-area > .comment > .comment-header .author-name, .comment-area > .comment > .comment-header .author-info .author-name {
    align-self: start;
    margin-top: 0;
    font-size: 1rem;
  }
  .author-info > div {
    align-items: start;
  }
  .profile-header {
    background: var(--color-bg-white);
    padding: 0;
    margin: 1rem var(--main-side-padding);
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .profile-header .profile-banner {
    height: 14.93rem;
  }
  .profile-header .profile-avatar {
    width: 8rem;
    height: 8rem;
    left: 1.5rem;
    bottom: -3.5rem;
    transform: none;
  }
  .profile-header .profile-banner-upload {
    top: 2rem;
    right: 3rem;
  }
  .profile-info {
    position: relative;
    display: grid;
    padding: 0;
    background: var(--color-bg-white);
    margin: 0 var(--main-side-padding);
    grid-auto-rows: min-content;
    gap: 0.25rem;
    min-height: 15rem;
  }
  .profile-info .profile-buttons {
    display: flex;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    gap: 0.5rem;
  }
  .profile-info .profile-buttons button {
    font-weight: 600;
  }
  .profile-info .profile-buttons__more-action {
    background: none;
    border: none;
    margin-right: 0.5rem;
  }
  .profile-info .profile-buttons__more-action svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .profile-info .profile-username {
    display: block;
    color: var(--color-text-secondary);
    letter-spacing: -0.08rem;
    font-size: 0.87rem;
    white-space: nowrap;
    position: relative;
    bottom: 0.5rem;
    height: 1rem;
    padding-bottom: 1.5rem;
  }
  .profile-info .profile-name {
    margin-top: 0.25rem;
  }
  .profile-info .profile-name,
  .profile-info .profile-username {
    padding-left: 11rem;
    justify-content: start;
    grid-column: 1/3;
  }
  .profile-info .profile-role-city {
    justify-content: start;
    padding-left: 1.5rem;
    grid-column: 1;
    height: min-content;
  }
  .profile-info .profile-role-city .profile-role {
    font-weight: 600;
  }
  .profile-info .profile-description {
    grid-row: 5;
  }
  .profile-info .profile-stats {
    display: grid;
    grid-column: 2;
    grid-row: 3/6;
    padding: 0;
    font-size: 1rem;
    padding-top: 0.5rem;
    height: 100%;
    font-weight: 600;
    gap: 0.25rem;
  }
  .profile-info .profile-stats__comments {
    display: block;
  }
  .profile-info .profile-stats .number {
    font-size: 1rem;
    margin: 0;
  }
  .profile-info .profile-stats > div {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: space-evenly;
    gap: 0.2rem;
  }
  .profile-info .profile-rate {
    padding-right: 0;
    padding-left: 1.5rem;
    padding-top: 0.25rem;
    height: 2rem;
  }
  .profile-info .profile-rate__label {
    font-size: 1rem;
    font-weight: 600;
  }
  .profile-info .profile-rate__score {
    width: max-content;
    order: 1;
  }
  .profile-info .profile-rate__rating {
    order: 2;
  }
  .profile-info .profile-rate__mobile-buttons {
    display: none;
  }
  .profile-tabs__tablist {
    justify-content: start;
    margin: 0 var(--main-side-padding);
    padding: 0;
    background: var(--color-bg-white);
  }
  .profile-tabs__tablist button {
    font-size: 1rem;
  }
  .profile-tabs__tablist button:first-child {
    margin-left: 1.5rem;
  }
  /* Правая колонка */
  .sidebar-right {
    grid-column: 3/4;
    border-radius: 1rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .sidebar-right h2 {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
  }
  .sidebar-right section {
    background: var(--color-bg-white);
    border-radius: 1rem;
  }
  .sidebar-right section h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    padding-left: 0.25rem;
  }
  .sidebar-right section h3:before {
    position: relative;
    content: "—";
    font-size: 0.75rem;
    font-weight: 1000;
    line-height: 0.1rem;
    bottom: 0.2rem;
    margin-right: 0.5rem;
    color: var(--color-accent-blue);
  }
  .sidebar-right .important-news {
    padding: 0.85rem 1.1rem;
  }
  .sidebar-right .important-news article h4 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
  }
  .sidebar-right .important-news article p {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .sidebar-right .important-news article .link-more, .sidebar-right .important-news article .profile-info .profile-more, .profile-info .sidebar-right .important-news article .profile-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
  }
  .sidebar-right .ai-tools {
    padding: 0 0.2rem;
    background: none;
  }
  .sidebar-right .ai-tools ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 1rem;
  }
  .sidebar-right .ai-tools ul li a {
    font-size: 1rem;
    color: var(--color-text-primary);
    text-decoration: none;
    cursor: pointer;
  }
  .sidebar-right .ai-tools ul li a:hover, .sidebar-right .ai-tools ul li a:focus {
    text-decoration: underline;
    outline: none;
  }
  .sidebar-right .popular-comments {
    padding-left: 0.2rem;
    padding-top: 0.55rem;
    background: none;
  }
  .sidebar-right .popular-comments h2 {
    margin-bottom: 0.5rem;
  }
  .sidebar-right .popular-comments .comment {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--color-accent-orange);
  }
  .sidebar-right .popular-comments .comment .author-info {
    --avatar-size: 1.25rem;
    gap: 0.15rem;
  }
  .sidebar-right .popular-comments .comment .author-info > div {
    display: none;
  }
  .sidebar-right .popular-comments .comment .author-info .avatar {
    position: relative;
    top: 0.1rem;
    grid-row: 1;
  }
  .sidebar-right .popular-comments .comment .author-info .author-name {
    display: flex;
    font-size: 0.87rem;
    align-self: center;
    gap: 0;
  }
  .sidebar-right .popular-comments .comment .author-info .verified-badge {
    position: relative;
    left: 0.5rem;
    bottom: 0.15rem;
  }
  .sidebar-right .popular-comments .comment p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.3;
    margin: 0.3rem 0;
  }
  .sidebar-right .popular-comments .comment small {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
  }
  /* Левая колонка — меню категорий и темы */
  .sidebar-left {
    grid-column: 1/2;
    border-radius: 1rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Блок Темы */
  }
  .sidebar-left nav.categories, .sidebar-left nav.search-filters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: auto;
    padding: 0;
    overflow: visible;
  }
  .sidebar-left nav.categories a, .sidebar-left nav.search-filters a {
    position: relative;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    letter-spacing: -0.06rem;
    background: none;
  }
  .sidebar-left nav.categories a:hover, .sidebar-left nav.search-filters a:hover, .sidebar-left nav.categories a.active, .sidebar-left nav.search-filters a.active {
    background: var(--color-bg-white);
    color: var(--color-text-primary);
  }
  .sidebar-left nav.categories a:hover:after, .sidebar-left nav.search-filters a:hover:after, .sidebar-left nav.categories a.active:after, .sidebar-left nav.search-filters a.active:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border: 0.15rem solid var(--color-accent-blue);
    opacity: 0.2;
    border-radius: 0.75rem;
    box-sizing: border-box;
  }
  .sidebar-left nav.categories a:hover svg path[stroke], .sidebar-left nav.search-filters a:hover svg path[stroke], .sidebar-left nav.categories a.active svg path[stroke], .sidebar-left nav.search-filters a.active svg path[stroke] {
    stroke: var(--color-accent-orange);
  }
  .sidebar-left nav.categories a:hover svg path[fill], .sidebar-left nav.search-filters a:hover svg path[fill], .sidebar-left nav.categories a.active svg path[fill], .sidebar-left nav.search-filters a.active svg path[fill] {
    fill: var(--color-accent-orange);
  }
  .sidebar-left nav.categories a:hover:after, .sidebar-left nav.search-filters a:hover:after {
    border: 0.15rem solid var(--color-bg-transparent-black);
  }
  .sidebar-left nav.categories a:hover svg path[stroke], .sidebar-left nav.search-filters a:hover svg path[stroke] {
    stroke: var(--color-accent-orange);
  }
  .sidebar-left nav.categories a:hover svg path[fill], .sidebar-left nav.search-filters a:hover svg path[fill] {
    fill: var(--color-accent-orange);
  }
  .sidebar-left nav.categories a.active, .sidebar-left nav.search-filters a.active {
    pointer-events: none;
  }
  .sidebar-left nav.categories a svg, .sidebar-left nav.search-filters a svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
  }
  .sidebar-left .topics {
    display: block;
  }
  .sidebar-left .topics h3 {
    font-weight: 600;
    font-size: 0.87rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
  }
  .sidebar-left .topics .topics-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 50vh;
    padding-right: 0.5rem;
  }
  .sidebar-left .topics .topics-list li {
    list-style: none;
  }
  .sidebar-left .topics .topics-list li .topic-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-primary);
    text-decoration: none;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 0.6rem;
    transition: background-color 0.3s ease;
    position: relative;
  }
  .sidebar-left .topics .topics-list li .topic-item:before {
    content: " ";
    border-radius: 0.5rem;
    pointer-events: none;
    background: var(--color-accent-white);
    opacity: 0.1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.2s;
  }
  .sidebar-left .topics .topics-list li .topic-item:hover:before, .sidebar-left .topics .topics-list li .topic-item:focus:before {
    content: " ";
    border-radius: 0.5rem;
    pointer-events: none;
    background: var(--color-accent-blue);
    opacity: 0.1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.wb {
    background-color: #7B4F7D;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.ozon {
    background-color: #4A5B8A;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.ym {
    background-color: #F7C948;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.mm {
    background-color: #7F4FFF;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.la {
    background-color: #000000;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.biz {
    background-color: #1E40AF;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.marketing {
    background-color: #F97316;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.personal {
    background-color: #14B8A6;
  }
  .sidebar-left .topics .topics-list li .topic-item .topic-icon.design {
    background-color: #9333EA;
  }
  .popup-overlay {
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: auto;
    background: var(--color-bg-transparent-black);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
  }
  .popup-overlay .popup-close {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--color-accent-blue);
    opacity: 0.02;
    z-index: 90;
  }
  .popup-overlay .popup-close svg {
    display: none;
  }
  .popup {
    z-index: 91;
    padding: 6rem;
    width: max-content;
    min-width: 33vw;
    height: max-content;
    border-radius: 2rem;
    box-shadow: 0 0 0.1rem var(--color-text-secondary);
    background: var(--color-bg-white);
  }
  .popup .title-container {
    margin: 0;
    padding-bottom: 2rem;
  }
  .popup .social-btn,
  .popup i.theChampLogin {
    background: var(--color-bg-primary);
  }
  .popup .popup-register {
    left: 0;
    right: 0;
    margin-left: 0;
  }
  .popup .popup-form .popup-input {
    background: var(--color-bg-primary);
  }
  .popup .popup-setting-list .common-svg-btn-block {
    bottom: 0;
  }
  .popup .popup-setting-log-out {
    bottom: var(--theme-popup-padding);
  }
  .popup-trigger:checked + .popup-overlay {
    display: grid;
    align-items: center;
    justify-items: center;
  }
  /* Что-бы скролился мейн */
  /* сайдбары sticky, с учётом паддингов body */
  .sidebar-left,
  .sidebar-right {
    position: sticky;
    top: var(--theme-header-height);
    max-height: 90vh;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none; /* скрыть scrollbar */
    /* Для WebKit-браузеров (Chrome, Safari, Edge) */
    -ms-overflow-style: none; /* IE и Edge */
  }
  .sidebar-left::-webkit-scrollbar,
  .sidebar-right::-webkit-scrollbar {
    display: none; /* скрыть scrollbar */
  }
}

/*# sourceMappingURL=style.css.map */
