/* Base font size for desktop */
html {
    font-size: 12px;
}

@media (max-width: 768px){
	html {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 11px;
	}
}

@font-face {
	font-family: 'avenir-next';
	src: url('../fonts/7068Avenir-Next.woff2') format('woff2');
}

.leaflet-popup-content h1 {
  font-family: 'avenir-next', arial;
  font-size: 1.6rem;
  color: #be9132;
  margin-top: 2px;
  margin-bottom: 2px;
}

.leaflet-popup-content p {
  font-family: 'avenir-next', arial;
  font-size: 1.4rem;
  color: #000307;
  margin-top: 0px;
  margin-bottom: 10px;
}

/* De code hieronder geeft een blauwe kleur aan de EMK copyright tekst */
.leaflet-control-attribution {
  color: #6693bd;
}

/* De code hieronder geeft de hoogte en de achtergrondkleur van het div element weer */
#map { height: 100vh;
    width: 100%;
	background-color: #fff;
 }

@keyframes pulseMap {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* This class applies the keyframes + styling to a DIV */
.pulse-marker {
  width: 40px;               /* The size of the marker (in normal state) */
  height: 47.2px; 
  position: relative;
}

#map .pulse-marker-container img {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: pulseMap 2s infinite; /* pulses continuously */
}



