.newsletter_lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: var(--viewport-height);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 110;
	display: none;
}

body.newsletter-active .newsletter_lightbox {
	display: flex;
}

body.newsletter-active {
	overflow: hidden;
}

.newsletter_lightbox_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	cursor: pointer;
}

.newsletter_lightbox_inner_container {
	width: 100%;
	max-width: 800px;
	padding: var(--vgap-universal) var(--hgap-universal);
	padding-top: calc( var(--hgap-universal) + 52px);
	max-height: 100%;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.newsletter_lightbox_inner_container::-webkit-scrollbar {
	display: none;
}

.newsletter_lightbox_innermost_container {
	background-color: var(--color-light-grey);
	padding: calc(var(--gap-round-box) * 2);
	border-radius: var(--br-box);
	position: relative;
}

.newsletter_lightbox_innermost_container .headline {
	margin-bottom: var(--gap-round-box);
}

.newsletter_close_button {
	width: 52px;
	height: 52px;
	position: absolute;
	top: var(--gap-round-box);
	right: var(--gap-round-box);
	background-color: var(--color-white);
	border-radius: var(--br-pill);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.newsletter_lightbox_innermost_container .newsletter_close_button:hover {
	text-decoration: none;
}

.newsletter_close_button:hover,
.newsletter_close_button:visited {
	text-decoration: none;
}

.newsletter_close_button::after {
	content: '\e5cd';
	font-weight: normal;
	font-family: var(--ff-icon-font);
	font-size: var(--fs-icon);
	color: var(--color-black);
	text-decoration: none;
}

.cr_form-component {
	margin-bottom: var(--vgap-universal);
}

.newsletter_lightbox_innermost_container button {
	margin-top: var(--gap-round-box);
}
