/* Obsah popup menu skrytý, dokud ho app.js nevloží do modalu (bez probliknutí) */
.elementor-location-popup { display: none; }
.elementor-popup-modal .elementor-location-popup { display: block; }

/* Popup menu – nahrazuje runtime styly Elementor Pro (mizí s jeho JS):
   tmavý překryv, pravý panel 360px přes celou výšku, zavírací křížek, výsuv. */
.elementor-popup-modal {
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .3s ease;
}
/* .dialog-type-lightbox kvůli přebití transparent pozadí z popup.min.css */
.elementor-popup-modal.dialog-type-lightbox { background: rgba(0, 0, 0, .8); }
.elementor-popup-modal.is-open { opacity: 1; }
.elementor-popup-modal .dialog-widget-content {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 100%;
  margin: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}
.elementor-popup-modal.is-open .dialog-widget-content { transform: translateX(0); }
.elementor-popup-modal .dialog-close-button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  width: 26px;
  height: 26px;
  color: #000;
  cursor: pointer;
  z-index: 2;
}
.elementor-popup-modal .dialog-close-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
