#map-wrap {width:100%;height:600px;position:relative}
#chartdiv {width:100%;height:100%;}

.jvectormap-tip {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #ccc !important;
  border-radius: 6px;
  font-size: 13px;
  padding: 6px 8px;
  z-index: 999999 !important;
  pointer-events: none;
}

.jvectormap-marker {
  display: none !important;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2BBD2E;
  position: absolute;
  box-shadow: 0 0 0 rgba(43, 189, 46, 0.6);
  animation: pulseAnim 1.5s infinite;
  animation-delay: 0s; 
}

@keyframes pulseAnim {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(43, 189, 46, 0.7);
  }
  70% {
    transform: scale(1.0);
    box-shadow: 0 0 0 15px rgba(43, 189, 46, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(43, 189, 46, 0);
  }
}

.inline-flag {
  position: absolute;
  width: 24px;
  height: 16px;
  transform: translate(8px, -10px);
}

.star-wrapper {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 99999;
}

.star-core {
  width: 18px;
  height: 18px;
  background: #F0AC00;
  position: absolute;
  left: 3px;
  top: 3px;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  filter: drop-shadow(0 0 4px rgba(240, 172, 0, 0.8));
}

.star-pulse-ring {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  animation: pulseStar 1.5s infinite;
  animation-delay: 0.75s; 
  z-index: -1;
}

@keyframes pulseStar {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(240, 172, 0, 0.7);
    opacity: 1;
  }
  70% {
    transform: scale(1.0);
    box-shadow: 0 0 0 15px rgba(240, 172, 0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(240, 172, 0, 0);
    opacity: 1;
  }
}

@media (max-width: 768px) {

  .invited-sec .btn-view {
    margin-top: 6px !important;
    margin-bottom: 20px !important;
  }

  .pulse {
    width: 4px !important;
    height: 4px !important;
    box-shadow: 0 0 0 5px rgba(240, 172, 0, 0.25);
    animation: pulse-mobile 1.6s infinite;
    animation-delay: 0s;
  }

  @keyframes pulse-mobile {
    0% {
      box-shadow: 0 0 0 0 rgba(43, 189, 46, 0.7);
    }
    70% {
      box-shadow: 0 0 0 5px rgba(43, 189, 46, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(43, 189, 46, 0);
    }
  }

  .inline-flag {
    width: 12px !important;
    height: 8px !important;
  }

  #map-wrap {
    height: 250px;
  }

  .star-wrapper, .star-core {
    width: 9px !important;
    height: 9px !important;
  }

  .star-pulse-ring {
    width: 9px;
    height: 9px;
    top: 2px;
    left: 2px;
    animation: pulseStarMobile 1.6s infinite;
    animation-delay: 0.8s; 
  }

  @keyframes pulseStarMobile {
    0% {
      transform: scale(0.4);
      box-shadow: 0 0 0 0 rgba(240, 172, 0, 0.7);
      opacity: 1;
    }
    70% {
      transform: scale(0.6);
      box-shadow: 0 0 0 8px rgba(240, 172, 0, 0);
      opacity: 0.8;
    }
    100% {
      transform: scale(0.4);
      box-shadow: 0 0 0 0 rgba(240, 172, 0, 0);
      opacity: 1;
    }
  }
}

.map_mobile_fix {
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  .map_mobile_fix::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 5; 
    pointer-events: auto;
  }
}

.pulse,  
.jvectormap-tip {
  position: absolute;
  z-index: 10 !important;
}

.star-wrapper, .pulse, .inline-flag {
  transition: all 0.4s ease;
  will-change: left, top;
}
