

/* Start:/local/templates/generator/assets/css/page-raiting.css?174842504325106*/
html,
body {
  overflow-x: initial;
}

.header__lk{
  background: #007272 !important;
}
.header__lk:hover{
  background: rgba(0, 114, 114, .8) !important;
}

.header.top {
  position: relative !important;
}

.widget-wheel,
.widget-consultation,
.mobile-bottom {
  display: none !important;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
}

.fin-upr__top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.fin-upr__top--left {
  display: flex;
  gap: 25px;
  flex-direction: column;
  justify-content: space-between;
}

.fin-upr__search--form {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.fin-upr__search--form .form-gorup {
  width: 100%;
  display: flex;
  gap: 8px;
}

.fin-upr__search--form .form-input__search {
  width: 100%;
  min-width: 424px;
  max-width: 424px;
  padding: 13px 24px;
  font-weight: 300;
  font-size: 12px;
  line-height: 22px;
  color: #6c757d;
  background: #fff;
  border: 1px solid #dfe2e8;
  border-radius: 16px;
  cursor: pointer;
  outline: 0;
}

.fin-upr__search--form .form-input__search:focus {
  border: 1px solid #8dc63f;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  background: transparent !important;
  border: none !important;
}

.fin-upr__search--form .form-button {
  padding: 5px 20px;
  background: #10b482;
  border: transparent;
  border-radius: 16px;
}

.fin-upr__search--form .form-button:hover{
  background: rgba(16, 180, 130, .8);
}


.fin-upr__search--form .form-button .button__body {
  color: #fff;
}
.fin-upr__search--form .form-button .button__body img {
  display: none;
}

.fin-upr__search--form .form-input__inner {
  width: 100%;
  max-width: 276px;
}

.fin-upr__search--form .select-panel {
  background: #fff;
  border: 1px solid #dfe2e8;
}

.fin-upr__search--form .select-dropdown {
  height: auto;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2);
  border: 1px solid rgba(108, 117, 125, 0.4392156863);
}

.sort {
  display: flex;
  gap: 10px;
}

.sort__button {
  border: 1px solid #10b482;
  border-radius: 16px;
  background: transparent;
  padding: 11px 23px;
  min-width: 200px;
  color: #10b482;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background 0.3s;
}

.sort__button:hover,
.sort__button--active {
  background: rgba(16, 180, 130, .8);
  color: #ffffff;
}

.sort__icon {
  width: 24px;
  height: auto;
}
.sort__icon svg {
  width: 100%;
}

/* .sort__button--desc {
  transform: scaleY(1);
}
.sort__button--asc {
  transform: scaleY(-1);
} */

.sort__button--asc .sort__icon svg {
  transform: rotate(180deg);
  transition: transform 0.2s;
}
.sort__button--desc .sort__icon svg {
  transform: rotate(0deg);
  transition: transform 0.2s;
}

.bankruptcy-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.bankruptcy-calc {
  background: #dfecbf;
  padding: 28px 35px;
  border-radius: 11px;
  display: flex;
  gap: 34px;
  align-items: center;
}

.bankruptcy-calc button,
.bankruptcy-calc a {
  background-color: #007272;
  border: transparent;
  padding: 9px 14px;
  border-radius: 17px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  max-width: 210px;
  font-size: 14px;
}

.bankruptcy-calc button:hover,
.bankruptcy-calc a:hover{
    background-color: rgba(0, 114, 114, .8);
}

.bankruptcy-calc img {
    max-width: 120px;
}

.fin-upr__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

/* Общий стиль для выпадающего списка */
.ui-autocomplete {
  background-color: #ffffff;
  /* Белый фон для списка */
  border: 1px solid #ccc;
  /* Серая граница */
  border-radius: 5px;
  /* Округлые углы */
  max-height: 200px;
  /* Ограничение высоты списка */
  overflow-y: auto;
  /* Скролл при большом количестве элементов */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  /* Тень */
  z-index: 1000;
  /* Положение поверх других элементов */
  padding: 5px 0;
}

/* Стили для каждого элемента списка */
.ui-menu-item {
  padding: 10px;
  /* Отступы внутри каждого элемента */
  font-size: 14px;
  /* Размер шрифта */
  color: #333;
  /* Цвет текста */
  cursor: pointer;
  /* Курсор указатель */
  transition: background-color 0.1s ease-in-out;
  /* Плавное изменение фона при наведении */
}

