.popup-block {
  margin-top: 0;
}
.popup-block.preview-admin {
  margin: 2em 0;
  padding: 1em 0;
}
.popup-block:not(.preview-admin) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s all ease-in-out;
  z-index: -9999;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}
.popup-block:not(.preview-admin).open {
  animation: popup 0.5s;
  animation-fill-mode: forwards;
}
.popup-block .popup-contents {
  width: 80%;
  min-width: 300px;
  max-width: 1000px;
  max-height: 80vh;
  overflow: auto;
  margin: auto;
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: -1px 1px 15px 3px rgba(0, 0, 0, 0.73);
}
.popup-block.preview-admin .popup-contents {
  width: 100%;
}

@keyframes popup {
  0% {
    z-index: -9999;
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 9999;
  }
}

/*# sourceMappingURL=popup.css.map */
