#result {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: var(--app-height, 100dvh);
}
#result > div {
  position: relative;
}

div#result-title {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--co2-bar-positive);
  color: #fff;
  border: solid 5px #fff;
  border-radius: 100%;
  width: 130px;
  height: 130px;
  transform: translateX(-80%) rotate(343deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#result-title h2 {
  font-size: 3em;
  line-height: 1em;
}

#result h2 {
  text-align: center;
}

#result .player-img {
  position: absolute;
  height: 40vh;
  width: 30vh;
  background-size: contain;
  background-color: transparent;
  left: 100%;
  bottom: 0%;
  pointer-events: none;
  transform: translate(-33%, 22%);
}

div#finalMap {
  filter: saturate(0.9) hue-rotate(350deg);
  border: solid 8px #cfdfc6;
  background: #b0c37f;
  border-radius: 10px;
  background-image: url(../img/pano/pano-forest.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

#finalMap .landscape {
  display: flex;
}

#finalMap .landscape > div {
  width: 6.5vw;
  height: 10vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

/* Info-Panel bei Rollover über Kacheln */

.tile-info-panel {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  position: fixed;
  transform: translate(-50%, -82%);
  background: #d0dcca;
  border: solid 5px #ffffff;
  border-radius: 14px;
  padding: 15px 14px;
  font-size: 1em;
  font-family: "Wilson", Arial, sans-serif;
  line-height: 1.3;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  margin-top: -5px;
}

.tile-info-panel.visible {
  opacity: 1;
}

.tile-info-panel strong {
  display: block;
  margin-top: 6px;
  color: #638b58;
  font-size: 1.2em;
}

#finalMap > div:not(:first-child) {
  margin-top: -7.5%;
}

#finalMap .landscape > div:hover {
  z-index: 10;
}

html.touch-device #finalMap .landscape > div {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#finalMap .values {
  position: relative;
  margin-bottom: 20%;
  opacity: 1;
  z-index: 5;
}

#finalMap .values > div {
  height: 30px;
  width: 15px;
}

#finalMap .landscape > div:hover .values {
  opacity: 1;
}
