nav#main-nav {
	position: relative;
	z-index: 10001;
}

dialog#spm-popup-content {
	position: fixed;
	inset: 0;
	margin: auto;
	z-index: 9999;
	height: fit-content;
	max-height: 90vh;
	padding: 30px;
	background: #ffffff;
	border: none;
	box-shadow: 
		0 15px 40px rgba(0, 0, 0, 0.15),
		0 0 0 100vmax rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.2s ease-out, transform 0.2s ease-out;
	pointer-events: none;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

dialog#spm-popup-content[open] {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

dialog#spm-popup-content button {
	position: absolute;
	top: 8px;
	right: 8px;
	overflow: hidden;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	border-radius: 30px;
	font-size: 2em;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	text-align: center;
}

dialog#spm-popup-content button:hover {
	color: #fff;
	background-color: #000;
}

#spm-popup-content figure {
	width: 100%;
	max-width: 100%;
	left: 0;
}