.popup {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: -1;
	inset: 0;
	margin: auto;
	width: 100%;
	max-width: 90%;
	height: auto;
	max-height: 90%;
	background: var(--light);
	border-radius: 1rem;
	box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 576px) {
	.popup {
		max-width: 66.66%;
		max-height: 66.66%;
	}
}

@media (min-width: 768px) {
	.popup {
		max-width: 50%;
		max-height: 50%;
	}
}

.popupWrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	height: auto;
	padding: 3rem 1.5rem;
}

.popupWrapper h3 {
	font-family: var(--heading);
	font-size: 1.5rem;
	padding: 0;
	margin: 0;
}