.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;
}

.popup-open .popup {
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
  
.popup .shader {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: transparent;
	cursor: pointer;
	z-index: 100001;
	transition: opacity 0.5s ease;
}

.popup .alert {
	pointer-events: none;
}

body.popup-open .popup .alert {
	pointer-events: all;
}



.popup .alert.bottom_left {
	position: absolute;
	width: 90%;
	bottom: 10px;
	height: auto;
	transform: translateY(0px);
	transition: transform 1s ease-in-out;
	border: solid 2px white;
	color: #000;
	background-color: #fff;
	z-index: 100002;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
	padding-top: 25px;
	display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
}

.popup-open .popup .alert.bottom_left {
    bottom: 10px;
}

.popup .alert.bottom_left .close {
	z-index: 100002;
}

.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-bottom: 10px;
	padding: 0px 15px 0px 10px;
}

.popup .alert > * {
	z-index: 1;
}

.popup .alert .close-btn {
	position: absolute;
	right: 20px;
    top: 15px;
	cursor: pointer;
	font-size: 20px;
	color: white;
}

.popup .alert .popup-logo {
	text-align: center;
	margin-top: -10px;
	display: flex;
	gap: 10px;
	align-items: center;
	flex-direction: column-reverse;
}

.popup .alert .popup-logo .img-cont {
	max-width: 100%;
}

footer.gray .popup .popup-logo {
	background: none;
}

.popup .custom-button.align-center {
	justify-content: center;
}

.popup h2.title {
	font-size: 20px;
	padding: 0px 35px;
	font-family: "freight-sans-condensed-pro",sans-serif;
	font-weight: 700;
	margin-bottom: 0px;
}

.popup .alert form.form-basic input[type="text"].form-control {
	font-size: 16px;
	margin-top: -1px;
	padding-left: 10px;
}

.popup .alert form.form-basic button {
	padding: 4px 10px;
    min-height: 35px;
	font-size: 16px;
}

.popup .alert .read-more {
    padding: 4px 10px;
    min-height: 35px;
	font-style: normal;
	display: flex;
    align-items: center;
	font-size: 16px;
	font-weight: normal;
}

.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_left {
		width: 40%;
		right: unset;
		left: 10px;
	}
}

@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_left {
		width: 25%;
	}

	.popup .alert.bottom_left h2.title {
		font-size: 22px;
		line-height: 1em;
	}

	.popup .alert.alert.bottom_left .description {
		font-size: 16px;
		padding: 0px 15px;
	}

	/* .popup .alert.bottom_left .popup-logo {
		padding: 0px 10px;
	} */
}

@media screen and (min-width: 90em) {
	.popup .alert.bottom_left {
		width: 20%;
	}
}






