@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 > 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 > div:last-of-type {
  margin-bottom: 0;
}

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

.cards.infrostruction article > div:last-of-type p {
  color: var(--text-secondary);
  font-size: 0.875em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5em;
  line-height: 143%;
  margin-bottom: 0;
}

.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 {
  margin: 12px 0;
}

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

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

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

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;
}

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;
}

.filters {
  height: 100%;
  overflow: auto;
}

.filters .scroll-content {
  padding: 14px 16px 150px 16px;
}

.filters .scroll-content > * {
  margin-bottom: 16px;
}

.filters .scroll-content > * > span {
  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;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #0d0d0d;
}

.filters .scroll-content > * .items,
.filters .scroll-content > * .hidden-items {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.filters .scroll-content > * .items > label,
.filters .scroll-content > * .hidden-items > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 143%;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  gap: 8px;
  color: #0d0d0d;
}

.filters .scroll-content > * .items > label > .label.star,
.filters .scroll-content > * .hidden-items > label > .label.star {
  fill: #ffcb11;
  stroke: #ffcb11;
}

.filters .scroll-content > * .items > label > .checkmark,
.filters .scroll-content > * .hidden-items > label > .checkmark {
  position: relative;
  display: inline-block;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  border: 1px solid rgba(98, 108, 119, 0.3019607843);
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  pointer-events: none;
}

.filters .scroll-content > * .items > label > .checkmark:after,
.filters .scroll-content > * .hidden-items > label > .checkmark:after {
  content: url("data:image/svg+xml,%3Csvg width=%2711%27 height=%279%27 viewBox=%270 0 10 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M9.1625 0.9625C8.7125 0.5125 8.0375 0.5125 7.5875 0.9625L3.875 4.675L2.4125 3.2125C1.9625 2.7625 1.2875 2.7625 0.8375 3.2125C0.3875 3.6625 0.3875 4.3375 0.8375 4.7875L3.0875 7.0375C3.3125 7.2625 3.5375 7.375 3.875 7.375C4.2125 7.375 4.4375 7.2625 4.6625 7.0375L9.1625 2.5375C9.6125 2.0875 9.6125 1.4125 9.1625 0.9625Z%27 fill=%27black%27/%3E%3C/svg%3E%0A");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  opacity: 0;
  line-height: 1;
  height: 100%;
}

.filters .scroll-content > * .items > label > input,
.filters .scroll-content > * .hidden-items > label > input {
  height: 0;
  width: 0;
  display: none;
}

.filters .scroll-content > * .items > label > input:checked ~ .checkmark,
.filters .scroll-content > * .hidden-items > label > input:checked ~ .checkmark {
  background-color: #ffcb11;
  border-color: #ffcb11;
}

.filters .scroll-content > * .items > label > input:checked ~ .checkmark:after,
.filters .scroll-content > * .hidden-items > label > input:checked ~ .checkmark:after {
  opacity: 1;
}

.filters .scroll-content > * .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 .scroll-content > * > button {
  display: contents;
  margin-top: 4px;
  height: auto;
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: #4285f4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  cursor: pointer;
}

.stars svg {
  fill: #e5e5e5;
  stroke: #e5e5e5;
  color: #e5e5e5;
}

.stars[data-rating="1"] svg:first-child {
  fill: #ffc900;
  stroke: #ffc900;
  color: #ffc900;
}

.stars[data-rating="2"] svg:nth-child(-n+2) {
  fill: #ffc900;
  stroke: #ffc900;
  color: #ffc900;
}

.stars[data-rating="3"] svg:nth-child(-n+3) {
  fill: #ffc900;
  stroke: #ffc900;
  color: #ffc900;
}

.stars[data-rating="4"] svg:nth-child(-n+4) {
  fill: #ffc900;
  stroke: #ffc900;
  color: #ffc900;
}

.stars[data-rating="5"] svg {
  fill: #ffc900;
  stroke: #ffc900;
  color: #ffc900;
}

.filters {
  border-radius: 14px;
  padding: 14px;
  width: 240px;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  height: calc(100% - 16px);
  min-height: 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: 14px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filters::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

.filters .scroll-content {
  padding: 0;
}

.filters .special-filters {
  margin-bottom: 16px;
}

.filters div.by-work-wrapper,
.filters div.f-bkg-wrapper {
  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%;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.filters div.by-work-wrapper > input,
.filters div.f-bkg-wrapper > input {
  position: absolute;
  opacity: 0;
}

.filters div.by-work-wrapper > label,
.filters div.f-bkg-wrapper > label {
  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;
  gap: 8px;
  cursor: pointer;
  width: 100%;
}

.filters div.by-work-wrapper > label > span:first-of-type,
.filters div.f-bkg-wrapper > label > span:first-of-type {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.filters div.by-work-wrapper > label > span:last-child,
.filters div.f-bkg-wrapper > label > span:last-child {
  position: relative;
  width: 40px;
  height: 22px;
  background: #eaeaee;
  border-radius: 61px;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.filters div.by-work-wrapper > label > span:last-child::before,
.filters div.f-bkg-wrapper > label > span:last-child::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: 0.3s ease;
  transition: 0.3s ease;
}

.filters div.by-work-wrapper > input:checked + label span:last-child,
.filters div.f-bkg-wrapper > input:checked + label span:last-child {
  background: var(--primary);
}

.filters div.by-work-wrapper > input:checked + label span:last-child::before,
.filters div.f-bkg-wrapper > input:checked + label span:last-child::before {
  left: calc(100% - 18px - 2px);
}

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

.filters div.range {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "title title" "from to" "range range";
  gap: 8px;
  min-height: 114px;
}

.filters div.range > span.title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  all: unset;
  grid-area: title;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0em;
}

.filters div.range label {
  width: 102px;
}

.filters div.range label:has(.from) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: from;
}

.filters div.range label:has(.to) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: to;
}

.filters div.range label > span::before {
  all: unset !important;
}

.filters div.range label > span:has(.to, .from) {
  all: unset;
  border-radius: 10px;
  padding: 0px 8px;
  width: 102px;
  height: 44px;
  background: #f6f7f8;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  color: var(--text-secondary);
}

.filters div.range label > span:has(.to, .from) > input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 0 4px;
  font: inherit;
  color: inherit;
  outline: none;
  -moz-appearance: textfield;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
}

.filters div.range label > span:has(.to, .from) > input::-webkit-outer-spin-button,
.filters div.range label > span:has(.to, .from) > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filters div.range > div {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: range;
}

.filters #slider {
  width: 212px;
  height: 24px;
  margin-bottom: 14px;
}

.filters #slider.noUi-target {
  background: #f3f3f6;
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.filters #slider .noUi-connect {
  background: var(--primary);
  top: 0;
  height: 100%;
}

.filters #slider .noUi-handle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 0.5px solid rgba(98, 108, 119, 0.1);
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  top: -10px;
  right: -12px;
}

.filters #slider .noUi-handle::before,
.filters #slider .noUi-handle::after {
  all: unset;
}

.filters-container {
  position: absolute !important;
  left: 0;
  z-index: 1;
  height: 100%;
}

.filters-container .filters {
  border-radius: 0px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.filters-container .footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: 20px 16px;
  background-color: white;
}

.filters-container .footer > button {
  font-weight: 400;
  font-size: 1rem;
  padding: 0 24px;
  width: 100%;
}

.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;
}

.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;
}

@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;
  }
}