/* Стиль элемента при наведении */
.ui-menu-item:hover,
.ui-menu-item.ui-state-focus {
  background-color: #8dc63f !important;
  /* Цвет фона при наведении */
  color: #fff !important;
  /* Цвет текста при наведении */
}

/* Стили для выделенного элемента */
.ui-menu-item-wrapper.ui-state-active {
  background: transparent !important;
  border: none !important;
}

/* Скроллбар */
.ui-autocomplete::-webkit-scrollbar {
  width: 8px;
}

.ui-autocomplete::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.ui-autocomplete::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.region-select {
  width: 375px;
  display: none;
}

.ui-selectmenu-button {
  width: 100% !important;
  font-size: 15px;
  padding: 10px;
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.ui-selectmenu-menu {
  background-color: white;
}

.ui-selectmenu-menu .ui-menu-item {
  padding: 10px;
}

.ui-selectmenu-menu .ui-menu {
  max-height: 350px;
}

/* Применение стиля к <li>, если внутри есть <div> с классом ui-state-active */
li:has(.ui-state-active) {
  background-color: #8dc63f;
}

@media screen and (max-width: 1280px) {
  .fin-upr__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .fin-upr__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome__image {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .fin-upr__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Карточка АУ */
.manager {
  padding: 30px 24px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  -webkit-box-shadow: 0 4px 30px rgba(26, 103, 153, 0.1);
  box-shadow: 0 4px 30px rgba(26, 103, 153, 0.1);
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #343a40;
  cursor: pointer;
}

.manager__rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.manager__rank-number {
  width: 31px;
  height: 30px;
  -webkit-mask-image: url("/local/templates/generator/assets/images/raiting/svg/rank-number.svg");
  mask-image: url("/local/templates/generator/assets/images/raiting/svg/rank-number.svg");
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.manager__rank-number.top {
  background-color: #ffa323;
}

.manager__rank-number.no-top {
  background-color: #95c12b;
}
.manager__rank-number.no-raiting {
  color: #000;
  mask-image: none;
    width: auto;
}

.manager__name {
  margin: 0 auto;
  display: block;
  line-height: 150%;
  text-align: center;
  text-underline-offset: 3px;
}
.manager__name a {
  text-decoration: underline;
  color: #343a40;
  font-weight: 700;
  font-size: 24px;
}

.manager__body {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.manager__registry {
  margin-bottom: 20px;
}

.manager__registry p {
  font-weight: 300;
  font-size: 14px;
  /* line-height: 18px; */
  color: #000000;
  margin-bottom: 7px;
}
.manager__registry p:last-child {
  margin-bottom: 0;
}

.manager__actions {
  /* flex: 1; */
}

.manager__stats span {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.manager__stats-item {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.manager__stats-item:last-child {
  margin-bottom: 0;
}

.manager__button {
  border-radius: 16px;
  padding: 14px 16px;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: Geometria;
  cursor: pointer;
  width: 100%;
  height: 48px;
}
.manager__button:hover{
    color: #fff;
}

.manager__button--contact {
  background-color: #007272;
  margin-bottom: 12px;
}
.manager__button--contact:hover{
  background-color: rgba(0, 114, 114, .8)
}

.manager__button--compare {
  background-color: #10b482;
}

.manager__button--compare.selected,
.manager__button--compare:hover {
  background-color: rgba(16, 180, 130, .8);
  color: white;
}

.compare-float {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  border-radius: 16px;
  background: rgb(149, 193, 43);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 27px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-family: Inter;
}

.compare-limit-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Центрирование */
  color: #ffa323;
  border-radius: 16px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.76);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 27px;
  z-index: 9999;
  width: 390px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* END Карточка АУ */

/* Форма обратной связи */
.manager__form {
  border-radius: 16px !important;
  max-width: 690px !important;
}

.manager__form .popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.manager__form .popup__title {
  font-family: Geometria;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 32px;
  text-align: center;
}

.manager__form .forms_column,
.manager__form .form-row,
.manager__form .popup__copy {
  max-width: 100%;
}

.manager__form .form-input.popup__popup-allform input[type="text"] {
  border-radius: 16px;
  border: 1px solid #b6b6b6;
}

.manager__form input.btn--green.popup__popup-allform--btn {
  background: #ffa323;
  border-radius: 16px;
  font-family: Geometria;
  font-size: 20px;
  font-weight: 700;
  padding: 13px 28px;
}
.manager__form .popup__copy {
  text-align: center;
}

#popup-manager-name {
  pointer-events: none; /* Запрещает клики и ввод */
  background-color: #f5f5f5; /* Светлый фон, чтобы выглядело неактивным */
  color: #666; /* Затемняем текст */
  cursor: default; /* Обычный курсор */
}

/* END Форма обратной связи */

/* Страница с детальнойй информацией АУ */



.profile__header--prev {
    max-width: 46px;
    display: block;
    background: #007272;
    width: 60px;
    border-radius: 8px;
    padding: 8px 11px;
    height: 40px;
}


.profile__header--prev svg{
  height: 100%;
}

.profile__position {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
}

.profile__catalog {
  margin-bottom: 40px;
  display: block;
  font-weight: bold;
}
.profile__catalog b {
  display: inline-flex;
}

.dashboard {
  margin-bottom: 60px;
}

.dashboard__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  padding: 28px;
  border-radius: 15px;
  box-shadow: 0px 5px 14px 5px rgba(0, 0, 0, 0.07);
  background: rgba(141, 198, 63, 0.12);
}
.card__title {
  color: #95c12b;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

.dashboard__card--cases .card__title {
  text-align: center;
  font-size: 20px;
  color: #000000;
  font-weight: 400;
}
.dashboard__card--cases .card__title span {
  color: #95c12b;
  font-size: 32px;
  font-weight: 700;
}
.dashboard__card--experience .card__title {
  font-size: 20px;
  color: #000000;
  font-weight: 400;
}
.dashboard__card--experience .card__title span {
  font-weight: 700;
  color: #95c12b;
}

.cases__list {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.cases__titile {
  font-size: 22px;
}
.cases__count {
  display: block;
  font-size: 32px;
}

.entities {
  font-size: 20px;
  margin-top: 20px;
  padding: 5px 0 5px 12px;
  position: relative;
}
.entities::before,
.association__contacts::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  width: 1px;
  height: 100%;
}
.entities__item {
  margin-bottom: 20px;
}
.entities__item:last-child {
  margin-bottom: 0;
}

.entities__title {
  font-weight: 700;
}
.entities__item--fl .entities__title {
  color: #95c12b;
}

.association__address {
  font-size: 20px;
  font-weight: 700;
}

.association .association__contacts {
  position: relative;
  padding: 5px 0 5px 12px;
  margin-top: 30px;
}
.association .association__contacts li {
  margin-bottom: 20px;
  font-size: 20px;
}

.association .association__contacts li:last-child {
  margin-bottom: 0px;
}

.association .association__contacts li span {
  font-weight: 700;
  color: #95c12b;
}
.association .association__contacts li a,
.association .association__contacts li span.phone {
  color: #000000;
  font-weight: 400;
}

.procedures__list {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.procedures__list-item span {
  display: block;
  font-size: 22px;
}

.procedures__titile {
  font-weight: 700;
  margin-bottom: 16px;
}

.stats-chart__container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}

/* Скрываем сами радио-кнопки */
.tabs__input {
  display: none;
}

/* Навигационная панель с кнопками (лейблами) */
.tabs__nav {
  display: flex;
  gap: 25px;
  /* justify-content: space-between; */
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden; /* чтобы скругления были видны */
}

.tabs__nav-item {
  border: 1px solid #95c12b;
  border-radius: 16px;
  background: transparent;
  padding: 11px 23px;
  color: #95c12b;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

/* Стиль "активного" таба задается при :checked + label */
/* Для удобства используем селекторы вида: #tab-1:checked ~ .tabs__nav label[for="tab-1"] */
#tab-1:checked ~ .tabs__nav label[for="tab-1"],
#tab-2:checked ~ .tabs__nav label[for="tab-2"],
#tab-3:checked ~ .tabs__nav label[for="tab-3"],
#tab-4:checked ~ .tabs__nav label[for="tab-4"] {
  background-color: #82bd4e;
  color: #fff;
}

/* Контейнер для контента табов */
.tabs__content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-height: 300px; /* Задаем минимальную высоту под график */
}

.tabs__pane {
  display: none; /* Все графики по умолчанию скрыты */
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

/* Показываем конкретный график, если соответствующий радио :checked */
#tab-1:checked ~ .tabs__content #content-1,
#tab-2:checked ~ .tabs__content #content-2,
#tab-3:checked ~ .tabs__content #content-3,
#tab-4:checked ~ .tabs__content #content-4 {
  display: block;
  position: static; /* чтобы растягивался по высоте родителя */
}

/* Для наглядности добавим стили к самим графикам (заглушки) */
.chart-placeholder {
  width: 100%;
  height: 100%;
}

.au-form {
  border-radius: 16px;
  background: rgba(141, 198, 63, 0.12);
  padding: 60px 50px;
}

.au-form__title {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin-top: 0;
}

.au-form .forms_column,
.au-form .form-row,
.au-form .popup__copy {
  max-width: 100%;
}
.au-form .forms_column {
  row-gap: 20px;
}

.au-form .form-input.popup__popup-allform input[type="text"] {
  border-radius: 16px;
  font-family: Geometria;
  border: none;
}
.au-form input.btn--green.popup__popup-allform--btn {
  border-radius: 16px;
  background: #007272;
  font-family: Geometria;
  font-size: 20px;
  font-weight: 700;
  padding: 13px 28px;
}
.au-form .popup__copy {
  text-align: center;
}

.au-form #popup-manager-name {
  background-color: #ffffff;
}

.bankruptcy-last {
  margin-top: 100px;
  position: relative;
}

.bankruptcy-last__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 34px;
}

/* 
	Сетка для карточек 
	Можно использовать flex или grid 
 */
.bankruptcy-last__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(342px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 10px 10px 0 10px;
}

.bankruptcy-last__grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

#au-cases-list.bankruptcy-last__grid {
  padding: 10px 10px 28px 10px;
}

#au-cases-list.bankruptcy-last__grid::before {
  display: none;
}

