svg {
  /*max-width: 50% !important;*/
  margin:0 auto 0 auto;
  height: auto;
  display: block;
}

/*Une zone de la carte*/
.enabled {
  /*fill:#7C6B6B;*/
  fill:rgba(62,189,173,0.5);
  stroke:rgba(255, 255, 255, 0.6);
  stroke-width:3px;
  /*stroke:#7c6b6b;
  stroke-width:6px;*/
  transition: fill 0.3s;
}

/*Une zone de la carte survolée*/
.enabled:hover
/*.heyo:hover*/ {
  fill: #b7d435;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


/*L'infobulle qui s'affiche au survol*/
.carte_sgv_infobulle {
  font-family: 'Open Sans', sans-serif;
  font-weight:700;
  pointer-events: none;
  position: absolute;
  font-size:0.9em;
  line-height:1em;
  text-align: center;
  background:rgba(255,255,255,0.8);
  padding: 10px;
  z-index: 5;
  margin: 0 auto;
  color: #357976;
  box-shadow: 0 0 0 1px #eee;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
}
.carte_sgv_infobulle.active {
  display: block;
}

/*Si on souhaite une petite flèche sous le nom de la ville*/
.carte_sgv_infobulle:after {
  /*content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;*/
}
