/* 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;
  bottom: 10px !important;
  right: 10px !important;
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 4px;
  border-radius: 5px;
  font-size: 10px;
}

/* De code hieronder geeft de hoogte en de achtergrondkleur van het div element weer */
#map { height: 100vh;
    width: 100%;
	background-color: #fff;
 }

#map .pulse-marker-container img {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: desertWobble 5s linear infinite;
}

@keyframes desertWobble {
    0%   { transform: rotate(0deg)   scale(1); }
    25%  { transform: rotate(45deg) scale(0.9); }
    50%  { transform: rotate(90deg)   scale(1.30); }
    75%  { transform: rotate(135deg)  scale(0.9); }
    100% { transform: rotate(180deg)   scale(1); }
}
