@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
:root {
  --mapWidth: 65vw;
  --mapHeight: calc(var(--mapWidth) * 9/16);
  --borderRadius: 4px;
  --markerSize: 1rem;
  --panelPadding: 0.5vw;
  --propPreviewSize: 4vw;
  --markerPopupWidth: 20vw;
  --blurRadius: 10px;
  --mainDarkColor: rgb(23, 20, 49);
  --fullWidth: calc(100vw - 30 * var(--panelPadding));
  --windowBorder: solid 2px rgb(113, 0, 219);
}

html {
  font-size: calc(0.8vmin + 8px);
}

.hidden, .hidden * {
  display: none !important;
  opacity: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.resize-animation-stopper * {
  transition-duration: 0 !important;
  transition: none !important;
}

* {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  scrollbar-width: thin;
}

.overflowHidden {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.roundedCorners {
  border-radius: var(--borderRadius);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000000;
  color: white;
}
.lightbox .closeButton {
  position: fixed;
  right: calc(2 * var(--panelPadding));
  top: calc(2 * var(--panelPadding));
  font-size: calc(4 * var(--panelPadding));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--fullWidth);
  margin-bottom: calc(2 * var(--panelPadding));
  overflow: visible;
}
header .logoContainer {
  height: calc(var(--panelPadding) * 10);
  width: calc(var(--panelPadding) * 10 * 7.3);
  overflow: visible;
}
header .logoContainer .logo {
  width: 100%;
}
header .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30%;
}
header .links a {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition-duration: 0.5s;
}
header .links a:hover {
  padding-bottom: 0.75rem;
}

.main {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  padding: calc((100vh - var(--panelPadding) * 13 - var(--mapHeight) - 0.6rem - 4px) / 2) calc(var(--panelPadding) * 4);
}
.main .background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  filter: blur(8px);
  transform: scale(1.2);
  background-size: cover;
}
.main .background .backgroundOverlay {
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.6;
}

footer {
  margin-top: var(--panelPadding);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
}

@media screen and (orientation: portrait) {
  html {
    font-size: calc(1vmin + 10px);
  }
  :root {
    --fullWidth: 95vw;
    --mapWidth: 95vw;
    --panelPadding: 2vw;
    --propPreviewSize: 10vw;
    --markerPopupWidth: 40vw;
  }
  header {
    flex-direction: column;
    margin-top: calc(4 * var(--panelPadding));
    margin-bottom: 0;
  }
  header .logoContainer {
    width: 80%;
  }
  header .links {
    width: 80%;
    margin: calc(4 * var(--panelPadding)) 0;
  }
  header .links a:hover {
    padding-bottom: initial;
  }
  .main {
    padding: var(--panelPadding);
  }
}/*# sourceMappingURL=globalUI.css.map */