.person-card {
  display: flex;
  grid-gap: 1rem;
  background-color: white;
  border-radius: 0.375rem;
  padding: 1.5rem;
}
.person-card .person-star {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.person-card .person-star.gold {
  color: #ffd700;
}
.person-card .person-star.silver {
  color: #b6b5b8;
}
.person-card .person-star.bronze {
  color: #8c4a23;
}
.person-card .person-star.no-medal {
  display: none;
}
.person-card__points {
  display: none;
}
.person-card .person-card__rates {
  display: none;
}
.person-card .person-card__main-info {
  display: flex;
  grid-gap: 1.5rem;
  align-items: flex-start;
}
.person-card .person-card__occupation {
  max-height: 3rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.person-card .person-card__main {
  flex-grow: 1;
}
.person-card .person-card__body {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  flex-grow: 1;
}
.person-card .person-card__indicators {
  display: flex;
  grid-gap: 2rem;
  padding-right: 4.5rem;
}
.person-card .person-card__action {
  display: flex;
  grid-gap: 1rem;
  align-items: baseline;
}
.person-card .peson-rank {
  font-size: 0.875rem;
}
.person-card .person-card__image img {
  width: 6.25rem;
  aspect-ratio: 3/4;
  object-fit: contain;
  border-radius: 0.375rem;
}
.person-card .person-card__name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.person-card .person-card__name a {
  color: var(--mdb-body-color);
  transition: color 0.2s ease-out;
}
.person-card .person-card__name a:hover {
  color: var(--mdb-primary);
  transition: color 0.2s ease-out;
}

.persons-list.persons-list--mini {
  grid-gap: 0;
  --gold-color: #f2e963;
  --gold-color-blend: #fffbbd;
  --silver-color: #adb5bd;
  --silver-color-blend: #e9ecef;
  --bronze-color: #cb8c47;
  --bronze-color-blend: #f6e9ce;
}
.persons-list.persons-list--mini .persons-list__tab-header {
  display: flex;
}
.persons-list.persons-list--mini .person-list__medals {
  display: flex;
}
.persons-list.persons-list--mini .person-card {
  border-left: 0.375rem solid transparent;
}
.persons-list.persons-list--mini .person-card.gold {
  background-color: var(--gold-color-blend);
  border-left-color: var(--gold-color);
}
.persons-list.persons-list--mini .person-card.silver {
  background-color: var(--silver-color-blend);
  border-left-color: var(--silver-color);
}
.persons-list.persons-list--mini .person-card.bronze {
  background-color: var(--bronze-color-blend);
  border-left-color: var(--bronze-color);
}

.persons-list__tab-header {
  display: flex;
  padding: 1rem 1.5rem;
  align-items: center;
  background-color: var(--mdb-gray-100);
}

.persons-list__name {
  flex-grow: 1;
  width: 100%;
}

.persons-list__overall {
  width: 3.5rem;
  flex-shrink: 0;
}

.persons-list__points {
  display: flex;
  align-items: center;
}
.persons-list__points span {
  display: block;
  width: 7rem;
  text-align: center;
  font-size: 0.875rem;
}

.person-card {
  position: relative;
}

.persons__card__actions:hover .form-check-label {
  visibility: visible;
  opacity: 1;
}

.persons__card__actions:hover {
  background-color: #f2f6fb;
  transition: all 0.2s ease-in-out;
}

.persons__card__actions {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out;
}

.person-card__compare-btn {
  padding: 0.375rem 0.5rem;
  border-radius: 0.375rem;
}
.person-card__compare-btn .form-check-input {
  display: none;
}
.person-card__compare-btn
  .form-check.form-check--star
  .form-check-input[checked="true"]
  + i {
  color: var(--mdb-primary);
  font-weight: 900;
  transition: all 0.2s ease-in-out;
}
.person-card__compare-btn .form-check {
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
  cursor: pointer;
}
.person-card__compare-btn .form-check .form-check-input:checked + i {
  color: var(--mdb-primary);
  font-weight: 900;
  transition: all 0.2s ease-in-out;
}
.person-card__compare-btn .form-check .fa-regular,
.person-card__compare-btn .form-check .fa-solid {
  color: var(--mdb-gray-500);
  font-size: 1.125rem;
  line-height: 1;
  width: 1.125rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.person-card__compare-btn .form-check-label {
  visibility: hidden;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.persons-list__tab-header {
  display: none;
}
.persons-list .person-list__medals {
  padding: 0 1rem 1.5rem;
  display: none;
  align-items: center;
  grid-gap: 2rem;
}
.persons-list .person-medal {
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
  font-weight: 600;
}
.persons-list .person-medal__text {
  font-size: 0.875rem;
  line-height: 1;
}
.persons-list .person-medal__shape {
  --fill-color: var(--mdb-gray-100);
  --stroke-color: var(--mdb-gray-300);
  width: 1.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--fill-color);
  border: 1px solid var(--stroke-color);
}
.persons-list .person-medal__shape.gold {
  --fill-color: var(--gold-color-blend);
  --stroke-color: var(--gold-color);
}
.persons-list .person-medal__shape.silver {
  --fill-color: var(--silver-color-blend);
  --stroke-color: var(--silver-color);
}
.persons-list .person-medal__shape.bronze {
  --fill-color: var(--bronze-color-blend);
  --stroke-color: var(--bronze-color);
}

.persons-list.persons-list--grid {
  grid-template-columns: 1fr 1fr;
}
.persons-list.persons-list--grid .persons__card__actions {
  top: 1.5rem;
  left: 1.5rem;
  right: unset;
  bottom: unset;
}

.persons-list.persons-list--mini .person-card {
  padding: 1rem 1.5rem;
  border-radius: 0;
  border-bottom: 1px solid #dee2e6;
}
.persons-list.persons-list--mini .person-card .persons__card__actions {
  position: static;
  order: -1;
}
.persons-list.persons-list--mini .person-card .person-card__compare-btn {
  display: block;
  visibility: visible;
  opacity: 1;
  padding: 0;
}
.persons-list.persons-list--mini .person-card .person-card__compare-btn span {
  display: none;
}
.persons-list.persons-list--mini .person-card__points {
  display: flex;
  flex-grow: 1;
}
.persons-list.persons-list--mini .person-card__points span {
  display: block;
  width: 7rem;
  text-align: center;
}
.persons-list.persons-list--mini .person-card__main {
  display: flex;
}
.persons-list.persons-list--mini .person-card__name {
  flex-grow: 1;
  width: 100%;
}
.persons-list.persons-list--mini .person-card .person-card__indicators {
  display: none;
}
.persons-list.persons-list--mini .person-card .person-card__image {
  display: none;
}
.persons-list.persons-list--mini .person-card .person-card__name {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.persons-list.persons-list--mini .person-card .person-card__occupation {
  display: none;
}
.persons-list.persons-list--mini .person-card .person_save {
  display: none;
}
.persons-list.persons-list--mini .person-card .person_rating {
  width: 2rem;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--mdb-primary);
  background-color: transparent;
}
.persons-list.persons-list--mini .person-card .person-card__main-info {
  align-items: center;
}

.persons-list.persons-list--card .person-card {
  min-height: 13.75rem;
}

.persons-list.persons-list--grid .person-card,
.person-card.person-card--grid {
  position: relative;
  flex-direction: column;
}
.persons-list.persons-list--grid .person-card .person-card__occupation,
.person-card.person-card--grid .person-card__occupation {
  display: block;
  height: auto;
  max-height: unset;
  overflow: auto;
  text-align: center;
}
.persons-list.persons-list--grid .person-card .person-card__indicators,
.person-card.person-card--grid .person-card__indicators {
  display: flex;
  flex-direction: column;
  grid-gap: 0.5rem;
  padding-right: 0;
}
.persons-list.persons-list--grid
  .person-card
  .person-card__indicators
  .person-indicator.age-indicator,
.person-card.person-card--grid
  .person-card__indicators
  .person-indicator.age-indicator {
  display: flex;
}
.persons-list.persons-list--grid .person-card .person-card__indicators > div,
.person-card.person-card--grid .person-card__indicators > div {
  flex-grow: 1;
  width: 100%;
}
.persons-list.persons-list--grid
  .person-card
  .person-card__indicators
  .person-indicator
  .person-indicator__name,
.person-card.person-card--grid
  .person-card__indicators
  .person-indicator
  .person-indicator__name {
  min-width: 25%;
}
.persons-list.persons-list--grid .person-card .person-card__image,
.person-card.person-card--grid .person-card__image {
  text-align: center;
}
.persons-list.persons-list--grid .person-card .person-card__image img,
.person-card.person-card--grid .person-card__image img {
  width: 9.375rem;
  aspect-ratio: 3/4;
}
.persons-list.persons-list--grid .person-card .person-card__name,
.person-card.person-card--grid .person-card__name {
  text-align: center;
}
.persons-list.persons-list--grid .person-card .person-card__action,
.person-card.person-card--grid .person-card__action {
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 2rem;
  right: 2rem;
  grid-gap: 0.5rem;
}
.persons-list.persons-list--grid .person-card .person-card__rates,
.person-card.person-card--grid .person-card__rates {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.person-indicator {
  display: flex;
  grid-gap: 0.5rem;
}
.person-indicator.age-indicator {
  display: none;
}
.person-indicator .person-indicator__name {
  font-weight: 600;
  flex-grow: 0;
  max-width: 5rem;
}
.person-indicator .person-indicator__value {
  color: #495057;
  flex-grow: 1;
}

.custom-check-btn {
  color: var(--mdb-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.custom-check-btn:has(.btn-check:checked) {
  transition: all 0.2s ease-in-out;
}

.custom-check-btn:has(.btn-check:checked) i::before {
  font-weight: 900;
}

.person_rating {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background-color: var(--mdb-primary);
  color: white;
  width: 3rem;
  aspect-ratio: 1;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 50%;
}

.person-list-type .btn-custom {
  background-color: white;
}
.person-list-type .btn-check:checked + .btn-custom {
  background-color: #d6e2ef;
}

.analitic-card-mini {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  box-shadow:
    0 2px 6px -1px rgba(0, 0, 0, 0.07),
    0 6px 18px -1px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.analitic-card-mini:hover {
  box-shadow:
    0 2px 25px -5px rgba(0, 0, 0, 0.07),
    0 25px 21px -5px rgba(0, 0, 0, 0.04) !important;
}

.analitic-card-mini .fw-bold {
  height: 3rem;
}

.map-section {
  background-image: url("@/assets/map-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

.custom-table {
  position: relative;
}

.custom-table .t-obls {
  width: 17rem;
  left: 3rem;
}

.custom-table .t-order,
.custom-table .t-obls,
.custom-table .t-summ {
  position: sticky;
}

.custom-table .t-order {
  width: 3rem;
  left: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.custom-table thead tr:first-child .t-num {
  left: 20rem;
}

.custom-table thead th {
  background-color: var(--mdb-gray-100);
}

.custom-table tbody tr:nth-child(odd) td,
.custom-table tbody tr:nth-child(odd) th {
  background-color: #fafafa;
}

.custom-table tbody .td-order,
.custom-table tbody .td-obls,
.custom-table tbody .td-summ {
  position: sticky;
}

.custom-table tbody .td-order,
.custom-table tbody .td-obls,
.custom-table tbody .td-summ,
.custom-table tfoot .tf-order,
.custom-table tfoot .tf-obls,
.custom-table tfoot .tf-summ {
  position: sticky;
}

.custom-table tbody .td-order,
.custom-table tfoot .tf-order {
  left: 0;
}

.custom-table tbody .td-obls {
  left: 3rem;
}

.custom-table tbody .td-summ,
.custom-table tfoot .tf-summ {
  left: 20rem;
}

.custom-table .t-summ,
.custom-table .td-summ,
.custom-table tfoot th {
  background-color: #d3dfec !important;
}

.custom-table tbody .td-order {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.custom-table tbody tr:nth-child(even) td,
.custom-table tbody tr:nth-child(even) th {
  background-color: white;
}

caption {
  text-align: right;
  font-style: italic;
}

.stepper-wrapper {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.anz-stepper {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  font-size: 1.25rem;
}
.anz-stepper p {
  font-size: 1em;
}

.anz-stepper:last-child .anz-stepper__header .arrow {
  display: none;
}

.anz-stepper__header {
  display: flex;
  grid-gap: 1rem;
  align-items: center;
}

.circled-num {
  width: 2.875rem;
  aspect-ratio: 1;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 50%;
  border: 1px solid var(--mdb-primary);
  color: var(--mdb-primary);
  flex-shrink: 0;
}

.arrow {
  flex-grow: 1;
  width: 100%;
  background-color: var(--mdb-primary);
  color: white;
  height: 1.5em;
  padding-left: 1em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5em;
  vertical-align: baseline;
  margin-right: 1em;
  position: relative;
}

.arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.5em;
  aspect-ratio: 1;
  border-right: 0.75em solid var(--mdb-primary);
  border-bottom: 0.75em solid var(--mdb-primary);
  border-top: 0.75em solid transparent;
  border-left: 0.75em solid transparent;
  right: -0.5em;
  top: 0;
  transform: rotate(-45deg);
}

.anz-stepper__body {
  display: flex;
  flex-direction: column;
  grid-gap: 0.75rem;
  padding-right: 2rem;
}

.stepper-points {
  display: flex;
  flex-direction: column;
}

.stepper-points__item {
  display: flex;
  flex-direction: column;
  grid-gap: 0.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.stepper-points__item::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 0.75em;
  height: 0.75em;
  background-color: rgba(var(--mdb-success-rgb), 0.15);
  border-radius: 50%;
}

.stepper-points__item::after {
  content: "";
  position: absolute;
  left: 0.352em;
  bottom: 0;
  width: 0.125em;
  height: calc(100% - 1.25em);
  background-color: rgba(var(--mdb-success-rgb), 0.15);
}

.stepper-points__item:last-child::after {
  display: none;
}

.stepper-points__head {
  font-size: 0.875em;
  font-weight: 600;
}

.stepper-points__body {
  padding-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.fw-bold {
  font-weight: 600;
}

.custom-table {
  /* width: max-content; */
  table-layout: fixed;
}

.custom-table th {
  vertical-align: middle;
}

.custom-table tbody td:nth-child(3),
.custom-table thead tr:first-child th:nth-child(3) {
  background-color: rgba(var(--mdb-primary-rgb), 0.15);
}

.custom-table thead tr:first-child th:not([scope="col"]) {
  background-color: #dee2e6;
}

.custom-table tbody tr:nth-child(odd) {
  background-color: rgba(var(--mdb-black-rgb), 0.03);
}

.custom-table tbody td {
  font-weight: 400;
}

.t-num {
  width: 9.5rem;
}

.search-section {
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-block {
  width: 40vw;
  padding: 1rem 2rem;
  box-shadow:
    0px 2px 4px rgba(3, 62, 131, 0.15),
    0px 3px 6px rgba(3, 62, 131, 0.05);
  border-radius: 0.375rem;
  background-color: white;
}

.search-input-wrapper {
  display: flex;
  grid-gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar {
  display: flex;
  justify-content: center;
  grid-gap: 1rem;
}

.bg-dark-gray {
  background-color: #212529;
}

.bg-darker-gray {
  background-color: #495057;
}

.bg-mid-gray {
  background-color: #adb5bd;
}

.bg-lighter-gray {
  background-color: #dee2e6;
}

.bg-light-gray {
  background-color: #ffffff;
}

.bg-accent {
  background-color: #edf7f6;
}

.bg-accent-lighter {
  background-color: rgba(237, 247, 246, 0.15);
}

.text-dark-gray {
  color: #212529;
}

.text-darker-gray {
  color: #495057;
}

.text-mid-gray {
  color: #adb5bd;
}

.text-lighter-gray {
  color: #dee2e6;
}

.text-light-gray {
  color: #ffffff;
}

.text-accent {
  color: #edf7f6;
}

.main-section {
  padding: 5rem 0;
}

.anz-card {
  padding: 1.5rem;
  display: flex;
  grid-gap: 1.5rem;
  background-color: white;
  border-radius: 0.375rem;
}

.anz-card__body {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}

.section-title {
  margin-bottom: 2.5rem;
}

.td-num {
  width: 8.75rem;
}

.persons-list {
  display: grid;
  grid-gap: 1rem;
}
.persons-list .persons__card__actions {
  top: 5.5rem;
  left: calc(100% - 4.5rem);
  bottom: unset;
  right: unset;
}

.pagination {
  list-style: none;
  padding: 0;
  display: flex;
  font-weight: 500;
  margin: 0;
}
.pagination .page-item.active .page-link {
  background-color: var(--mdb-primary);
  color: white;
}
.pagination .page-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--mdb-gray);
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}
.pagination .page-link:hover {
  color: var(--mdb-primary);
  background-color: rgba(var(--mdb-primary-rgb), 0.15);
  transition: all 0.2s ease-in-out;
}

.candidates-footer {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-top: 2rem;
  background-color: white;
  border-radius: 0.375rem;
}

.breadcrumbs {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 600;
}

.breadcrumbs-item:not(:first-child) {
  padding-left: 0.5rem;
}

.breadcrumbs-item:not(:first-child)::before {
  content: "/";
  padding-right: 0.5rem;
}

.breadcrumbs-item.active {
  color: #adb5bd;
}

.filter-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.375rem;
  background-color: white;
  margin-bottom: 2rem;
}

.filter-card .filter-card__header {
  display: flex;
  padding: 1rem;
  flex-grow: 1;
  align-items: center;
}

.filter-card .filter-card__body {
  padding: 1rem;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
  border-top: 1px solid #dee2e6;
}

.filter-card .filter-card__header .icon {
  transition: transform 0.2s ease-in-out;
}

.filter-card.filter-card--collapsed .filter-card__body {
  height: 0;
  display: none;
}

.filter-card.filter-card--collapsed .filter-card__header .icon {
  transform: rotate(180deg);
}

.filter-list {
  padding: 0;
  list-style: none;
  margin-bottom: 0.5rem;
}

.filter-list .filter-list__item::before {
  content: ">";
  padding-right: 0.25rem;
}

.filter-list .filter-list__item.active {
  font-weight: 600;
  color: var(--mdb-primary);
}

.mini-navbar {
  display: flex;
  padding: 1rem 1.5rem 0;
  background-color: white;
  border-radius: 0.375rem;
  font-weight: 500;
}
.mini-navbar .dropdown .nav-link::after {
  display: none;
}
.mini-navbar button {
  border: none;
}
.mini-navbar .nav-link {
  display: flex;
  flex-direction: column;
  grid-gap: 0.75rem;
  padding: 0.75rem 1.25rem 0;
  align-items: center;
  color: #495057;
  transition: all 0.1s ease-in-out;
}
.mini-navbar .nav-link::before {
  content: "";
  order: 2;
  height: 0.25rem;
  background-color: transparent;
  width: calc(100% - 12px);
  border-radius: 0.25rem 0.25rem 0 0;
  transition: all 0.1s ease-in-out;
}
.mini-navbar .nav-link:hover {
  color: var(--mdb-body-color);
  transition: all 0.1s ease-in-out;
}
.mini-navbar .nav-link:hover::before {
  background-color: var(--mdb-body-color);
  transition: all 0.1s ease-in-out;
}
.mini-navbar .nav-link.active {
  color: var(--mdb-primary);
}
.mini-navbar .nav-link.active::before {
  background-color: var(--mdb-primary);
}

.person-info-card:has(.mini-navbar) .mini-navbar {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--mdb-gray-200);
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  border-radius: 0.375rem 0.375rem 0 0;
}

.mini-navbar button {
  border: none;
  background-color: transparent;
  font-weight: inherit;
}

.person-info-card th {
  vertical-align: middle;
}

.person-info-card td,
.person-info-card th {
  padding: 0.5rem;
}

.custom-navbar {
  padding: 2rem 0;
}

.mini-person-card {
  display: flex;
  grid-gap: 1rem;
  padding: 1rem;
}
.mini-person-card__name a {
  color: var(--mdb-body-color);
}
.mini-person-card__name a:hover {
  color: var(--mdb-primary);
}
.mini-person-card__img {
  width: 4.5rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.375rem;
  flex-shrink: 0;
}
.mini-person-card__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
}

.testimonial {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
.testimonial__header {
  display: flex;
  grid-gap: 1rem;
}
.testimonial__header img {
  width: 4rem;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0.375rem;
}

.more-persons-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.person-measures {
  display: flex;
  grid-gap: 1rem;
  justify-content: space-between;
}

.person-progress-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.person-progress-item__progress {
  height: 0.5rem;
  border-radius: 0.5rem;
}

.person-details {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
  padding: 1.5rem;
  background-color: white;
}

.person-details-section {
  background-color: white;
  border-radius: 0.375rem;
}

.person-social-accs {
  display: flex;
  grid-gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.social-btn {
  display: flex;
  line-height: 1;
  font-size: 1.25rem;
  width: 2.75rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #dee2e6;
}
.social-btn:hover {
  background-color: rgba(222, 226, 230, 0.25);
}
.social-btn i {
  color: var(--mdb-body-color);
}

.person-info-card {
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.375rem;
}

.person-mental-advice {
  padding: 1.5rem;
  height: 100%;
  border-radius: 0.375rem;
}

.dark-mode .person-info-card {
  background-color: black;
}

.personal-details {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}

.spec {
  display: flex;
  flex-direction: column;
  grid-gap: 0.25rem;
}
.spec * {
  margin: 0;
}
.spec__head {
  color: var(--mdb-primary);
}

.bg-main {
  background-color: #fafafa;
}

#maptext {
  font-weight: 400;
  font-size: 1rem;
  text-shadow:
    -2px 0 0 #000,
    2px 0 0 #000,
    0 2px 0 #000,
    0 -2px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.uzb-map path,
.uzb-map circle {
  cursor: pointer;
  fill: #4567bb;
}
.uzb-map path:hover,
.uzb-map circle:hover {
  fill: #193988;
}
.uzb-map path.region-active,
.uzb-map circle.region-active {
  fill: #1976d2;
}

.custom-variwide .highcharts-variwide-series .highcharts-point {
  stroke: #ffffff !important;
}

.bg-custom-danger {
  background-color: #ff5252;
}

.bg-custom-info {
  background-color: #448aff;
}

.bg-custom-warning {
  background-color: #ffab40;
}

.bg-custom-success {
  background-color: #69f0ae;
}

.c-portfolio {
  width: 100%;
  background-color: white;
}
.c-portfolio__head-text {
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  background-color: rgba(var(--mdb-primary-rgb), 0.15);
}
.c-portfolio__head-region {
  text-transform: uppercase;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.c-portfolio__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

.portfolio-table {
  --table-theme-color: 64, 64, 64;
  width: 100%;
  font-size: 0.875rem;
}
.portfolio-table caption {
  caption-side: top;
  text-align: center;
  font-style: normal;
  padding: 0.5rem 0;
  color: white;
  background-color: rgba(var(--table-theme-color), 1);
}
.portfolio-table td {
  padding: 0.5rem 0.75rem;
}
.portfolio-table td:has(img) {
  padding: 0;
}
.portfolio-table td img {
  width: 100%;
  height: 100%;
}
.portfolio-table td[scope="row"] {
  font-weight: 500;
  background-color: rgba(var(--table-theme-color), 0.15);
}
.portfolio-table .table-subsetion {
  font-weight: 500;
  color: rgb(var(--table-theme-color));
  text-align: center;
  background-color: rgba(var(--table-theme-color), 0.25);
}
.portfolio-table .table-setion {
  font-weight: 500;
  color: white;
  text-align: center;
  background-color: rgba(var(--table-theme-color), 0.75);
}
.portfolio-table .table-high-score {
  background-color: rgba(var(--table-theme-color), 0.35) !important;
}

.custom-border {
  border: 2px solid var(--mdb-dark) !important;
}

.portfolio-table td,
.portfolio-table th {
  border: 1px solid var(--mdb-gray-300);
}

:root {
  --background-color-dark-purple: #d1c4e9;
  --background-color-light-purple: rgb(237, 231, 246);
  --background-color-dark-blue: rgb(187, 222, 251);
  --background-color-light-blue: rgb(227, 242, 253);
  --background-color-dark-cyan: rgb(179, 229, 252);
  --background-color-light-cyan: rgb(225, 245, 254);
}

.dark-mode {
  --mdb-primary: #5d6fcf;
  --background-color: #121e64;
  --mdb-body-color: #a2ade8;
  --mdb-body-bg: #121e64;
  --mdb-primary-rgb: white;
  --mdb-gray-100: #404040;
  --background-color-dark-purple: rgb(166 134 227);
  --background-color-light-purple: rgb(203 178 241);
  --background-color-dark-blue: rgb(77 169 237);
  --background-color-light-blue: rgb(138 186 221);
  --background-color-dark-cyan: rgb(60 194 255);
  --background-color-light-cyan: rgb(120 213 255);
}

body.dark-mode {
  color: white;
}

body.dark-mode .analitic-card-mini {
  background: linear-gradient(
    98.89deg,
    #32419b -13.21%,
    rgba(50, 65, 155, 0) 94.15%
  );
  border: 1.35px solid #a2ade8;
  color: var(--mdb-primary-rgb);
}

body.dark-mode caption {
  color: var(--mdb-body-color);
}

body.dark-mode .bg-lighter-gray {
  background-color: #4f4f4f;
}

body.dark-mode .btn-light {
  color: black;
  background-color: #4f4f4f;
}

body.dark-mode table {
  color: white;
}

body.dark-mode .custom-table .t-summ,
body.dark-mode .custom-table .td-summ,
body.dark-mode .custom-table tfoot th {
  background-color: #08233e !important;
}

body.dark-mode a {
  color: #6cb0ff;
}

body.dark-mode .custom-table tbody tr:nth-child(odd) td,
body.dark-mode .custom-table tbody tr:nth-child(odd) th {
  background-color: #141414;
}

body.dark-mode .custom-table tbody tr:nth-child(even) td,
body.dark-mode .custom-table tbody tr:nth-child(even) th {
  background-color: #000000;
}

body.dark-mode .search-block {
  background-color: var(--background-color);
}

body.dark-mode .age {
  background-color: #9399bb !important;
}

body.dark-mode .age-sub {
  background-color: #8588a1 !important;
}

body.dark-mode .gender {
  background-color: #9399bb !important;
}

body.dark-mode .gender-sub {
  background-color: #777b97 !important;
}

body.dark-mode .activity {
  background-color: #9399bb !important;
}

body.dark-mode .activity-sub {
  background-color: #777b97 !important;
}

body.dark-mode .filter-card {
  background: linear-gradient(
    98.89deg,
    #32419b -13.21%,
    rgba(50, 65, 155, 0) 94.15%
  );
  border: 1.35px solid #a2ade8;
}

body.dark-mode .person-card {
  background-color: var(--background-color);
  border: 1.35px solid #a2ade8;
}

body.dark-mode .bg-main {
  background-color: var(--background-color);
}

body.dark-mode .persons-list.persons-list--mini .person-card.gold {
  background-color: var(--background-color);
}

body.dark-mode .btn {
  color: #6cb0ff;
}

body.dark-mode .person-details {
  background-color: var(--background-color);
  border: 1.35px solid #a2ade8;
}

body.dark-mode .person-details-button-list {
  background-color: var(--background-color);
  border: 1.35px solid #a2ade8;
}

body.dark-mode .mini-navbar {
  background-color: var(--background-color);
  border: 1.35px solid #a2ade8;
}

body.dark-mode .bg-white {
  background-color: var(--background-color) !important;
}

body.dark-mode .highcharts-background {
  fill: transparent;
}

body.dark-mode .highcharts-axis-title {
  fill: white !important;
  color: white !important;
}

body.dark-mode .highcharts-title {
  fill: white !important;
  color: white !important;
}

body.dark-mode .highcharts-xaxis-labels * {
  fill: white !important;
  color: white !important;
}

body.dark-mode .form-select {
  background-color: var(--background-color) !important;
  color: white;
}

body.dark-mode .section-card {
  background-color: var(--background-color) !important;
}

body.dark-mode td {
  color: white;
}

body.dark-mode .ct-person__name {
  color: white;
}

body.dark-mode .person-indicator__value {
  color: white;
}

body.dark-mode .mini-navbar .nav-link {
  color: white;
}

body.dark-mode .bg-light {
  background-color: var(--background-color) !important;
}

body.dark-mode .form-label {
  color: white !important;
}

body.dark-mode .form-control {
  color: white !important;
}

body.dark-mode .text-darker-gray {
  color: white;
}

body.dark-mode .persons__card__actions:hover {
  background-color: #273685;
  transition: all 0.2s ease-in-out;
}

body.dark-mode body {
  color: white;
}

body.dark-mode .persons-list.persons-list--mini .person-card.silver {
  background-color: transparent;
}

body.dark-mode .persons-list.persons-list--mini .person-card.bronze {
  background-color: transparent;
}

body.dark-mode .saved-wrapper--open {
  background-color: black;
}

body.dark-mode .saved-person-card {
  background-color: var(--background-color);
}

body.dark-mode .modal-header {
  background-color: var(--background-color) !important;
}

body.dark-mode .modal-body {
  background-color: var(--background-color) !important;
}

@media screen and (max-width: 576px) {
  .header-hero {
    height: 100vh;
  }
  .header-hero .container {
    height: 100%;
  }
  .header-hero .mb-6 {
    padding-bottom: 6rem;
  }
  .search-section {
    height: 100%;
    padding: 0;
  }
  .search-block {
    width: 100%;
  }
  .custom-table .t-order,
  .custom-table .t-summ {
    position: static;
  }
  .custom-table tbody .td-order,
  .custom-table tbody .td-summ,
  .custom-table tfoot .tf-summ {
    position: static;
  }
  .custom-table .t-obls,
  .custom-table tbody .td-obls,
  .custom-table tfoot .tf-order {
    width: 10rem;
    left: -1px;
  }
  .custom-table tfoot .tf-order {
    width: 10rem;
  }
  .custom-table .t-num {
    width: 5rem;
  }
}
/* component style */
.vue-slider-disabled .vue-slider-rail {
  background-color: #ccc;
}
.vue-slider-disabled .vue-slider-dot-handle {
  background-color: #666;
}
.vue-slider-disabled .vue-slider-process {
  background-color: #666;
}
.vue-slider-disabled .vue-slider-mark-step {
  background-color: #666;
}
.vue-slider-disabled .vue-slider-mark-step-active {
  background-color: #ccc;
}

/* rail style */
.vue-slider-rail {
  background-color: #dae6f3;
  border-radius: 15px;
}

/* process style */
.vue-slider-process {
  background-color: var(--mdb-primary);
  border-radius: 15px;
}

/* mark style */
.vue-slider-mark {
  z-index: 4;
}
.vue-slider-mark-step {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--mdb-primary);
}
.vue-slider-mark-step-active {
  background-color: #dae6f3;
}

.vue-slider-mark-label {
  font-size: 14px;
  white-space: nowrap;
}
/* dot style */
.vue-slider-dot-handle {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--mdb-primary);
  box-sizing: border-box;
}
.vue-slider-dot-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200%;
  height: 200%;
  background-color: rgba(var(--mdb-primary), 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: transform 0.2s;
}
.vue-slider-dot-handle-focus::after {
  transform: translate(-50%, -50%) scale(1);
}

.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  background-color: #666 !important;
}

.vue-slider-dot-tooltip {
  visibility: visible;
}
.vue-slider-dot-tooltip-show .vue-slider-dot-tooltip-inner {
  opacity: 1;
}
.vue-slider-dot-tooltip-show .vue-slider-dot-tooltip-inner-top {
  transform: rotateZ(-45deg);
}
.vue-slider-dot-tooltip-show .vue-slider-dot-tooltip-inner-bottom {
  transform: rotateZ(135deg);
}
.vue-slider-dot-tooltip-show .vue-slider-dot-tooltip-inner-left {
  transform: rotateZ(-135deg);
}
.vue-slider-dot-tooltip-show .vue-slider-dot-tooltip-inner-right {
  transform: rotateZ(45deg);
}

.vue-slider-dot-tooltip-inner {
  border-radius: 50% 50% 50% 0px;
  background-color: var(--mdb-primary);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.2s linear;
}
.vue-slider-dot-tooltip-inner-top {
  transform: translate(0, 50%) scale(0.01) rotate(-45deg);
}
.vue-slider-dot-tooltip-inner-bottom {
  transform: translate(0, -50%) scale(0.01) rotateZ(135deg);
}
.vue-slider-dot-tooltip-inner-left {
  transform: translate(50%, 0) scale(0.01) rotateZ(-135deg);
}
.vue-slider-dot-tooltip-inner-right {
  transform: translate(-50%, 0) scale(0.01) rotateZ(45deg);
}
.vue-slider-dot-tooltip-text {
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}

.vue-slider-dot-tooltip-inner-top .vue-slider-dot-tooltip-text {
  transform: rotateZ(45deg);
}
.vue-slider-dot-tooltip-inner-bottom .vue-slider-dot-tooltip-text {
  transform: rotateZ(-135deg);
}
.vue-slider-dot-tooltip-inner-left .vue-slider-dot-tooltip-text {
  transform: rotateZ(135deg);
}
.vue-slider-dot-tooltip-inner-right .vue-slider-dot-tooltip-text {
  transform: rotateZ(-45deg);
}

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