.popup {
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	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: 0;
	transition: opacity 0.5s ease;
}

.popup .alert.center {
	position: relative;
	width: 100%;
	max-width: 315px;
	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: 50px 0 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.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 {
	color: var(--gray);
	margin-bottom: 0;
}

.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 .title {
	/* text-align: center; */
	margin-bottom: 0;
	color: var(--gray)
}

.popup .alert form.form-basic input[type="text"].form-control {opacity: 1;padding: var(--space-2) !important;background-color: var(--white);border: 1px solid var(--gray-500);border-radius: 0;font-size: 16px;color: var(--gray-900);letter-spacing: 0.02rem;line-height: 1;}

.popup .alert form.form-basic input[type="text"].form-control::placeholder {
	color: var(--gray);
	opacity: 1;
}

.popup .alert form.form-basic button {/* background: transparent; */display: flex;padding"CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX";width: auto;}

.popup.no-form .alert .more-info {
	display: flex;
}

.popup .alert.center form.form-basic .form-group {
	/* margin-top: 20px; */
	display: flex;
	gap: 15px;
	flex-direction: column;
}

@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.center {
		position: relative;
		min-width: 800px;
		height:450px;
		transform: translate(0%, 50%);
		margin: 0 auto;
		transition: .5s ease-in-out;
		z-index: 1;
		box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.8);
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 0;
		text-align: center;
	}

	.popup .alert.center .content-section {
		position: relative;
		height: 100%;
		padding: 10px 20px 50px;
	}

	.popup .alert .description {
		font-size: 18px;
		margin: 10px 0;
		text-align: left;
		font-family: var(--font-body);
		font-weight:400;
	}

	.popup .logo {		
		padding: 10px 60px;
	}

}