body.modal {
	position: fixed;
}

.modalOuter {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	z-index: 1000;
    display: none;
    height: 100%;
}
.modalInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 767px) {
	.modalBanner {
		width: 90%;
		height: auto;
	}
}
@media screen and (max-width: 896px) and (orientation: landscape) {
	.modalBanner {
		width: auto;
		height: 90%;
	}
}
	
.modalInner a {
	text-align: center;
}