@charset "UTF-8";

.cards.img > * {
  width: 236px;
  height: 148px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.cards.img > * img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cards.infrostruction-tiny > * {
  width: 236px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 1.2px 10px 0 rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0 1.2px 10px 0 rgba(0, 0, 0, 0.0784313725);
}

.cards.infrostruction-tiny > * > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 12px 12px;
  gap: 4px;
}

.cards.infrostruction-tiny > * > div > span {
  font-weight: 500;
  line-height: 125%;
}

.cards.infrostruction-tiny > * > div > p {
  color: var(--text-secondary);
  font-size: 0.875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  line-height: 143%;
}

.cards.infrostruction-tiny > * > div > p > svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 14px;
          flex: 0 1 14px;
}

.cards.infrostruction-tiny > * img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.cards.review {
  display: -ms-grid;
  display: grid;
}

.cards.review > article {
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(98, 108, 119, 0.1019607843);
  padding: 20px 0;
  border-radius: unset;
  line-height: 22px;
}

.cards.review > article:first-child {
  padding-top: 0;
}

.cards.review > article > .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.cards.review > article > .head > h3 {
  font-weight: 500;
  font-size: 1.125em;
  margin-bottom: 0;
}

.cards.review > article > .head > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1px 5.5px;
  background-color: var(--success);
  font-weight: 500;
  font-size: 0.938em;
  border-radius: 7px;
  color: white;
}

.cards.review > article > .info {
  display: -ms-grid;
  display: grid;
  gap: 22px;
  color: var(--text-secondary);
  font-size: 0.938em;
  margin-bottom: 12px;
  -ms-grid-columns: auto 125px;
  grid-template-columns: auto 125px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cards.review > article > .info > p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.cards.review > article > .info > span {
  position: relative;
}

.cards.review > article > .info > span:before {
  position: absolute;
  content: "•";
  left: -13.3px;
}

.cards.review > article > .body {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  line-height: 24px;
}

.cards.review > article > .body > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.cards.review > article > .body > * > svg {
  margin-top: 3px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
}

.cards.review > article > .body > * .text-ellipsis {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  --row: 3;
}

.cards.review > article > .body > * .text-ellipsis ~ button {
  display: block;
  border: unset;
  background-color: transparent;
  color: var(--link);
  width: 100%;
  height: 20px;
  text-align: left;
  margin-left: 30px;
  cursor: pointer;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.cards.review > article:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}

.cards.review ~ a.btn {
  display: inline-block;
  background-color: #F3F3F6;
  color: black;
  padding: 12px 16px;
  font-size: 1em;
  font-weight: 400;
  margin-top: 5px;
  line-height: 24px;
}

.guides-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 5px !important;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.guides-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding: 15px 0;
  position: relative;
  margin: 0;
}

.guides-list > div > h3 > a {
  font-weight: 400;
  font-size: 18px;
  color: #0070f0;
  margin: 0;
}

.guides-list > div > p {
  font-weight: 400;
  font-size: 16px;
  color: #626c77;
  line-height: 150%;
}

.guides-list > div::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(98, 108, 119, 0.1);
}

.guides-list > div:nth-last-child(-n+2)::after,
.guides-list > div:last-child::after {
  display: none;
}

.links-group {
  position: relative;
}

.links-group > ul {
  margin: 0 0 40px 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style-type: none;
  max-height: 42px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.links-group > ul.on {
  max-height: unset;
}

.links-group > ul > li > a {
  padding: 9px 8px;
  display: block;
  background-color: #f6f6f7;
  color: #0d0d0d;
  border-radius: 6px;
}

.links-group > ul ~ button {
  position: absolute;
  bottom: 0;
  right: 15px;
  padding: 21px 0 21px 14px;
  width: 200px;
  color: #4285f4;
  text-align: left;
  border: none;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5019257703)), color-stop(4%, rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5019257703) 0%, rgb(255, 255, 255) 4%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.links-group > ul ~ button.on {
  opacity: 1;
  pointer-events: auto;
}

.links-group > ul ~ button:hover {
  color: var(--darken-link);
}

