.map-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.map-popup-content {
  position: relative;
  margin: 10% auto;
  padding: 10px;
  width: 80%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 0;
}

.close-map {
  position: absolute;
  top: -20px;
  right: -20px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  background-color: #2884b4;
  border-radius: 50%;
  padding: 8.5px 12px;
  transition: 0.3s;
}

.close-map:hover {
  background-color: #000;
}
