@charset "UTF-8";

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cards.img > * {
  width: 236px;
  height: 148px;
  border-radius: var(--radius-2xl);
  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: var(--radius-2xl);
  overflow: hidden;
  -webkit-box-shadow: var(--shadowBlock);
          box-shadow: var(--shadowBlock);
}

.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  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.infrostruction article {
  position: relative;
  width: 100%;
  min-width: 310px;
  border-radius: var(--radius-2xl);
  -webkit-box-shadow: var(--shadowBlock);
          box-shadow: var(--shadowBlock);
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-in-out;
          animation: fadeIn 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.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: var(--fs-base);
}

.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  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: var(--radius-2xl) 16px 0 0;
}

.cards.infrostruction article .stat {
  font-size: 13px;
  text-wrap: nowrap;
}

.cards.infrostruction article .stat > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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;
}

.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1px 5.5px;
  background-color: var(--success);
  font-weight: 500;
  font-size: 0.938em;
  border-radius: var(--radius-s);
  color: var(--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 {
  overflow: hidden;
  text-overflow: ellipsis;
  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: var(--btn-bg-secondary);
  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;
  -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: var(--fs-medium);
  color: var(--link);
  margin: 0;
}

.guides-list > div > p {
  font-weight: 400;
  font-size: var(--fs-base);
  color: var(--text-secondary);
  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;
}

.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: var(--radius-3xl);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner.any-case h2 {
  line-height: 28px;
  font-size: var(--fs-xl);
  margin-bottom: 12px;
}

.banner.any-case p {
  line-height: 24px;
  color: var(--text-secondary);
}

.banner.any-case button {
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  line-height: 24px;
  font-weight: 400;
  padding: 12px 16px;
  margin-top: 16px;
}

.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: var(--fs-small);
  border-bottom: 3px solid transparent;
  position: relative;
}

.tabLinks > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.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: var(--text-primary);
  font-weight: 400;
  font-size: 15px;
  -webkit-transition: font-weight 0.3s ease;
  transition: font-weight 0.3s ease;
}

.action-btns {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  left: calc(100vw - 90px);
  bottom: 50px;
  z-index: 1001;
}

.action-btns.upper {
  bottom: 155px;
}

.action-btns > 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;
  width: 46px;
  height: 46px;
  border: 0;
  outline: none;
  background-color: #1d2023;
  border-radius: var(--radius-full);
  opacity: 0.8;
  -webkit-box-shadow: var(--shadowBlock);
          box-shadow: var(--shadowBlock);
  color: var(--white);
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  cursor: pointer;
}

.action-btns > button.hide {
  opacity: 0;
  visibility: hidden;
}

.action-btns > button:hover {
  color: #000;
  opacity: 1;
}

.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: var(--btn-bg-secondary);
  color: var(--text-primary);
  border-radius: var(--radius-s);
}

.links-group > ul ~ button {
  border: none;
  background: var(--white);
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 15px;
  padding: 21px 0 21px 14px;
  width: 200px;
  color: var(--link);
  text-align: left;
  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="var(--white)", endColorstr="var(--white)", GradientType=1);
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.links-group > ul ~ button.on {
  opacity: 1;
  pointer-events: auto;
}

.links-group > ul ~ button:hover {
  color: var(--darken-link);
}

.hidden-text > div {
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 22.4px;
  color: var(--text-primary);
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease;
  transition: max-height 0.2s ease;
}

.hidden-text > div.hide {
  --row: 3;
  display: -webkit-box;
  -webkit-line-clamp: var(--row);
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#cookie-banner {
  border-radius: var(--radius-xs);
  min-height: 76px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.84);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  padding: 15px 35px 10px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

#cookie-banner > button:nth-of-type(1) {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--white);
  padding: 0;
}

#cookie-banner > p {
  font-weight: 400;
  font-size: var(--fs-small);
  line-height: 140%;
  color: var(--white);
  margin: 0 0 7px 0;
  text-align: center;
}

#cookie-banner > p > a {
  color: #007aff;
}

#cookie-banner > .accept {
  border: none;
  background: var(--primary);
  cursor: pointer;
  border-radius: var(--radius-xs);
  width: 94px;
  height: 35px;
  font-weight: 400;
  font-size: var(--fs-base);
  color: #000;
  white-space: nowrap;
  margin-top: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.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: var(--white);
  width: 100dvw;
  height: 100dvh;
}

