.popup-container.fechado{
	display:none;
}
.popup-container{
	width:100%;
	height:100%;
	position:fixed;
	z-index:99999;
	top:0;
	left:0;
}
.popup-flex{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: rgba(0,0,0,.55); /*#1C1326*/
}
.popup-content{
	position:absolute;
}
.popup-banner-desktop{
	width:85%;
	margin:0 auto;
	/*max-width:900px;*/
}
.popup-banner-mobile{
	height: 90vh;
	margin:0 auto;
	/*width:96%;*/
	/*max-width:500px;*/
}
@media (max-width: 899px) {
	.popup-banner-desktop{display:none;}
	.popup-banner-mobile{display:block;}
}
@media (min-width: 900px) {
	.popup-banner-desktop{display:block;}
	.popup-banner-mobile{display:none;}
}
.popup-fechar{
	width:60px;
	height:60px;
	width:3.75rem;
	height:3.75rem;
	background:#59E18B; /*$corPrimaria*/
	border-radius:100%;
	position: absolute;
	text-align:center;
	transition: all .3s ease;
	transform: scale(1.1);
	
	display: flex;
	top: -30px;
	top:-1.875rem;
	right: 30px;
	right: 1.875rem;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.popup-fechar:hover{
	background:#7AFFAB; /*$corTerciaria*/
}
.popup-fechar::before,
.popup-fechar::after{
	width:30px;
	width:1.875rem;
	height:7px;
	height:0.4375rem;
	background:#555;
	content:'';
	position: absolute;
}
.popup-fechar::before{
	transform:rotate(-45deg);
}
.popup-fechar::after{
	transform:rotate(45deg);
}