/* #au-cases-list .bankruptcy-last__card {
  box-shadow: 0px 2.41px 5.75px 2.41px rgba(69, 99, 0, 0.14);
} */

/* 
	Карточка 
 */
.bankruptcy-last__card {
  border-radius: 16px;
  /* box-shadow: 0px 5.41px 14.75px 5.41px rgba(69, 99, 0, 0.14); */
  box-shadow: 0px 2.41px 5.75px 2.41px rgba(69, 99, 0, 0.14);
  background: rgb(255, 255, 255);
  padding: 30px 20px;
}

.bankruptcy-last__card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.bankruptcy-last__card-title a {
  color: #000000;
}

.bankruptcy-last__info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #8e8e8e;
}
.bankruptcy-last__info span {
  color: #000000;
  font-weight: 700;
}

/*
	Кнопка "Смотреть все"
 */
.bankruptcy-last__button {
  display: block;
  margin: 0 auto 20px auto; /* по центру */
  padding: 12px 30px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background-color: #007272;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
}

.bankruptcy-last__button:hover {
  background-color: rgba(0, 114, 114, .8);
  color: #fff;
}

/* END Страница с детальнойй информацией АУ */

/* AJAX подгрузка данных - Показать ещё */

.load-more-container {
  padding: 60px 0;
}

