.popup {
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 100000;
	transition: opacity 0.5s ease;
	overflow: hidden;
}

.open .popup {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.5s ease;
}

.popup .shader {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 248, 0.65);
	cursor: pointer;
	z-index: 100001;
	transition: opacity 0.5s ease;
}

.popup .alert.center {
	position: relative;
	width: 100%;
	max-width: 335px;
	height: auto;
	transform: translate(0%, 30%);
	margin: 0 auto;
	transition: .5s ease-in-out;
	z-index: 100002;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: #fff;
}

.popup .alert.center .content-section {
	position: relative;
	padding: 98px 15px 20px;
}

.popup .alert.center .content-section .close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

.popup.form .newsletter-signup {
	display: unset;
}

.popup.form .cta-button,
.popup.no-form .newsletter-signup {
	display: none;
}

.popup.no-form .cta-button .button {
	color: #FFF;
	background-color: var(--orange);
	padding: 10px 30px;
}

.popup .alert .description {
	font-size: 15px;
	margin: 10px 0 20px;
	text-align: left;
	font-family: var(--font-body);
}

.popup .alert > * {
	z-index: 1;
}

.popup .alert .close-btn {
	position: absolute;
	right: 12px;
	top: 14px;
	cursor: pointer;
	height: 20px;
	color: var(--orange); 
	width: 20px;
	font-size: 24px;
}

.popup .alert .img-cont .desktop {
	display: none;
}

.popup .alert .img-cont .mobile {
	display: block;
}

.popup .alert .content-section .logo {
	display: block;
	position: absolute;
	top: 20px;
}
.popup .alert .content-section .logo img {
	max-width: 50px;
	aspect-ratio: 71 / 76;
}

.popup h2.title {
	text-align: left;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 0;
	font-family: var(--font-header);
	line-height: 30px;
}

.popup .alert form.form-basic input[type="text"].form-control {
	font-size: 16px;
	color: #2A2924;
	font-weight: 700;
	padding-left: 10px;
	background: #FFF;
	opacity: 1;
	height: 40px;
}

.popup .alert form.form-basic input[type="text"].form-control::placeholder {
	color: #2A2924;
	opacity: 1;
}

.popup .alert form.form-basic button {
	padding: 0;
	min-height: 40px;
	display: flex;
	align-items: center;
	font-weight: 700;
	color: #fff;
	width: 175px;
	justify-content: center;
}

.popup.no-form .alert .more-info {
	display: flex;
}

.popup .alert.center form.form-basic .form-group {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}

@media screen and (min-width: 64em) {
	.popup .alert .img-cont img.desktop {
		display:block;
		aspect-ratio: 384 / 450;
		width: 384px;
		height: auto;
	}

	.popup .alert .img-cont {
		min-width: 384px;
	}

	.popup .alert .img-cont .mobile {
		display: none;
	}

	.popup .alert .content-section .logo img {
		max-width: 75px;
	}

	.popup .alert.center {
		position: relative;
		min-width: 800px;
		height:450px;
		transform: translate(0%, 50%);
		margin: 0 auto;
		transition: .5s ease-in-out;
		z-index: 100002;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
		display: flex;
		flex-direction: row;
		align-items: center;
		text-align: center;
	}

	.popup .alert.center .content-section {
		position: relative;
		height: 100%;
		padding: 115px 20px 50px;
	}

	.popup h2.title {
		text-align: left;
		font-size: 46px;
		font-weight: bold;
		margin-bottom: 0;
		font-family: var(--font-header);
		line-height: 47px;
	}

	.popup .alert .description {
		font-size: 18px;
		margin: 10px 0 40px;
		text-align: left;
		font-family: var(--font-body);
		font-weight:400;
	}

	.popup .alert form.form-basic button {
		padding: 0;
		min-height: 40px;
		display: flex;
		align-items: center;
		font-weight: 800;
		color: #fff;
		width: 200px;
		font-size: 18px;
	}
}