.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;
}

.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 {
	max-width: 610px;
	min-height: 300px;
	position: absolute;
	left: 50%;
	top: 10px;
	width: 85%;
	height: auto;
	transform: translate(-50%, 0);
	transition: all 0.5s ease;
	color: var(--light-charcoal);
	background-color: #fff;
	z-index: 100002;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
	padding: 45px 20px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.popup .alert::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: rgba(255,255,255,1);
	background: linear-gradient(180deg, rgba(255,255,255,1) 35%, rgba(255,255,255,.9) 100%);
}
.popup .alert::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: rgba(255,255,255,1);
	background: linear-gradient(0deg, rgba(255,255,255,1) 35%, rgba(255,255,255,.9) 100%);
}

.popup .alert .description {
	font-size: 17px;
}

.popup .alert > * {
	z-index: 1;
}

.popup .alert .close-btn {
	width: 50px;
	padding: 8px;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
	background-image: -webkit-linear-gradient(90deg, rgb(247 89 73) 0%, rgb(214,26,105) 144%);
	border-radius: 10px;
}

.popup .alert .header {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 90%;
}

.popup .alert .popup-logo {
	max-width: 50%;
}

.popup .alert .closer {
	margin: 0;
	padding: 5px;
	position: absolute;
	top: 0px;
	right: 0;
	background-color: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
}

footer.gray .popup .header {
	background: none;
}

.popup .custom-button.align-center {
	justify-content: center;
}

.popup h2.title {
	font-size: 32px;
	line-height: 1.25;
	font-weight: bold;
	color: var(--dark-blue1)
}

.popup .alert form.form-basic input[type="text"].form-control {
	font-size: 17px;
	font-weight: 700;
	border: 1px solid #333333b3;
	padding-left: 10px;
	color: #333333b3;
}

.popup .alert form.form-basic button {
	padding: 4px 20px;
	background-image: -webkit-linear-gradient(90deg, rgb(247 89 73) 0%, rgb(214,26,105) 144%);
	border-radius: 0 0 5px 5px;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
}

.popup .alert form.form-basic .form-group {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 4fr 1fr;
}

footer .footer-bottom .popup p.description {
	margin-left: 0;
}

@media screen and (min-width: 30em) {
	.popup .alert form.form-basic button {
		padding: 4px 20px;
		background-image: -webkit-linear-gradient(90deg, rgb(247 89 73) 0%, rgb(214,26,105) 144%);
		border-radius: 0 5px 5px 0;
		color: #fff;
		font-family: var(--font-display);
		font-weight: 700;
		text-transform: uppercase;
	}
}

@media screen and (min-width: 64em) {
	.popup .alert {
		top: 45%;
		width: 85%;
		transform: translate(-50%, -50%);
		padding: 50px 30px 35px;
		text-align: center;
	}

	.popup .close-btn {
		width: 45px;
	}
	
	.popup .alert .header {
		margin-top: 20px;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		gap: 40px;
	}

	.popup .alert .popup-logo {
		max-width: 42%;
	}

	.popup .subtitle {
		font-size: 20px;
	}

	.popup h2.title {
		font-size: 46px;
		line-height: 1em;
	}

	.popup .alert .header {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 30em) {
	.popup .alert form.form-basic .form-group {
		display: flex;
		flex-direction: column;
		width: 75%;
		margin: 20px -20px 20px 28px;
	}
}
