.newsletterPopup
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #113D5Aaa;
	z-index: 1000;
	align-items: center;
	justify-content: center;

	display: none;
}

.newsletterPopup.show
{
	display: flex;
}

.newsletterPopup > div
{
	height: 90vh;
	max-height: 600px;
	max-width: 1000px;

	background: var(--wp--preset--color--dblue);
	color: #FFF;
	display: flex;
	gap: 30px;
	align-items: start;

	position: relative;
}

.newsletterPopup .close
{
	background: none;
	border: 0;
	position: absolute;
	top: 0;
	right: 10px;
	color: #FFF;
	width: 40px;
	height: 40px;
	cursor: pointer;
	padding: 0;
	font-size: 2em;
}

.newsletterPopup > div > img
{
	width: auto;
	max-height: 600px;
	height: 100%;
}

.newsletterPopup > div > div
{
	padding: 30px;
	overflow: auto;
	height: 100%;
}



.newsletterPopup p
{
	margin: 10px 0 0;
}

.newsletterPopup input[type=submit]
{
	background: var(--wp--preset--color--orange);
	width: 100% !important;
	color: #FFF;
	border: 0;
	font-size: 1.1em;
	padding: 12px 12px
}
