#map_of_italy path{
  pointer-events: all;
}
#map_of_italy path{
    fill: #0c419a;
    stroke:black;
    stroke-width: 0.2;
    pointer-events:all;
    cursor: pointer;
    transition: 0.7s;
     -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
}
#map_of_italy g{
      transition: 0.7s;
     -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;  
}
#map_of_italy g.hovered {
    opacity: 1!important;    
}
#map_of_italy g.hovered path{
  fill: #05133b;
}
#map_of_italy circle{
    cursor: pointer;
    stroke-width: 1px;
    stroke: black;
    fill: #fafafa;
    transition: 0.7s;
     -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
}
#map_of_italy circle.hovered_circle.capitale{
    fill: #ef6060;
}
#map_of_italy circle.hovered_circle{
    fill: #bababa;
}
#map_of_italy rect{
      stroke-dasharray: 6;
    stroke-width: 1px;
}
.description-map-of-italy{
  font-family: sans-serif;
  pointer-events: none;
  position: absolute;
  font-size: 14px;
  text-align: center;
  background: black;
  padding: 10px 15px;
  z-index: 5;
  line-height: 14px;
  margin: 0 auto;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px #eee;
  transform: translateX(-50%);
  display: none;
}
.description-map-of-italy.active{
  display: block;
}
