#map-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*position: relative;*/
}
#map {
  /*position: relative;*/
  width: 100%;
  max-width: 900px;
}
#map img {
  width: 100%;
  height: auto;
  display: block;
}
.pin {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #035FA4;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  cursor: pointer;
  z-index: 10;
}
.pin:after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 5px;
  background: #fff;
  position: absolute;
  border-radius: 50%;
  z-index: 10;
}
.pin .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.pin .pulse::after {
  content: "";
  position: absolute;
  top: -4.9px;
  left: -5.5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulsate 2s ease-out infinite;
  opacity: 0;
  box-shadow: 0 0 3px 1px #fff;
}
.tooltip {
  position: absolute;
  background: #eee;
  border: solid 1px #ddd;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
  transform: translate(-80%, -60%);
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-50px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}