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

#contour_du_tout{
  /*stroke:rgba(255, 255, 255, 0.2);
  stroke:#344069;
  stroke-width:20px;*/
}

/*Une zone de la carte*/
.enabled {
  cursor: pointer;
  fill:#a6bf4c;
  stroke:rgba(0,0,0,0.3);
  stroke-width:1px;
  transition: fill 0.3s;
}

/*Une zone de la carte survolée*/
.enabled:hover
/*.heyo:hover*/ {
  fill:#839c4b;
  -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:400;
  pointer-events: none;
  position: absolute;
  font-size:1.2em;
  line-height:1em;
  text-align: center;
  background:rgba(255,255,255,0.8);
  padding: 10px;
  z-index: 5;
  margin: 0 auto;
  color: #008894;
  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;*/
}


/* Les villes alentours */
#directions-carte-svg text{
	font-family: 'Open Sans', sans-serif;
	border:1px solid red;
	fill:#FFF;
	font-size:1.6em;
	font-weight:100;
}

#directions-carte-svg .fleche-svg{
	 fill:rgba(0,0,0,0.3);
}

/*Carte de situation France*/
#contour-france{
	stroke:#FFF;
	stroke-width:1px;
	fill:none;
}

#icon_map_svg{
  fill:#005F67;
}