.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(5, 36, 96, 0.86);
  width: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 1000;
  transition: opacity ease-in-out 0.2s;
}

.popups-are-showing {
  overflow-y: hidden;
}

.popups-are-showing .popup-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.popup-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: visible;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity ease-in-out 0.2s;
}

.popup-content.show-popup {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/*# sourceMappingURL=enfold-plus-pop-ups.css.map */