.cards.infrostruction article {
  position: relative;
  width: 100%;
  min-width: 310px;
  border-radius: 16px;
  -webkit-box-shadow: 0 1.2px 10px 0 rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0 1.2px 10px 0 rgba(0, 0, 0, 0.0784313725);
  opacity: 0;
  -webkit-animation: fadeInArticle 0.5s ease-in-out;
          animation: fadeInArticle 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInArticle {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInArticle {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cards.infrostruction article > div:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 12px;
}

.cards.infrostruction article > div:last-of-type > h3 {
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 6px;
  font-size: 16px;
}

.cards.infrostruction article > div:last-of-type > address,
.cards.infrostruction article > div:last-of-type > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.cards.infrostruction article > div:last-of-type address {
  color: var(--text-secondary);
  font-size: 0.875em;
  font-style: normal;
}

.cards.infrostruction article > div:last-of-type address:last-of-type {
  margin-bottom: 0;
}

.cards.infrostruction article > div:last-of-type address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cards.infrostruction article > div:last-of-type address > svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
}

.cards.infrostruction article picture > img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 16px 16px 0 0;
}

.cards.infrostruction article .stat {
  font-size: 13px;
  text-wrap: nowrap;
}

.cards.infrostruction article .stat > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cards.infrostruction article .stat > .review-short::after {
  content: "•";
  height: 4px;
  width: 4px;
  color: currentColor;
  margin: 0 7px;
  line-height: 50%;
}

.cards.infrostruction article .stat .review-short {
  margin: 0;
}

.hidden-text > div {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--text-primary);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
}

.hidden-text > div.hide {
  --row: 3;
  display: -webkit-box !important;
  -webkit-line-clamp: var(--row);
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsed.hidden-text > div.hide {
  --row: 2;
  max-height: 100px;
}

.ellipsed.hidden-text > div {
  margin: 12px 0;
}

.plan-text.hidden-text > div.hide {
  --row: 11;
  max-height: 236px;
}

.plan-text.hidden-text > div {
  margin: 12px 0;
}

article > h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

.cards.blockInfoNavigation > article:hover {
  background-color: hsl(from #F3F3F6 h s calc(l - 5));
}

.tabLinks {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding: 0;
}

.tabLinks > li {
  white-space: nowrap;
  color: #333;
  font-size: 14px;
  border-bottom: 3px solid transparent;
  position: relative;
}

.tabLinks > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #ffcc00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tabLinks > li:hover {
  border-bottom: none;
}

.tabLinks > li:hover a {
  font-weight: 700;
}

.tabLinks > li:hover::before {
  width: 100%;
}

.tabLinks > li a {
  display: block;
  padding: 15px 20px;
  color: #0d0d0d;
  font-weight: 400;
  font-size: 15px;
}

.grid.cards.hotels,
.grid.cards.infrostruction {
  grid-template-columns: repeat(auto-fill, minmax(318px, -webkit-max-content));
  grid-template-columns: repeat(auto-fill, minmax(318px, max-content));
  gap: 12px;
}

.grid.cards.hotels > *,
.grid.cards.infrostruction > * {
  margin: 0;
}

.grid.cards.infrostruction-tiny {
  grid-template-columns: repeat(auto-fill, minmax(236px, -webkit-max-content));
  grid-template-columns: repeat(auto-fill, minmax(236px, max-content));
  gap: 12px;
}

.grid.cards.infrostruction-tiny > * {
  margin: 0;
}

.cards.hotels .swiper-slide {
  height: auto;
}

div[data-component=map] {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div[data-component=map] > button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: unset;
  padding: 10px;
  background-color: #FFFFFF;
  border-radius: 10px;
  -webkit-box-shadow: 0 1.2px 10px 0 rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0 1.2px 10px 0 rgba(0, 0, 0, 0.0784313725);
  cursor: pointer;
}

.banner.any-case {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 353px;
  grid-template-columns: auto 353px;
  padding: 15px 40px;
  background: #F9F9FB;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner.any-case h2 {
  line-height: 28px;
  font-size: 24px;
  margin-bottom: 12px !important;
}

.banner.any-case p {
  line-height: 24px;
  color: var(--text-secondary);
}

.banner.any-case button {
  border-radius: 10px;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  padding: 12px 16px;
  margin-top: 16px;
}

footer.footer {
  justify-self: flex-end;
  margin-top: auto;
  position: relative;
  min-height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f6f6f6;
  padding-top: 1rem;
}

footer.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer.footer .footer-links .footer-links__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

footer.footer .footer-links .footer-links__col > a {
  color: var(--text-primary);
  line-height: 1.8rem;
}

footer.footer .footer-links .footer-links__col > a:hover {
  color: var(--text-primary-hover);
}

footer.footer .footer-links .footer-links__col:not(:last-child) {
  margin-right: 40px;
}

footer.footer .footer-links .footer-links__col:not(:first-child):not(:last-child) {
  margin-right: auto;
}

footer.footer .footer-links .footer-links__col .title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

footer.footer .action .action-btn {
  padding: 0.5rem 1.5rem;
  background-color: var(--red);
  color: #fff !important;
  border-radius: 0.25rem;
  font-weight: 500;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

footer.footer .action .action-btn:hover {
  background-color: var(--red-hover);
}

footer.footer .social {
  text-align: center;
}

footer.footer .social .social__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer.footer .social .social__items .social__item:not(:last-child) {
  margin-right: 5px;
}

footer.footer .social .social__items .social__item {
  position: relative;
}

footer.footer .social .social__items .social__item .social-icon {
  width: 1.75rem;
  height: 1.75rem;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

footer.footer .social .social__items .social__item .stretched-link:hover ~ .social-icon {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

footer.footer .company {
  text-align: center;
  margin-top: auto;
  padding: 1rem 0;
  z-index: 10;
  background-color: var(--red);
}

footer.footer .company__link {
  padding: 9px 18px;
  background-color: var(--red);
  border-radius: 20px;
  color: #fafafa;
}

footer.footer .company__link:hover {
  color: #adadad;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 400;
  display: none;
}

.modal.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 19, 29, 0.6);
  z-index: 1;
}

.modal .modal-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  z-index: 2;
  background: #fff;
  width: 100dvw;
  height: 100dvh;
}

.modal .modal-content > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal .modal-content > header .modal-header__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  text-align: center;
  margin: 0 auto;
}

