#popup-screen {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
#popup-screen.hidden {
	opacity: 0;
	pointer-events: none;
}
#popup {
	background-color: #fff;
	box-shadow: 10px 10px 60px #0007;
	width: 60%;
	max-width: 500px;
	height: auto;
	text-align: center;
	border-radius: 8px;
	padding: 15px 60px;
	position: relative;
	transition: transform 0.5s ease;
	background-color: #F5F5F5;
}
#popup-x {
	position: absolute;
	right: 15px;
	cursor: pointer;
}