.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: absolute;
    bottom: -100%;
	width: 100%;
	height: auto;
	transform: translateY(0);
	transition: .5s ease-in-out;
	color: #000;
	background-color: #fff;
	z-index: 100002;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
	padding: 45px 35px 15px 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
}

/* .popup .alert.bottom_left,
.popup .alert.bottom_right,
.popup .alert.center {
	position: absolute;
    bottom: -100%;
	width: 100%;
	height: auto;
	transform: translateY(0);
	transition: .5s ease-in-out;
	color: #000;
	background-color: #fff;
	z-index: 100002;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
	padding: 45px 35px 15px 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
} */

.popup.form .newsletter-signup {
	display: unset;
}

.popup.no-form .newsletter-signup {
	display: none;
}

.popup.form .more-info {
	display: none;
}

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

.popup .more-info {
	margin-bottom: 10px;
}

.popup .alert .description {
	font-size: 16px;
	margin: 10px 0 20px;
}

.popup .alert > * {
	z-index: 1;
}

.popup .alert > .close {
	z-index: 2;
}

.popup .alert .close-btn {
	position: absolute;
	right: 40px;
    top: 50px;
	cursor: pointer;
	font-size: 20px;
	color: white;
}

.popup .alert .popup-logo {
	text-align: center;
	margin-top: -10px;
	display: flex;
	gap: 20px;
	align-items: center;
	flex-direction: column;
	z-index: 1;
}

.popup .alert .popup-logo .img-cont {
	max-width: 250px;
}

footer.gray .popup .popup-logo {
	background: none;
}

.popup .custom-button.align-center {
	justify-content: center;
}

.popup h2.title {
	font-size: 25px;
	font-weight: bold;
	font-family: var(--font-display);
	margin-bottom: 0px;
}

.popup .alert form.form-basic input[type="text"].form-control {
	font-size: 18px;
	font-weight: 700;
	border: 1px solid var(--black);
	padding-left: 10px;
}

.popup .alert form.form-basic button {
	padding: 0px;
    min-height: 35px;
	display: flex;
    align-items: center;
	font-weight: 700;
}

.popup .alert form.form-basic button > svg {
	display: block;
	padding: 0px;
}

@media (max-width: 440px) {
	.popup .alert form.form-basic button > svg {
		padding: 5px;
		display: none;
	}
}

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

.popup .alert .read-more {
    padding: 4px 10px;
    min-height: 35px;
	font-style: normal;
	display: flex;
    align-items: center;
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 700;
}

.popup .alert.center form.form-basic .form-group{
	margin-top: 20px;
	display: flex;
    /* flex-direction: column; */
    gap: 10px;
	margin-bottom: 10px;
}
/* .popup .alert.bottom_right form.form-basic .form-group,
.popup .alert.center form.form-basic .form-group,
.popup .alert.bottom_left form.form-basic .form-group {
	margin-top: 20px;
	display: flex;
    flex-direction: column;
    gap: 5px;
	margin-bottom: 10px;
} */


footer .footer-bottom .popup p.description {
	margin-left: 0;
}

/* @media screen and (min-width: 48em) {
	.popup .alert.bottom_right,
	.popup .alert.bottom_left {
		width: 50%;
	}
} */

@media screen and (min-width: 64em) {

	.popup .alert.center {
		max-width: 610px;
		min-height: 400px;
		bottom: unset !important;
		left: 50%;
		top: 20%;
		width: 70%;
		transform: translate(-50%, 0%);
	}

	/* .popup .alert.bottom_right,
	.popup .alert.bottom_left {
		width: 50%;
	} */

	.popup h2.title {
		font-size: 35px;
		line-height: 1em;
	}

	/* .popup .alert.bottom_right h2.title,
	.popup .alert.bottom_left h2.title {
		font-size: 32px;
		line-height: 1em;
	} */

	/* .popup .alert.alert.bottom_right .description,
	.popup .alert.alert.bottom_left .description {
		font-size: 18px;
		padding: 0px 20px;
	} */
/* 
	.popup .alert.bottom_right .popup-logo, .popup .alert.bottom_left .popup-logo {
		padding: 0px 10px;
	} */
}

/* @media screen and (min-width: 90em) {
	.popup .alert.bottom_right,
	.popup .alert.bottom_left {
		width: 30%;
	}
} */






