#em-popup {
	position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
	background-color: #f8f8f6;
	padding: 15px;
	border-radius: 16px;
	box-shadow: 0px 3px 5px 3px #79797978, 0 0 18px 0px #00000033;
	z-index: 2000;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#em-popup-title {
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 0.5em;
}

#em-popup-content {
	font-size: 1em;
	margin: 30px 0;
}

#backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1999;
}