#map {
  height: 100%;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.popup-bubble {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  font-family: sans-serif;
  overflow-y: auto;
  font-size: medium;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

.popup-bubble-anchor {
  position: absolute;
  width: 100%;
  bottom: 8px;
  left: 0;
}

.popup-bubble-anchor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid white;
  z-index: 100;
}

.popup-container {
  cursor: auto;
  height: 0;
  position: absolute;
  width: 200px;
}

.cabecera-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: transparent;
}

.riesgo-overlay {
  position: absolute;
  bottom: 30px;
  left: 10px;
  background: transparent;
}

.titulo-overlay {
  position: absolute;
  bottom: 30px;
  background: transparent;
  width: 204px;
  left: 46%;
}

