.modal-reveal {
	position: fixed;
	max-width: 80vw;
	width: 90%;
	z-index: 100;
	font-size: 1.1em;
	pointer-events: none;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
	opacity: 0;
}
.modal--open {
	pointer-events: visible;
	opacity: 1;
}
.modal__inner {
	padding: 2.5em;
	color: #fff;
	background: #aaa;
}
.modal__title {
	font-size: 1.5em;
	margin: 0 0 1em 0;
}
.overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s;
	z-index: 10;
}
.overlay.over-open {
	pointer-events: visible;
	opacity: 1;
}
