/* Map popup css */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.popup {
  position: relative;
  background: #26262;
  border-radius: 12px;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}
.popup img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #262626;
  padding: 0 60px 0;
}

.popup img.cmap-desktop {
    display:block;
    
}

.popup img.cmap-mobile {
    display: none;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  transition: 0.2s;
}
.close-btn:hover {
  background: #e74c3c;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
    .popup img.cmap-mobile {
        display: block;
        padding: 0;
        height: 90dvh;
    }
    
    .popup img.cmap-desktop {
        display: none;
    }
}
/*End Map popup css */
