#backdrop{
	bottom:0;
	background:rgba(0,0,0,.7);
}

#backdrop,#popup{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

#popup{
	z-index:3500;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-flow:column nowrap;
	    flex-flow:column;
	-ms-flex-pack:center;
	    justify-content:center;
}

	#popupContainer{
		position:relative;
		width:650px;
		max-width:94%;
		height:auto;
		margin:0 auto;
		background: rgba(255, 255, 255, 0.9)
	}
	
		#popup .wrapper{
			padding:40px;
		}
		
		#popupClose {
		    position: absolute;
		    top: -15px;
		    right: -15px;
		    color: white;
		    font-size: 20px;
		    background: #123257;
		    padding: 4px 12px;
		    border-radius: 50%;
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    text-align: center;
				cursor: pointer;
		}
	
		#popupContainer img {
			width: 100%;
			height: auto;
			max-width: 100%;
		}	