.dialog-popup {
	display: none;
	background-color: rgba(0, 0, 0, 0.8);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 1000;
}
.dialog-popup__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.dialog-popup__box {
	background-color: var(--color-charcoal);
	border-radius: 16px;
	color: var(--color-white);
	padding: 50px 25px;
	max-width: 500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: center;
}
.dialog-popup__cta {
	display: flex;
	gap: 16px;
	justify-content: center;
}
