@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap";
.hidden {
  display: none;
}
.preloader {
  background-color: #d6d2ca;
  width: 100%;
  height: 100vh;
  opacity: 1;
  position: fixed;
  z-index: 99999;
}
.preloader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  transform: rotate(45deg);
  transform-origin: 50%;
  animation: loading-rotate 2s ease-in-out infinite;
}
@keyframes loading-rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-progress {
  color: #041676;
  font-size: 4rem;
  font-weight: 700;
}
.experience-canvas {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.menu {
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-out;
}
.menu.active {
  pointer-events: all;
  opacity: 1;
}
.point-of-interest {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.point-of-interest.active {
  pointer-events: all;
  opacity: 1;
}
.menu-panel {
  z-index: 9999;
  right: 0;
  transition: all 0.4s ease-in-out;
  translate: 100% 0;
}
.menu-panel.active {
  translate: 0 0;
}
.lil-gui {
  position: relative;
  z-index: 11111 !important;
}
.points-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.points-wrapper {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.point-of-interest {
  transform-origin: center;
  position: absolute;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.point-of-interest:hover {
  z-index: 9999;
}
.point-of-interest:hover .poi-text {
  opacity: 1;
}
.point-of-interest.visible {
  z-index: 4.44;
}
.poi-label {
  line-height: 1;
  display: flex;
  justify-content: center;
  background: #fff200;
  position: relative;
  align-items: center;
  align-content: center;
  text-align: center;
  border-radius: 30px;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  transition: all 0.2s ease allow-discrete;
  box-shadow: inset 0 -2px #00000040, 0 1px #00000040, inset 0 2px #ffffff4d;
}
.poi-label svg {
  transition: all 0.2s ease allow-discrete;
}
.point-of-interest[open] .poi-label {
  background: black;
  scale: 1.2;
}
.point-of-interest[open] .poi-label svg {
  color: #ff0;
  filter: none;
  rotate: 45deg;
}
.poi-text {
  background: black;
  color: #fff;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 14px;
  position: absolute;
  white-space: nowrap;
  top: 0;
  translate: 0 -140%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.poi-caret {
  width: 8px;
  height: 8px;
  background: black;
  position: absolute;
  bottom: -4px;
  transform: rotate(45deg);
  text-align: center;
}
.poi-label img,
.poi-label svg {
  width: 12px;
  height: 12px;
  position: relative;
}
[data-road-label="1"] {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
  cursor: pointer;
}
[data-road-label="1"] .poi-dot {
  width: 10px;
  height: 10px;
  border-radius: 15px;
  background: black;
  position: absolute;
  transition: all 0.3s ease;
}
[data-road-label="1"] .poi-label {
  position: absolute;
  top: 0;
  translate: 0 -100%;
  padding: 6px 10px;
  border-radius: 4px;
  background: black;
  line-height: 1.2;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  scale: 0.95;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: auto;
}
[data-road-label="1"] .poi-label-caret {
  background: black;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  rotate: 45deg;
}
[data-road-label="1"] .poi-text {
  white-space: nowrap;
  position: relative;
}
[data-road-label="1"]:hover .poi-label {
  opacity: 1;
  scale: 1;
}
[data-road-label="1"]:hover .poi-dot {
  scale: 1.4;
}
.map-breadcrumbs {
  background: white;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.75rem;
  display: flex;
  position: relative;
  gap: 0.5rem;
  z-index: 4;
}
.map-breadcrumb {
  all: unset;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: Inter;
}
.map-breadcrumb.main {
  color: #000000b3;
}
.map-breadcrumb-level {
  font-weight: 500;
}
.map-breadcrumb.hidden {
  display: none;
}
.mezz-toggle {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  gap: 0.5rem;
  z-index: 4;
  box-shadow: 0 2px #0000001a;
}
.mezz-toggle.hidden {
  display: none;
}
.mezz-toggle-button {
  text-align: left;
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
  align-items: center;
  background: white;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
}
.mezz-toggle-button .mezz-toggle-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  box-shadow: 0 2px #0000001a;
}
.mezz-toggle-button.active {
  background: black;
  color: #fff;
}
.mezz-toggle-button.active .mezz-toggle-number {
  background: yellow;
  color: #000;
}
