@charset "UTF-8";
/* CSS Document 
.map {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  position: center;
} */


.map path {
  transition: transform 0.2s ease;
  transform-origin: center center;
}
.map path:hover {
  transform: scale(1.005);
}


.mapael {
  width: 80%;
  height: 500px;
  margin: 20px auto;
  position: relative;
}


.mapael .mapTooltip {
  position: absolute;
  background-color: #B4B4B4;
  opacity: 0.9;
  border-radius: 10px;
  padding: 10px;
  z-index: 1000;
  max-width: 200px;
  display: none;
  color: #fff;
  font-family: "Futura", sans-serif;
  pointer-events: none; /* Important to prevent blocking mouseover */
  white-space: nowrap;
}


