.popup-email-confirmation {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 45rem;
	height: auto;

	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	background-color: #fff;
	box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.15);

	padding: 6.2rem 3rem 5rem 3rem;
}

.popup-email-confirmation.show {
	display: flex;
}

.popup-email-confirmation__title {
	font-size: 2.2rem;
	font-weight: 400;

	margin-bottom: 3rem;
}

.popup-email-confirmation__content {
	position: relative;

	width: 100%;
	height: 13.6rem;

	display: flex;
	align-items: flex-start;
	justify-content: center;

	border-radius: 1rem;
	background-color: #f3f3f3;

	padding-top: 2rem;
	margin-bottom: 6.2rem;
}

.popup-email-confirmation__text {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 157%;
	text-align: center;

	margin-bottom: 0;
}

.popup-email-confirmation__text a {
	color: #3F892C;
	font-weight: 600;
}

.popup-email-confirmation__text a:hover {
	text-decoration: underline;
	text-decoration-color: #3F892C;
}

.popup-email-confirmation__content img {
	position: absolute;
	bottom: -4rem;
}

.popup-email-confirmation__button {
	width: 100%;
	height: 5rem;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 3rem;
	background-color: #191919;
	transition: background-color 0.3s ease;

	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;

	border: none;
	outline: none;
}

.popup-email-confirmation__button:hover {
	background-color: #3F892C;
}

.popup-email-confirmation__close {
	position: absolute;

	top: 1rem;
	right: 1rem;
}