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

.svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
	position: absolute;
	top:50px;
	left: 50px;
	z-index: 2;
  font-family: 'Arial';
}
.il-isimleri div {
  font-family: 'Arial';
  display: inline-block;
  background: #36b84b;
  color: #fff;
  padding: 8px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#svg-turkiye-haritasi path {
  cursor: pointer;
  fill: #686868;
}
#svg-turkiye-haritasi path:hover {
  fill: #36b84b; 
}
#svg-turkiye-haritasi g.found path {
  fill: #36b84b;
}
#guney-kibris {
  pointer-events: none;
}
.info{display:none;}
.info.genel{display:block;}
.ilismi{ color: #36b84b;}


.home_map{
  position: relative;
  padding: 120px 0;
}
.map_card{
  width: 200px;
  height: 202px;
  position: absolute;
  background-color: #272727;
  display: none;
  flex-direction: column;
  border: 2px solid #272727;
  overflow: hidden;
  z-index: 3;
}
.map_card.multiple{
  box-shadow:
    8px 8px 0 #343434,  /* hafif daha açık */
    16px 16px 0 #404040;  /* biraz daha açık */
}

.map_card img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
}

.map_card span{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}


.map_modal{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all ease 300ms;
  overflow: hidden;
}
.map_modal.active{display: flex;}
.map_modal .modal_content{
  max-width: 1400px;
  width: 90%;
  height: 700px;
  overflow-y: auto;
  background: #fff;
  padding: 30px;
  position: relative;
}

.map_modal .sidebar{
  position: relative;
}
.map_modal .sidebar .widget{
  position: sticky;
  top: 0;
}
.map_modal .sidebar h6{
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8d4;
  font-size: 24px;
  margin-bottom: 15px;
  color: #1D2A37;
  text-align: start;
  font-weight: 300;
}

.map_modal .sidebar ul {
  margin-bottom: 0;
  padding: 0;
}

.map_modal .sidebar ul li {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 5px;
  text-align: start;
}

.map_modal .sidebar ul li a{
  color: #1D2A37;
  font-weight: 600;
}
.map_modal .sidebar ul li a:hover, .map_modal .sidebar ul li.active a{
  color: #36b84b;
}

.map_modal .sidebar ul li i{
  font-size: 12px;
  margin-right: 12px;
  color: #36b84b;
}

.map_modal .close{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99999;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
}

.map_modal .data_content{
  text-align: left;
}


.map_modal .data_content .slide_img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.map_modal .data_content h5{
  margin-top: 20px;
}

.map_modal .data_content ul{
  padding: 0;
  display: flex;
  gap: 20px;
}
.map_modal .data_content ul li{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  gap: 30px;
}
.map_modal .data_content ul li:first-child{
  width: 70%;
}
.map_modal .data_content ul li a i{
  font-size: 25px;
  color: #36b84b;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.map_modal .data_content ul li a{
  font-size: 20px;
}
.map_modal .data_content ul li a:hover{
  color: #36b84b;;
}

.map_modal .data_content ul li iframe{
  width: 100%;
  height: 400px;
}

.sub_list{
    max-height: 2000px;
    height: 0;
    overflow: hidden;
    transition: all ease 200ms;
}
.sub_list.active_sub{
  height: auto;
}

.sub_list_item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff !important;
  background: #1D2A37;
  padding: 5px 10px;
}
.sub_list_item i{color: #fff  !important;}
.sub_list_item:hover{
  display: flex;
}

.sube_item{
  display: flex;
  margin-left: 10px;
  padding: 5px 0;
}

.map_modal .data_content .kampanya_popup img{
  height: 300px;
  object-fit: cover;
}

@media (max-width:1199px) {
  .map_modal .data_content .slide_img{height: 600px;}
}

@media (max-width:992px) {
  .map_modal .data_content ul {flex-direction: column;}
  .map_modal .data_content ul li iframe{height: 300px;}
  .map_modal .data_content .slide_img{height: auto;}
  .map_modal .sidebar{padding: 20px;}
  .map_modal .modal_content{padding: 10px 0;}
  .map_modal .data_content ul li{width: 100% !important;}
  .map_modal .data_content ul li a{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  .map_modal .data_content ul li a:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }
  .map_modal .modal_content{height: 600px;}
  .home_map{padding: 80px 0;}
}