.popup-banner {
	position: fixed;
	z-index: 10001;
	top: -5000px;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.6);
	opacity:0;
	transition: opacity 2s ease-in-out, top 2s ease-in-out;
}

.popup-banner.active {
	top:0;
	opacity:1;
}

.popup-banner .frame {
    border: 13px solid white;
    -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,0.5);
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.5);
	position:relative;
	background-color:white;
	margin:0 auto;
	width:500px;
}
.popup-banner .frame .popup-close {
	text-align:center;
	width: 26px;
	height: 26px;
	line-height: 26px;
	background-color: rgb(61, 205, 88);
	color:white;
	border-radius: 50%;
	display: block;
	position: absolute;
	right: -12px;
	top: -12px;
	cursor:pointer;
}
.popup-banner.active .frame {
	

}

.popup-banner .frame .ce-bodytext{
	box-sizing: border-box;
	padding:40px;
}

@media (max-width: 540px) {
	.popup-banner .frame {
		width:90%;
	}
	.popup-banner .frame .ce-bodytext{
		padding:5vw;
	}
}