.popup-controller {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s;
  overflow: hidden;
  width: calc(100% - 2rem);
  max-height: 500px;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) {
  .popup-controller {
    max-width: 768px;
  }
}
.popup-controller.show-popup {
  visibility: visible;
  pointer-events: all !important;
}
.popup-controller .popup-content {
  width: 100%;
  margin: auto;
  max-height: 500px;
}
.popup-controller .popup-content > *:first-child {
  padding: 20px;
  max-height: 500px;
  height: 100%;
}
.popup-controller .popup-content .full-width {
  width: 100% !important;
  margin: auto !important;
}
.popup-controller .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 99999;
}

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