@charset "UTF-8";
.zepter-popup-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.zepter-popup-overlay.is-visible {
  opacity: 1;
}
.zepter-popup-modal {
  display: flex;
  flex-direction: column;
  background-color: black;
  border-width: 5px;
  border-style: solid;
  border-color: black;
  padding: 10px;
  border-radius: 8px;
  min-width: 90vw;
  max-width: 90vw;
  height: auto;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 980px) {
  .zepter-popup-modal {
    min-width: 600px;
    padding: 20px;
  }
}
.zepter-popup-modal-header {
  position: relative;
  z-index: 2;
}
.zepter-popup-modal-header.has-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.zepter-popup-modal-header h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
.zepter-popup-modal-header-close-button {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  outline: none !important;
}
@media screen and (min-width: 980px) {
  .zepter-popup-modal-header-close-button {
    top: -32px;
    right: -32px;
  }
}
.zepter-popup-modal-header-close-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.zepter-popup-modal-header-close-button:hover svg {
  fill: #fff;
}
.zepter-popup-modal-header-close-button svg {
  width: 24px;
  height: 24px;
  fill: #333; /* Mo�esz zmieni� kolor */
  transition: fill 0.2s ease;
}
.zepter-popup-modal-body {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-height: calc(90vh - var(--zepter-popup-modal-header-height));
  overflow-y: auto;
}
.zepter-popup-modal-body-image {
  display: block;
  width: 100%;
  height: auto;
}