/* @font-face {
  font-family: Gilroy;
  font-weight: 500;
  src: url(../fonts/Gilroy/Gilroy-Medium.woff2) format("woff2"), url(../fonts/Gilroy/Gilroy-Medium.woff) format("woff");
} */

#app {
  width: 100%;
  max-width: 2500px;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffffde;
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-inline: auto;
  margin-bottom: 48px;
  margin-top: 180px;
}

.marker-popup__text {
  padding-bottom: 0;
}

#app .marker-popup__title {
  line-height: 1.5;
}

/* body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100dvh;
} */
#interactive-map {
  position: relative;
  width: 100%;
  aspect-ratio: 250 / 121;
}

.btn {
  width: 48px;
  aspect-ratio: 1;
  padding: 0;
  display: grid;
  place-items: center;
  border: none;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: filter 0.1s ease-in-out;
}
.btn svg {
  width: 26px;
  aspect-ratio: 1;
}
.btn:hover {
  filter: brightness(90%);
}
.btn_fullscreen {
  position: absolute;
  z-index: 99;
  right: 20px;
  top: 20px;
}
.btn_menu {
  position: absolute;
  z-index: 99;
  left: 20px;
  top: 20px;
  background-color: #62a49a;
}
.f-panzoom__controll {
  position: absolute;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 20px;
  right: 20px;
  bottom: 20px;
}
.f-panzoom.in-fullscreen {
  background-color: #242424;
}
@media (max-width: 600px) {
  .btn {
    width: 36px;
  }
  .btn svg {
    width: 18px;
  }
  .btn_fullscreen {
    right: 12px;
    top: 12px;
  }
  .btn_menu {
    left: 12px;
    top: 12px;
  }
  .f-panzoom__controll {
    right: 12px;
    bottom: 12px;
    gap: 12px;
  }
  #interactive-map {
    aspect-ratio: 9 / 16;
    width: 100%;
    max-height: 100dvh;
  }
  .f-panzoom {
    height: 100%;
  }
}
:root {
  --f-panzoom-pin-width: 24px;
  --f-panzoom-pin-height: 24px;
  --f-panzoom-pin-color: red;
}
.f-panzoom__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 20;
}
.is-loading .f-panzoom__pin {
  display: none;
}
.f-panzoom__pin > * {
  transform: translate(-50%, -100%);
  width: var(--f-panzoom-pin-width, 24px);
  height: var(--f-panzoom-pin-height, 24px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.f-panzoom__pin svg {
  width: 100%;
  height: 100%;
  fill: var(--f-panzoom-pin-color);
  pointer-events: none;
}
:root {
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}
.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  translate: -50% -50%;
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  border-radius: var(--f-spinner-border-radius);
  animation:
    f-spinner 0.75s linear infinite,
    f-fadeIn 0.2s ease 0.2s both;
}
@keyframes f-spinner {
  to {
    rotate: 360deg;
  }
}
.f-panzoom,
.f-zoomable {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.f-panzoom:before,
.f-panzoom:after,
.f-zoomable:before,
.f-zoomable:after {
  display: block;
  content: "";
}
.f-panzoom:not(.has-controls):before,
.f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}
.f-panzoom:after,
.f-zoomable:after {
  margin-top: auto;
}
.f-panzoom.in-fullscreen,
.f-zoomable.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999;
}
.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}
.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}
.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}
.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}
.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.f-panzoom__wrapper.has-error {
  display: none;
}
.f-panzoom__content {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}
.f-panzoom__content.is-lazyloading,
.f-panzoom__content.has-lazyerror {
  visibility: hidden;
}
img.f-panzoom__content {
  width: auto;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  transition: none;
  -webkit-user-select: none;
  user-select: none;
}
.f-panzoom__wrapper > .f-panzoom__content {
  visibility: hidden;
}
.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.f-panzoom__viewport > .f-panzoom__content {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: none;
  -webkit-user-select: none;
  user-select: none;
}
.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
html.with-panzoom-in-fullscreen {
  overflow: hidden;
}
.map-marker[data-v-a36e96f9] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-sizing: content-box;
}
.map-marker_hotel[data-v-a36e96f9] {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0;
  border: none;
}
.map-marker_hotel [data-v-a36e96f9] {
  transform: none;
}
.map-marker__number[data-v-a36e96f9] {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  -webkit-user-select: none;
  user-select: none;
  transform: none;
  align-items: center;
  transform: translateY(1px);
}
@media (max-width: 600px) {
  .map-marker[data-v-a36e96f9] {
    width: 24px;
    height: 24px;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  list-style: none;
}
.glide__slides--dragging {
  -webkit-user-select: none;
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  list-style: none;
  padding-bottom: 0;
}
.marker-popup__images .glide__slide {
  padding-bottom: 0;
}
.glide__slide a {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows,
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}
.marker-popup[data-v-4ff43777] {
  position: absolute;
  width: 280px;
  max-height: calc(100vh - 32px);
  background: #fff;
  box-shadow:
    0 8px 32px #0003,
    0 2px 8px #0000001a;
  z-index: 100;
  overflow: auto;
  color: #333;
}
.marker-popup__arrow[data-v-4ff43777] {
  position: absolute;
  top: var(--arrow-top, 50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px;
  transform: translateY(-50%);
}
.marker-popup--right .marker-popup__arrow[data-v-4ff43777] {
  left: -20px;
  border-color: transparent white transparent transparent;
}
.marker-popup--left .marker-popup__arrow[data-v-4ff43777] {
  right: -20px;
  border-color: transparent transparent transparent white;
}
.marker-popup__close[data-v-4ff43777] {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: #0000000d;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 1;
}
.marker-popup__close[data-v-4ff43777]:hover {
  background: #0000001a;
}
.marker-popup__close svg[data-v-4ff43777] {
  width: 16px;
  height: 16px;
  color: #666;
}
.marker-popup__header[data-v-4ff43777] {
  padding: 12px 16px;
  border-bottom: 3px solid;
  border-radius: 12px 12px 0 0;
  background: #fff;
}
.marker-popup__title[data-v-4ff43777] {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  padding-right: 24px;
}
.marker-popup__content[data-v-4ff43777] {
  padding: 12px 16px;
  border-radius: 0 0 12px 12px;
  background: #fff;
}
.marker-popup__text[data-v-4ff43777] {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.marker-popup__text[data-v-4ff43777]:last-child {
  margin-bottom: 0;
}
.marker-popup__images[data-v-4ff43777] {
  margin-bottom: 12px;
}
.marker-popup__single-image[data-v-4ff43777] {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}
.marker-popup__images .glide[data-v-4ff43777] {
  position: relative;
}
.marker-popup__images .glide__slide[data-v-4ff43777] {
  height: 140px;
}
.marker-popup__image[data-v-4ff43777] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.marker-popup__images .glide__bullets[data-v-4ff43777] {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 6px;
}
.marker-popup__images .glide__bullet[data-v-4ff43777] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff80;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.marker-popup__images .glide__bullet--active[data-v-4ff43777] {
  background: #fff;
}
.marker-popup__images .glide__arrows[data-v-4ff43777] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  pointer-events: none;
}
.marker-popup__images .glide__arrow[data-v-4ff43777] {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffffe6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
  pointer-events: auto;
  box-shadow: 0 2px 6px #00000026;
}
.marker-popup__images .glide__arrow[data-v-4ff43777]:hover {
  background: #fff;
}
.marker-popup__images .glide__arrow svg[data-v-4ff43777] {
  width: 16px;
  height: 16px;
  color: #333;
}
.marker-popup__key-value[data-v-4ff43777] {
  margin-bottom: 8px;
  font-size: 14px;
}
.marker-popup__label[data-v-4ff43777] {
  display: block;
  font-weight: 600;
  color: #595959;
  margin-bottom: 2px;
}
.marker-popup__row[data-v-4ff43777] {
  display: flex;
  justify-content: space-between;
}
.marker-popup__value[data-v-4ff43777] {
  color: #666;
}
.marker-popup__button[data-v-4ff43777] {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  background-color: #62a49a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: filter 0.2s ease;
}
.marker-popup__button[data-v-4ff43777]:hover {
  filter: brightness(90%);
}
.marker-popup__contact[data-v-4ff43777] {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.marker-popup__contact svg[data-v-4ff43777] {
  width: 16px;
  height: 16px;
  color: #888;
  flex-shrink: 0;
}
.marker-popup__contact a[data-v-4ff43777] {
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.marker-popup__contact a[data-v-4ff43777]:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.popup-fade-enter-active[data-v-4ff43777],
.popup-fade-leave-active[data-v-4ff43777] {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.popup-fade-enter-from[data-v-4ff43777],
.popup-fade-leave-to[data-v-4ff43777] {
  opacity: 0;
}
.marker-popup--right.popup-fade-enter-from[data-v-4ff43777],
.marker-popup--right.popup-fade-leave-to[data-v-4ff43777] {
  transform: translate(-10px);
}
.marker-popup--left.popup-fade-enter-from[data-v-4ff43777],
.marker-popup--left.popup-fade-leave-to[data-v-4ff43777] {
  transform: translate(10px);
}
@media (max-width: 600px) {
  .marker-popup[data-v-4ff43777] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto !important;
    width: 100%;
    max-width: 100%;
    max-height: 60vh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px #00000026;
  }
  .marker-popup__header[data-v-4ff43777] {
    border-radius: 16px 16px 0 0;
    padding: 16px 20px;
  }
  .marker-popup__content[data-v-4ff43777] {
    border-radius: 0;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .marker-popup__close[data-v-4ff43777] {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
  .marker-popup__close svg[data-v-4ff43777] {
    width: 18px;
    height: 18px;
  }
  .marker-popup__single-image[data-v-4ff43777],
  .marker-popup__images .glide__slide[data-v-4ff43777] {
    height: 180px;
  }
  .marker-popup__images .glide__arrow[data-v-4ff43777] {
    width: 36px;
    height: 36px;
  }
  .marker-popup__images .glide__arrow svg[data-v-4ff43777] {
    width: 20px;
    height: 20px;
  }
  .marker-popup__button[data-v-4ff43777] {
    padding: 14px 24px;
    font-size: 16px;
  }
  .popup-fade-enter-from[data-v-4ff43777],
  .popup-fade-leave-to[data-v-4ff43777] {
    opacity: 1;
    transform: translateY(100%);
  }
  .marker-popup--right.popup-fade-enter-from[data-v-4ff43777],
  .marker-popup--right.popup-fade-leave-to[data-v-4ff43777],
  .marker-popup--left.popup-fade-enter-from[data-v-4ff43777],
  .marker-popup--left.popup-fade-leave-to[data-v-4ff43777] {
    transform: translateY(100%);
  }
}
.side-menu[data-v-9e41a2ac] {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 20px #00000026;
  z-index: 100;
  display: flex;
  flex-direction: column;
  color: #333;
}
.side-menu__header[data-v-9e41a2ac] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}
.side-menu__title[data-v-9e41a2ac] {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}
.side-menu__close[data-v-9e41a2ac] {
  width: 32px;
  height: 32px;
  border: none;
  background: #0000000d;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.side-menu__close[data-v-9e41a2ac]:hover {
  background: #0000001a;
}
.side-menu__close svg[data-v-9e41a2ac] {
  width: 18px;
  height: 18px;
  color: #666;
}
.side-menu__content[data-v-9e41a2ac] {
  flex: 1;
  overflow-y: auto;
  padding-block: 4px 8px;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}
.side-menu__section[data-v-9e41a2ac] {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.side-menu__section[data-v-9e41a2ac]:last-child {
  border-bottom: none;
}
.side-menu__section-header[data-v-9e41a2ac] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease;
}
.side-menu__section-header[data-v-9e41a2ac]:hover {
  background-color: #0000000a;
}
.side-menu__section-header--static[data-v-9e41a2ac] {
  cursor: default;
}
.side-menu__section-header--static[data-v-9e41a2ac]:hover {
  background-color: transparent;
}
.side-menu__section--reception[data-v-9e41a2ac] {
  cursor: pointer;
}
.side-menu__section--reception[data-v-9e41a2ac]:hover {
  background-color: #0000000a;
}
.side-menu__section--active[data-v-9e41a2ac] {
  background-color: #00000014;
}
.side-menu__section-header--clickable[data-v-9e41a2ac] {
  cursor: pointer;
}
.side-menu__section-icon[data-v-9e41a2ac] {
  flex-shrink: 0;
}
.side-menu__section-title[data-v-9e41a2ac] {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}
.side-menu__section-arrow[data-v-9e41a2ac] {
  width: 20px;
  height: 20px;
  color: #666;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.side-menu__section-arrow--open[data-v-9e41a2ac] {
  transform: rotate(180deg);
}
.side-menu__list[data-v-9e41a2ac] {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.side-menu__item[data-v-9e41a2ac] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.side-menu__item[data-v-9e41a2ac]:hover {
  background-color: #0000000a;
}
.side-menu__item--active[data-v-9e41a2ac] {
  background-color: #00000014;
}
.side-menu__marker-dot[data-v-9e41a2ac] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px #0003;
}
.side-menu__marker-title[data-v-9e41a2ac] {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}
.accordion-enter-active[data-v-9e41a2ac],
.accordion-leave-active[data-v-9e41a2ac] {
  transition: all 0.2s ease;
}
.accordion-enter-from[data-v-9e41a2ac],
.accordion-leave-to[data-v-9e41a2ac] {
  opacity: 0;
  max-height: 0;
}
.accordion-enter-to[data-v-9e41a2ac],
.accordion-leave-from[data-v-9e41a2ac] {
  opacity: 1;
  max-height: 500px;
}
.menu-slide-enter-active[data-v-9e41a2ac],
.menu-slide-leave-active[data-v-9e41a2ac] {
  transition: transform 0.3s ease;
}
.menu-slide-enter-from[data-v-9e41a2ac],
.menu-slide-leave-to[data-v-9e41a2ac] {
  transform: translate(-100%);
}
@media (max-width: 600px) {
  .side-menu[data-v-9e41a2ac] {
    position: fixed;
  }
}