.modal .modal-content > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  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: none;
  cursor: pointer;
  position: relative;
}

.modal .modal-content > header .modal-close:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.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: var(--white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal.loading main {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 8px;
  cursor: pointer;
}

.filters .toggle > svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.filters .toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.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: var(--fs-base);
  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-color 0.3s ease;
  transition: background-color 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: var(--shadowBlock);
          box-shadow: var(--shadowBlock);
  border-radius: var(--radius-full);
  -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: var(--fs-base);
  line-height: 125%;
  color: var(--text-primary);
}

.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: var(--fs-small);
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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: var(--white);
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  z-index: 1;
  cursor: pointer;
}

.checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.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: var(--alert-neutral);
  border-color: #ccc;
  cursor: not-allowed;
}

.checkbox input:disabled:checked ~ .checkmark {
  background-color: #ffe580;
  border-color: #ffd700;
}

.checkbox .label {
  font-size: var(--fs-small);
  line-height: 1.4;
  color: #000;
}

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: var(--btn-bg-secondary);
  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:not(.action-btn) {
  color: var(--text-primary);
  line-height: 1.8rem;
}

footer.footer .footer-links .footer-links__col > a:not(.action-btn):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(--error);
  color: #fff;
  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(--error-darken);
}

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(--error);
}

footer.footer .company__link {
  padding: 9px 18px;
  background-color: var(--error);
  border-radius: var(--radius-3xl);
  color: #fafafa;
}

footer.footer .company__link:hover {
  color: #adadad;
}

.ellipsed.hidden-text > div.hide {
  --row: 2;
  max-height: 100px;
}

.ellipsed.hidden-text > div {
  margin: 12px 0;
}

.grid.cards.hotels {
  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.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 > * {
  margin: 0;
}

div[data-component=map] {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  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;
}

div[data-component=map] > button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: unset;
  padding: 10px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadowBtn);
          box-shadow: var(--shadowBtn);
  cursor: pointer;
}

[data-modal=mapCatalog] .modal-content main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  overflow: hidden;
}

[data-modal=mapCatalog] .modal-content main .filters-container {
  position: relative;
  min-width: 274px;
  height: calc(100dvh - 57px);
}

[data-modal=mapCatalog] .modal-content main .filters-container form {
  padding: 1rem;
  height: calc(100% - 77px);
}

[data-modal=mapCatalog] .modal-content main .filters-container > button {
  margin: 10px 10px 20px 10px;
  white-space: nowrap;
}

[data-modal=mapCatalog] .modal-content main .filters-container .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 16px;
  background-color: white;
}

[data-modal=mapCatalog] .modal-content main .filters-container .footer > button {
  font-weight: 400;
  font-size: 1rem;
  padding: 0 24px;
  width: 100%;
}

@media (min-width: 769px) {
  #cookie-banner {
    position: fixed;
    width: 400px;
    bottom: 27px;
    right: 22px;
  }
}

@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;
  }

  .cookie-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }

  #cookie-banner {
    width: 240px;
    position: relative;
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  #cookie-banner.on {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }

  #cookie-banner::before {
    content: "";
    position: absolute;
    left: -9.5px;
    top: 80%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(0, 0, 0, 0.84);
  }

  .cookie-animation {
    width: 75px;
    height: 75px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .cookie-animation svg {
    position: absolute;
    top: 0;
    left: 0;
  }

  .cookie-animation svg:not(:first-child) {
    display: none;
  }

  .cookie-animation svg:first-child {
    -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-animation: up 1.2s ease;
            animation: up 1.2s ease;
  }

  .cookie-animation svg:nth-child(2) {
    -webkit-animation: moverer 1s infinite alternate;
            animation: moverer 1s infinite alternate;
    will-change: transform;
  }

  .cookie-animation svg:last-child {
    -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
    will-change: transform;
  }

@-webkit-keyframes up {
    0% {
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
    }

    100% {
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }
}

@keyframes up {
    0% {
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
    }

    100% {
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }
}

@-webkit-keyframes mover {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }

    100% {
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
    }
}

@keyframes mover {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }

    100% {
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
    }
}

@-webkit-keyframes moverer {
    0% {
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }

    100% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
}

@keyframes moverer {
    0% {
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }

    100% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
}

  #cookie-banner > button:nth-of-type(1) {
    top: 6px;
    right: 8px;
    font-size: var(--fs-xl);
  }
}