.up {
  transform: translateY(-100vh);
}
.camera-target {
  position: relative;
  background: #FFF5;
  border-radius: 5px;
  margin: 20px;
  padding: 10px;
  font-size: 10px;
  display: block;
  border: none;
}
.camera-target:hover {
  background: #FFF;
}
.loading {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: #0A0A0A;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
  z-index: 1000000;
  pointer-events: none;
}
.loading > .bar {
  background: transparent;
  border: 1px solid white;
  width: 200px;
  height: 10px;
  position: relative;
  margin-top: 35px;
  transition: all 0.5s ease-in-out;
}
.loading > .bar > .fill {
  transition: width 0.5s ease-in-out;
  background: white;
  width: 0%;
  height: 100%;
}
.small-building {
  position: absolute;
  bottom: 120px;
  left: 15px;
  border: 1px solid #FFFFFF;
  /* opacity: 0; */
  transition: opacity 0.35s ease-in-out;
}
.small-building.hidden {
  opacity: 0;
}

/* Loading spinner */
.spinner {
  animation: rotate 2s linear infinite;
  width: 50px;
  height: 50px;
}

.spinner .path {
  stroke: white;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