.modal .modal-content > header .modal-close {
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.modal .modal-content > main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
  min-height: 300px;
}

.modal .modal-content > footer {
  position: sticky;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  min-height: 56px;
  padding: 0.625rem 1.25rem;
  width: 100%;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal.loading main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal > header > span {
  text-align: left;
}

.month > ul > li:first-child:after {
  bottom: -9px;
}

.filters {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filters .toggle {
  position: relative;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.filters .toggle input {
  position: absolute;
  opacity: 0;
}

.filters .toggle input:checked ~ span:last-of-type {
  background: var(--primary);
}

.filters .toggle input:checked ~ span:last-of-type::before {
  -webkit-transform: translate(18px, -50%);
      -ms-transform: translate(18px, -50%);
          transform: translate(18px, -50%);
}

.filters .toggle > span:first-of-type {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.filters .toggle > span:last-of-type {
  position: relative;
  width: 40px;
  height: 22px;
  background: #eaeaee;
  border-radius: 61px;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.filters .toggle > span:last-of-type::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white);
  -webkit-box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.filters .toggle::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary);
}

.filters div[data-group] {
  margin-top: 14px;
}

.filters div[data-group] > h2 {
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #0d0d0d;
}

.filters div[data-group] .items,
.filters div[data-group] .hidden-items {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.filters div[data-group] .hidden-items {
  max-height: 0;
  margin-bottom: 8px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  margin-top: 8px;
}

.filters div[data-group] > button {
  font-size: 14px;
}

.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 1.25px solid #000;
  border-radius: 3px;
  background: #fff;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox input:checked ~ .checkmark {
  background-color: #ffcb11;
  border-color: #ffcb11;
}

.checkbox input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2.5px 2.5px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox input:disabled ~ .checkmark {
  background-color: #f0f0f0;
  border-color: #ccc;
  cursor: not-allowed;
}

.checkbox input:disabled:checked ~ .checkmark {
  background-color: #ffe580;
  border-color: #ffd700;
}

.checkbox .label {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}

[data-modal=mapCatalog] main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  overflow: hidden !important;
}

[data-modal=mapCatalog] main .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-modal=mapCatalog] main .filters-container {
  position: relative;
  width: 274px;
  height: calc(100dvh - 57px);
  overflow-y: hidden;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

[data-modal=mapCatalog] main .filters-container form {
  padding-bottom: 100px;
  overflow-y: auto;
  padding: 14px 14px 160px 14px;
}

[data-modal=mapCatalog] main .filters-container .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 16px;
  background-color: white;
}

[data-modal=mapCatalog] main .filters-container .footer > button {
  font-weight: 400;
  font-size: 1rem;
  padding: 0 24px;
  width: 100%;
}

.notFound {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "icon title" "icon description";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 80px 45px auto;
  grid-template-columns: 80px auto;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  margin: 40px 0;
  padding: 30px 10px;
  border-bottom: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
}

.notFound > svg {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: icon;
}

.notFound > div:first-of-type {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-weight: 500;
  font-size: 20px;
}

.notFound > div:nth-of-type(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: description;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 768px) {
  .guides-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .guides-list > div:first-child {
    padding-top: 0;
  }

  .guides-list > div:not(:first-child) {
    padding-top: 24px;
  }

  .guides-list > div:not(:last-child)::after {
    display: block;
  }

  .guides-list > div:last-child {
    padding-bottom: 0;
  }
}