#global-popup {
	display: none;
	z-index: 999999;
	position: relative;
}


#global-popup .modal-dialog {
	margin-top: 0;
	margin-bottom: 0;
}

#global-popup .modal-content {
	background-color: transparent;
	border-width: 0;
	display: flex;
	flex-direction: column;
}

#global-popup .global-popup--overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	background-color: rgba(0, 0, 0, 0.5);
}

#global-popup .global-popup--modal{
	position: fixed;
	display: flex;
	flex-direction: column;
	aspect-ratio: 350/544;
	max-width: 45vh;
	padding: 30px 15px 0px 15px;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	font-family: 'Nunito Sans', sans-serif;
	background-color: #ebf0f6;
	overflow: hidden;
	min-width: 350px;
}

#global-popup .global-popup--content {
	padding: 20px;
	font-family: 'Nunito Sans', sans-serif;
	text-align: center;
}

#global-popup .global-popup--logo img {
	display: block;
	margin: 20px auto 0px;
	max-width: 50%;
	width: 120px;
	height: auto;
}

#global-popup .global-popup--leaves {
	position: absolute;
	top: 120px;
	left: 10px;
}
#global-popup .global-popup--close {
	position: absolute;
	top: -11px;
    right: 5px;
	cursor: pointer;
	font-size: 2rem;
}

#global-popup .global-popup--img {
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 180px;
}

#global-popup .global-popup--img img {
	visibility: hidden;
}

#global-popup .global-popup--content p{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 1.2rem;
	color: #000;
}
#global-popup .btn{
	margin-bottom: 10px;
}

#global-popup .global-popup--left {
	width: 100%;	
	min-height: 180px;
}

#global-popup .global-popup--right {
	width: 100%;
}

@media (min-width: 815px) {
	#global-popup .modal-content {
		flex-direction: row;
		align-items: center;
	}
	/* #global-popup .global-popup--modal {
		width: 400px;
	} */
	#global-popup .global-popup--content {
		padding: 10px 40px 20px 40px;
	}
	#global-popup .global-popup--left {
		width: 33%;
		float:left;
	}
	#global-popup .global-popup--right {
		width: 67%;
		float:left;
	}
	#global-popup .global-popup--img {
		background-repeat: no-repeat;
		background-size: auto 100%;
		/* min-height: 300px; */
	}
	#global-popup .global-popup--leaves {
		top: 200px;
		left: 220px;
	}
}