.load-more-container .button {
  border-radius: 16px;
  padding: 14px;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: Geometria;
  cursor: pointer;
  max-width: 400px;
  height: 48px;
  background-color: #10b482;
  margin: 0 auto;
}

.loader {
  margin: 10px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #666;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
}

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

/* END AJAX подгрузка данных - Показать ещё */

#sort-loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50px;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db; /* Цвет анимации */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;

  position: relative;
  margin: 20px auto;
}

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

/* Фильтр на странице дел */
.au-cases__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.au-cases__filter label {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333;
}

.au-cases__filter input,
.au-cases__filter select {
  margin-top: 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.au-cases__filter button {
  background-color: #95c12b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: auto;
  height: 40px;
}
.au-cases__filter button:hover {
  background-color: #7ea722;
}
/* END Фильтр на странице дел */

/* Media */
@media (max-width: 1800px) {
  .fin-upr__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1550px) {
  label.label-date {
    flex: 1 1 110px;
  }
}

@media (max-width: 1440px) {
  .cases__titile,
  .procedures__list-item span {
    font-size: 20px;
  }

  .cases__count {
    font-size: 26px;
  }

  .au-form {
    padding: 30px;
  }
}

@media (max-width: 1280px) {
  .fin-upr__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .fin-upr__top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .dashboard__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .stats-chart__container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .fin-upr__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .sort {
    flex-wrap: wrap;
  }

  .card {
    padding: 18px;
  }
  .card__title {
    font-size: 22px;
  }

  .cases__titile,
  .procedures__list-item span,
  .entities,
  .association__address,
  .association .association__contacts li {
    font-size: 18px;
  }

  .cases__count {
    font-size: 24px;
  }

  .au-form__title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .fin-upr__search--form .form-input__search {
    min-width: 230px;
    max-width: 100%;
  }
  .sort__button {
    min-width: 100%;
    height: 51px;
  }

  .manager__body {
    gap: 18px;
    flex-wrap: wrap;
  }

  .manager__actions {
    width: 100%;
  }

  .compare-float {
    font-size: 18px;
    padding: 16px;
    bottom: 0%;
    white-space: nowrap;
  }

  .manager__form .popup__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .fancybox__content {
    padding: 1rem !important;
  }

  .form-input.popup__popup-allform input[type="text"] {
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .manager__form input.btn--green.popup__popup-allform--btn {
    font-size: 18px !important;
    padding: 8px 28px !important;
  }

  .dashboard__container {
    grid-template-columns: repeat(1, 1fr);
  }
  .tabs__nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .tabs__pane > div {
    height: 350px !important;
  }

  .au-cases__filter input,
  .au-cases__filter select {
    width: 100%;
  }

  .au-form__title {
    font-size: 20px;
  }

  .au-form {
    padding: 18px;
  }

  .au-form input.btn--green.popup__popup-allform--btn {
    font-size: 18px;
    padding: 9px 26px;
  }

  .bankruptcy-last {
    padding-bottom: 50px;
  }

  .bankruptcy-last__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 10px 10px 20px 10px;
  }

  .bankruptcy-last__grid::before {
    display: none;
  }
  .bankruptcy-last .bankruptcy-last__grid > .bankruptcy-last__card:nth-child(n + 3) {
    display: none;
  }

  .bankruptcy-last__button {
    max-width: 266px;
    font-size: 18px;
    position: relative;
  }

  .fin-upr__search--form .form-button .button__body {
    font-size: 0;
  }

  .fin-upr__search--form .form-button .button__body img {
    display: block;
  }

  .fin-upr__search--form .form-button {
    padding: 5px 12px;
  }


.bankruptcy-calc img {
    max-width: 80px;
}

}

/* End */


/* Start:/local/templates/generator/components/bitrix/system.pagenavigation/smi-navigation/style.css?17211076501455*/
div.modern-page-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 40px 0;
	-webkit-column-gap: 8px;
	-moz-column-gap: 8px;
	column-gap: 8px;}

