#map-container {
  margin: 0 auto;
}

body.modal-active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust the opacity as needed */
  z-index: 999;
  /* Ensure the overlay is behind the modal */
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  max-width: 100%;
  max-height: 700px;
  background: #fff;
  color: #333;
  text-align: center;
  padding-top: 100px;
  z-index: 1000;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.modal .header {
  background: #00549e;
  color: #fff;
  padding: 10px;
  font-size: 1.2em;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal .img {
  width: 100px;
  height: 60px;
  background-size: contain;
  background-position: center;
  display: block;
  background-repeat: no-repeat;
}
.modal.active {
  display: flex;
}
.modal h3 {
  color: #fff;
  margin-top: 15px;
}
.modal .close {
  margin-right: 10px;
  cursor: pointer;
}
.modal .modal-content {
  padding: 20px;
}

path[data-point] {
  pointer-events: all;
  cursor: help;
}

/*# sourceMappingURL=interactive-map.css.map */
