/* Template for popup contents */
#popup-template {
    display: none;
}

/* Popup window for selected marker */
.popup {
  background: #0b1222;
  border: 1px solid #1f2937;
  border-radius: 12px;
  color: #e5e7eb;
  padding: 12px;
  width: 740px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  position: absolute;
  top: 40px;
  left: -60px;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}
.popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: #374151;
  border: none;
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
}
.popup:after, .popup:before {
  border: solid transparent;
  border-top-color: #0b1222;
  border-width: 20px;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  top: -39px;
  margin-left: -11px;
  left: 50px;
  transform: rotate(180deg);
  pointer-events: none;
}
@supports (hanging-punctuation: first) or (-moz-appearance: none) {
  #close-icon {
    margin-top: -3px;
  }
}
