.leaflet-popup-content-wrapper {
  color: #1f1f1f;
  border-radius: 12px;
  width: 400px;
  padding: 20px;
  box-shadow: 0 8px 16px #0000001f, 0 4px 8px #00000014;
  background-color: #fff !important;
}

.leaflet-popup-content {
  margin: 0;
}

.leaflet-popup-tip {
  background-color: #fff !important;
}

.pulsing-chart {
  animation: 3s ease-in-out infinite pulse;
}

@keyframes pulse {
  0% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .5;
  }
}

