.is-style-scroll-popup {
	position: relative;
}
.popup-active {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	max-height: 90vh;
	overflow: auto;
}
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	display: none;
}
.popup-overlay[style*="display: block"] {
	display: block;
}
.popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: white;
	color: black;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 5px;
	border-radius: 4px;
	width: 35px;
	height: 35px;
	box-shadow: 0px 0px 4px #00000021;
}
@media only screen and (max-width: 49rem) {
    .popup-active {
        width: 90%;
    }
}