.modern-page-navigation a {
	padding: 4px 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #b6b6b6;
}
div.modern-page-navigation a, 
span.modern-page-current, 
span.modern-page-dots
{
	padding-left: 0.5em;
	padding-right: 0.5em;
	text-decoration: none;
}
/*div.modern-page-navigation a.modern-page-previous {
	border-right-width: 1px; 
	border-right-style: solid; 
	border-left: none; }*/
div.modern-page-navigation a.modern-page-first, 
div.modern-page-navigation span.modern-page-first { 
	border-left: none; 
	padding-left: 0.5em; }
span.modern-page-current { 
	font-weight: bold; }
div.modern-page-navigation a, 
div.modern-page-navigation a.modern-page-previous,
span.modern-page-dots {
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #b6b6b6;
	border-radius: 2px;}

div.modern-page-navigation a:hover{
	background: #8dc63f;
	border-radius: 2px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #fff;}
span.modern-page-current{
	background: #8dc63f;
	border-radius: 2px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #fff;
	margin-right: 8px;
	padding: 4px 8px;
}
/* End */


/* Start:/local/templates/generator/components/bitrix/news/raiting/bitrix/news.list/.default/style.css?1747389169150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/templates/generator/components/bitrix/form.result.new/calc-form/style.css?17546507662972*/
font.errortext {
	display: none;
}
input.hidden {
	display:none;
}
.form-row {
	max-width: 415px;
	width: 100%;
}

.forms_column {
	max-width: 415px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 12px;
}
.form-input.popup__popup-allform input[type="text"] {
	border: 2px solid #b6b6b6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	border-radius: 4px;
	padding: 16px 32px;
	color: #231f20;
	font-family: var(--default-font-family);
	font-size: 18px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	border: 2px solid #b6b6b6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	border-radius: 4px;
	padding: 16px 32px;
	color: #231f20;
	font-size: 18px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	width: 100%;
}

.form-input.popup__popup-allform input[type="text"] {
	max-width: 100%;
}

select#form_dropdown_SIMPLE_QUESTION_489 {
	border: 2px solid #b6b6b6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	border-radius: 4px;
	padding: 16px 32px;
	font-size: 18px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	border: 2px solid #b6b6b6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	border-radius: 4px;
	padding: 16px 32px;
	font-size: 18px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	width: 100%;
	color: #b6b6b6;
}

