

/* Start:/local/templates/generator/assets/css/page-raiting.css?176958783225132*/
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;
  text-align: center;
}

.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 */
/* /local/templates/generator/assets/css/page-raiting.css?176958783225132 */
