.popupblock .popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.popupblock .popup-overlay.active {
  display: flex;
}

.popupblock .popup-inner {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow-y: hidden;
  max-width: 90%;
  max-height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.popupblock .popup-inner .popup_div {
  height: 100%;
}

.popupblock .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  z-index: 10000;
}

/* Optionaler Trigger-Button */
.popup-trigger {
  max-width: 200px !important;
}


@media only screen and (max-width: 500px) {
.popupblock .popup-inner .popup_div {
  padding: 10px !important;
}

.popupblock .popup-inner {
  padding: 10px !important;
  max-width: 100%;
  max-height: 100%;
}
}
