.wpgr-modal-outer {
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.wpgr-modal-outer.open {
	opacity: 1;
	pointer-events: all;
	z-index: 20;
}

.wpgr-modal-inner {
	max-width: 600px;
	/* min-width: 400px;
	min-height: 200px; */
	background: white;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