input.btn--green.popup__popup-allform--btn {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: 500;
	border: 2px solid transparent;
	font-size: 18px;
	line-height: 140%;
	text-align: center;
	-webkit-font-feature-settings: "pnum" on, "lnum" on;
	font-feature-settings: "pnum" on, "lnum" on;
	color: #fff;
	padding: 20px 28px;
	background: #8dc63f;
	border-radius: 4px;
	margin-top: 16px;
	width: 100%;
}

.popup__copy {
	margin-top: 12px;
	font-size: 12px;
	max-width: 370px;
	color: #b6b6b6;
}
.popup__copy a {
	color: #b6b6b6;
	text-decoration: underline;
}
.popup__copy a:hover{
	color: #b6b6b6;
}

.form-row--consent{
	margin-top: 12px;
}
.form-row--consent span{
	cursor: pointer;
}
/* End */


/* Start:/local/templates/generator/components/bitrix/form.result.new/quiz-form-raiting/style.css?174789918912901*/
font.errortext {
  display: none;
}

.fancybox__content {
  border-radius: 10px !important;
  width: 926px;

  padding: 0 !important;
}

#popup-calc .popup__content {
  background-image: url(/local/templates/generator/assets/images/raiting/popup-bg.jpg);
  min-height: 550px;
  max-height: 550px;
  background-repeat: no-repeat;
  background-position: bottom right;
  padding-top: 16px;
  overflow: hidden;
  border-radius: 10px !important;
}

.popup__content,
form,
.form__wrapper,
.step,
.flex-wrapper {
  height: 100%;
}

.step {
  padding: 46px 76px 67px;
}

.popup__calc-step6 {
  padding: 0;
}

.step__final--form .popup__title {
  font-size: 36px;
}

.step__final {
  display: flex;
  height: 100%;
  gap: 34px;
}
.step__final--image {
  aspect-ratio: 4 / 6;
  height: auto;
}

.step__final--image img {
  border-radius: 10px 0 0 10px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.step__final--form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}

.step__final input.input-t {
  padding: 8px 14px;
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  line-height: normal;
}
.step__final .input-t:focus {
  line-height: normal;
}

.step__final .btn {
  padding: 10px 26px;
  max-width: 100%;
  border-radius: 12px;
}
.step__final .form-input {
  margin-top: 16px;
}

.flex-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 40px;
}

.popup__calc--line {
  padding-bottom: 12px;
  display: flex;
}

.popup__close {
  position: absolute;
  right: -40px;
  background: #fff;
  top: -40px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
}
.popup__close svg {
  width: 100%;
  height: 100%;
}

.mainpage_head_bottom_right-form-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1256px) {
  .mainpage_head_bottom_right-form-row {
    column-gap: 10px;
    row-gap: 10px;
  }
}

@media (max-width: 480px) {
  .mainpage_head_bottom_right-form-row {
    row-gap: 15px;
    margin-bottom: 10px;
  }
}
input.input-t {
  max-width: 270px;
  width: 100%;
  padding: 16px 32px;
  background: #fff;
  border: 2px solid #b6b6b6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, 0.34);
  box-shadow: 0px 1px 8px rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  font-family: var(--default-font-family);
  font-weight: normal;
  font-size: calc(14px + 4 * ((100vw - 320px) / 1720));
  line-height: 140%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #b6b6b6;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

@media (max-width: 1256px) {
  .input-t {
    padding: 13px 20px;
    max-width: 240px;
  }
}
@media (max-width: 768px) {
  .input-t {
    max-width: 200px;
    width: 100%;
    padding: 10px 20px;
  }
}
@media (max-width: 430px) {
  .input-t {
    max-width: 100%;
  }
}
.input-t:hover {
  border: 2px solid #8dc63f;
}
.input-t:focus {
  background: #fff;
  border: 2px solid #231f20;
  -webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, 0.34);
  box-shadow: 0px 1px 8px rgba(255, 255, 255, 0.34);
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #231f20;
}
input:active,
input:hover,
input:focus {
  outline: 0;
  outline-offset: 0;
}

