.popup-window {
  background: #1a1a1c80;
  position: fixed;
  height: 100%;
  width: 100%;
  opacity: 1;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.popup-container {
  padding: 24px;
  max-height: 90%;
  width: 55%;
  background-color: white;
  overflow: auto;
  border-radius: 3px;
}

.popup-description {
  margin-bottom: 20px;
}

.popup .cmp-button {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .popup .popup-button, .popup .cmp-button {
    display: block;
    width: 100%;
  }

  .popup .popup-container {
    width: 90%;
  }
}

/* Hide element only in AEM Author mode */
.aem-AuthorLayer-Edit .popup-window {
  display: none;
}
