.popup{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	z-index: 99999999;
}
.popup > div{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	height: 100%;
	-ms-align-items: flex-start;
	align-items: flex-start;
	justify-content: center;
	max-height:100%;
	overflow-y: scroll;
	padding:5vh 4vw;
}
.popup > div > div{
	background-color: #fff;
	padding:4vw;
	max-width:900px;
	margin: 0 auto;
} 