.form-input {
  display: flex;
  flex-direction: column;
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #8dc63f;
  border: none;
  -webkit-box-shadow: 0px 0px 16px rgba(27, 27, 27, 0.34);
  box-shadow: 0px 0px 16px rgba(27, 27, 27, 0.34);
  border-radius: 4px;
  padding: 20px 28px;
  font-weight: 500;
  font-size: calc(14px + 4 * ((100vw - 320px) / 1720));
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.6s;
  -o-transition: background-color 0.6s;
  transition: background-color 0.6s;
  outline: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mainpage_head_bottom_form-btn {
  max-width: 415px;
  width: 100%;
}
@media (max-width: 1024px) {
  .mainpage_head_bottom_form-btn {
    max-width: 350px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .mainpage_head_bottom_form-btn {
    max-width: 250px;
    width: 100%;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 15px 28px;
  }
}
.btn:hover,
.btn:active {
  background: #82b43b;
}
.popup__copy {
  font-size: 12px;
  max-width: 370px;
  color: #b6b6b6;
}
.popup__copy a {
  color: #b6b6b6;
  text-decoration: underline;
}
.popup__copy a:hover {
  color: #b6b6b6;
}
.popup__calc-step2,
.popup__calc-step3,
.popup__calc-step4,
.popup__calc-step5,
.popup__calc-step6,
.popup__calc-step7 {
  display: none;
}

.popup__calc-step7.step.open {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.popup__calc-step7.step.open .popup__title {
  font-size: 30px;
  display: block;
  margin-bottom: 13px;
}

.popup__calc-step7.step.open .popup__text {
  font-size: 25px;
}

#popup-calc .popup__calc-title {
  font-size: 36px;
  line-height: 140%;
  font-weight: normal;
  max-width: 550px;
  max-width: none;
  margin-bottom: 0px;
  text-align: center;
}

.step label:not([for]) {
  display: block;
  /* margin-bottom: 20px;  */
  cursor: pointer;
  max-width: 460px;
}

.popup__calc-inp:checked + label[for] {
  border: 1px solid #8dc63f;
}

/*.popup input {
	border: 2px solid #b6b6b6;
	box-sizing: border-box;
	box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	border-radius: 4px;
	padding: 16px 32px;
	color: #231f20;
	font-size: 18px;
	transition: all .6s;
}*/

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

.step label[for] {
  display: block;
  font-weight: 500;
  font-size: 20px;
  border-radius: 4px;
  padding: 8px 16px 8px 56px;
  border: 1px solid rgba(182, 182, 182, 0.4);
  position: relative;
  user-select: none;
  background-color: #fff;
  /* margin-bottom: 20px; */
  cursor: pointer;
  /* max-width: 460px; */
}

.step label[for]:before,
.step label[for]:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  border-radius: 50%;
}

.step label[for]:before {
  background: #f4f6f7;
  border: 1px solid #b6b6b6;
  width: 23px;
  height: 23px;
}

.step label[for]:after {
  background: #f4f6f7;
  /* border: 7px solid #8dc63f; */
  width: 23px;
  height: 23px;
  opacity: 0;
}

.popup__calc-inp:checked + .step label[for]:after {
  opacity: 1;
}

.popup__calc-btns {
  display: flex;
  column-gap: 20px;
  padding-top: 10px;
  justify-content: flex-start;
  max-width: 460px;
  flex: 1;
  align-items: flex-end;
  padding-bottom: 56px;
}

.popup__calc-btns button {
  background: #3d8d00;
  padding: 10px 14px;
  border-radius: 6px;
}

.popup__calc-btn3 {
  border: none;
  padding: 10px;
  background-color: #fff;
  cursor: pointer;
}

.popup__calc-phone {
  color: #8dc63f;
  font-weight: bold;
  font-size: 48px;
}
.btn.disable {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.step label[for]:after {
  opacity: 0;
  transition: opacity 0.3s;
}
.step label.selected:after {
  opacity: 1;
}
.popup__calc-title {
  font-size: 40px;
  line-height: 140%;
  font-weight: normal;
  max-width: 550px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .popup__title {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .popup__calc-title {
    font-size: 28px;
  }
}
.popup__calc-step4 .popup__title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 12px;
  color: #231f20;
}

@media (max-width: 1024px) {
  .popup__title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .popup__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.popup__text {
  color: #676767;
  margin-bottom: 24px;
  max-width: 550px;
}
@media (max-width: 480px) {
  .popup__text {
    margin-bottom: 15px;
    font-size: 12px;
  }
}

/*.popup input {
	border: 2px solid #b6b6b6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	box-shadow: 0px 1px 8px rgba(255, 255, 255, .34);
	border-radius: 4px;
	padding: 16px 32px;
	color: #231f20;
	font-size: 18px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
}*/
@media (max-width: 480px) {
  .popup__input {
    margin-right: 0;
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.popup__calc-input {
  margin-bottom: 12px;
}

.popup__calc-btn {
  max-width: 400px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 4px;
}
.btn:hover,
.btn:active {
  background: #82b43b;
}
@media (max-width: 480px) {
  .btn {
    padding: 15px 28px;
  }
}

.no-progress {
      padding-top: 0px !important;
}

.no-progress .popup__calc-progress {
  display: none !important;
}

/* Прогрессбар */
.popup__calc-progress {
  width: 100%;
  height: 4px;
  background: #d9d9d9;
  overflow: hidden;
}

.popup__calc-progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.popup__calc-progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #3d8d00;
  transition: width 0.3s ease;
}
/* END Прогрессбар */

/* Общие стили */
.popup__calc-inp.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Убираем радиус — чекбокс квадрат */
.popup__calc-inp[type="checkbox"] + label[for]::before {
  border-radius: 4px;
}

/* Галочка — для чекбоксов */
.popup__calc-inp[type="checkbox"] + label[for]::after {
  content: "✓";
  font-size: 16px;
  color: #8dc63f;
  font-weight: bold;
  text-align: center;
  line-height: 23px;
  width: 23px;
  height: 23px;
  background: transparent;
  opacity: 0;
}

/* Показываем галочку, если checkbox активен */
.popup__calc-inp[type="checkbox"]:checked + label[for]::after {
  opacity: 1;
}

/* Радиокнопка — точка */
.popup__calc-inp[type="radio"]:checked + label[for]::after {
  background: #f4f6f7;
  border: 7px solid #8dc63f;
  border-radius: 50%;
  /* width: 12px;
  height: 12px;
  top: 50%;
  left: 22px;
  transform: translate(-50%, -50%); */
  content: "";
  display: block;
  opacity: 1;
}

@media (max-width: 1440px) {
  .fancybox__content {
    width: 690px;
  }

  #popup-calc .popup__content {
    min-height: 420px;
    max-height: 420px;
  }

  .step__final {
    gap: 26px;
  }

  .step__final--form .popup__title,
  #popup-calc .popup__calc-title {
    font-size: 22px;
  }

  .step__final--form {
    padding-right: 30px;
  }

  .step {
    padding: 30px 50px 30px;
  }

  .step label[for] {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .popup__close {
    right: 0;
  }

  .step__final--form .popup__title,
  #popup-calc .popup__calc-title {
    font-size: 18px;
  }

  .step label[for] {
    font-size: 16px;
    padding: 8px 16px 8px 40px;
  }

  .step label[for]:before,
  .popup__calc-inp[type="checkbox"] + label[for]::after {
    width: 20px;
    height: 20px;
  }

  .step label[for]:before,
  .step label[for]:after {
    left: 10px;
  }

  .flex-wrapper {
    padding-top: 20px;
  }
  .step {
    padding: 14px 14px 40px 14px;
  }
  .popup__calc-btns {
    justify-content: space-between;
  }

  .popup__calc-btns {
    padding-bottom: 30px;
  }
  #popup-calc .popup__content {
    min-height: 420px;
    max-height: 460px;
  }

  .step__final--image {
    display: none;
  }
  .step__final .input-t:focus {
    font-size: 14px;
  }

  .popup__calc-step7.step.open .popup__title {
    font-size: 24px;
    margin-bottom: 7px;
  }
  .popup__calc-step7.step.open .popup__text {
    font-size: 18px;
    text-align: center;
  }

  .popup__calc-phone {
    color: #8dc63f;
    font-weight: bold;
    font-size: 28px;
  }
}


@media (max-width: 576px) {
  #popup-calc .popup__content {
    min-height: 350px;
  }

}
/* End */
/* /local/templates/generator/assets/css/page-raiting.css?174842504325106 */
/* /local/templates/generator/components/bitrix/system.pagenavigation/smi-navigation/style.css?17211076501455 */
/* /local/templates/generator/components/bitrix/news/raiting/bitrix/news.list/.default/style.css?1747389169150 */
/* /local/templates/generator/components/bitrix/form.result.new/calc-form/style.css?17546507662972 */
/* /local/templates/generator/components/bitrix/form.result.new/quiz-form-raiting/style.css?174789918912901 */
