/* ==========================================================================
  popup.css – Popup styles
========================================================================== */

.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup > .popup-inner {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
	position: relative;
	height: 90%;
	overflow-y: scroll;
}

.popup-inner > .popup-close {
  border: none;
  padding: 8px 16px;
  cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
}

.popup-trigger {
	cursor: pointer;
}