#StartMenu {
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #232323;
  z-index: 10;
}

#StartMenu > * {
  min-width: 200px;
  max-width: 600px;
  width: 50%;
  background-color: #4441;
  border: none;
  border-bottom: 1px solid #fff1;
}

#StartMenu > label {
  color: #fff;
  font-size: 1.25em;
  text-align: center;
  margin-top: 1em;
  background: transparent;
  border: none;
}

#Game {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #eee;
  display: flex;
  z-index: 0;
}

#MapWrapper {
  width: 50vw;
  height: 100vh;
  background-color: #999;
  display: inline-block;
}

#StreetviewWrapper {
  width: 50%;
  height: 100%;
  background-color: #222;
  display: inline-block;
}

#TimerWrapper {
  position: absolute;
  right: 60px;
  bottom: 25px;
  background-color: #ffffff80;
  color: #111;
  padding: 0.1em 0.5em;
  border-radius: 10px;
  font-size: 1.5em;
}

#MenuIcon {
  position: absolute;
  left: 10px;
  top: 60px;
  padding: 0.25em 0.5em;
  background: #ffffff80;
  color: #111;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.5em;
}

#FoundBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 17.333px;
}

#CurrentObjective {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  background-color: #ffffffcc;
  color: #111;
  padding: 0.1em 0.5em;
  border-radius: 10px;
  font-weight: 600;
}

.gm-iv-address {
  display: none;
}

#StreetviewWrapper .gm-fullscreen-control {
  right: unset;
  left: 0;
}

#SearchCount,
#Time {
  filter: grayscale();
  border: none;
}

#Menu {
  width: 20%;
  min-width: 200px;
  height: 100vh;
  display: block;
  background-color: #333;
  z-index: 5;
  position: absolute;
  transition: 350ms linear;
  overflow-y: auto;
}

#Menu ul {
  padding: 0.25em 1em;
}

#CloseMenu {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  padding: 0.25em 0.5em;
  background: #fff7;
  border-radius: 10px;
  color: #111;
  cursor: pointer;
}

#Menu li {
  cursor: pointer;
}

#CurrentLocation {
  position: absolute;
  right: 20%;
  transform: translateX(50%);
  bottom: 0;
  border: 1px solid #4444;
  background: #ffffffcc;
  font-size: 10px;
  color: #000;
}

#Copyright {
  position: fixed;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 15;
  left: 50%;
  font-size: xx-small;
  font-weight: 600;
  background: #fffa;
}

#Copyright > a {
  color: #000;
  padding: 0.5em;
}

body {
  width: 100vw;
  height: 100vh;
  background: #222;
  font-family: "Open Sans", sans-serif;
}

.hidden {
  display: none !important;
}

#GameMode,
#PlayerName,
#RoomCode {
  color: #fff;
  text-align: center;
}

.online-panel {
  width: 50%;
  min-width: 200px;
  max-width: 600px;
  margin-top: 1rem;
}

.online-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.online-actions input {
  flex: 1;
}

.online-actions button {
  white-space: nowrap;
  min-width: 7rem;
}

#RoomStatus {
  color: #fff;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
}

#RoomPlayers {
  margin-top: 0.5rem;
  max-height: 8rem;
  overflow-y: auto;
  border: 1px solid #ffffff22;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: #00000022;
}

#RoomPlayers li {
  color: #fff;
  font-size: 0.85rem;
  padding: 0.125rem 0;
}

#RoomBadge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffffcc;
  color: #111;
  padding: 0.1em 0.6em;
  border-radius: 10px;
  font-weight: 600;
}

#imprint {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(96vw, 760px);
  margin-top: 5vh;
}

#imprint h1 {
  color: #fff;
  filter: drop-shadow(0 0 2px #000);
  margin: 2.5rem 0 1.5rem;
}

#imprint .table-responsive {
  width: 100%;
  border-top: 2px solid #fff4;
}

#imprint .table {
  margin-bottom: 0;
}

#imprint td {
  color: #fff;
  border-bottom: 1px solid #0003;
}

#imprint tr > td:first-child {
  color: #9c9c9c;
  width: 35%;
}

#imprint a {
  color: #fff;
  text-decoration: none;
}

.imprint-company {
  text-align: center;
  color: #fff !important;
  font-weight: 700;
}

.imprint-back {
  position: fixed;
  top: 1rem;
  left: 1rem;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.imprint-back i {
  font-size: min(5vw, 40px);
}

@media (max-width: 500px) {
  #MapWrapper,
  #StreetviewWrapper {
    display: block;
    width: 100vw;
    height: 50vh;
  }

  #Game {
    display: block;
  }

  #imprint {
    width: min(95vw, 760px);
    margin-top: 3.5rem;
  }

  .imprint-back span {
    display: none;
  }
}
