/*! SVG Türkiye Haritası | CSS | MIT Lisans | dnomak.com */



.svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  position: relative; 
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
  position: absolute;
  z-index: 2;
}
.il-isimleri .infoCart {
  display: inline-block;
  background: #086b97;
  color: #fff;
  padding: 5px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align:center;
}

#guney-kibris {
  pointer-events: none;
}

.filigran-logo{
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42%;
    height: auto;
    opacity: 0.05;
    z-index: 100;
    pointer-events: none;
    filter: brightness(0) invert(1);
                }

.il-isimleri b {
    color: #fff;
    font-weight: 500;
}

/* İşkur İkonu için ek bir stil */
.iskur-pin-icon {
    position: absolute;
    z-index: 1001;
    transform: translate(-20%, -90%);
    animation: pin-sallanma 1.5s ease-in-out infinite;
}

.iskur-logo-img{
    width: 30px;
    height: 45px;
    
}


@keyframes pin-sallanma {
    0%, 100% {
        /* Başlangıç ve bitiş: Normal konumundan biraz yukarıda olsun */
        transform: translate(-50%, -100%) translateY(0); 
    }
    50% {
        /* Orta nokta: Biraz daha aşağıya insin (Zıplama hissi için) */
        transform: translate(-50%, -100%) translateY(5px); /* 5px aşağı kaydır */
    }
}