/*! SVG Türkiye Haritası | CSS | MIT Lisans | dnomak.com */

.harita-wrap {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.harita-wrap svg {
  width: 100%;
  height: auto;
}
.il-tooltip {
  position: absolute;
  z-index: 2;
}
.il-tooltip div {
  display: inline-block;
  background: #35799b;
  color: #fff;
  padding: 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#turkiye-haritasi path {
  fill: #35799b;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#turkiye-haritasi path:hover {
  fill: #234d68;
  cursor: pointer;
}
