.search-overlay {
	position: fixed;
	z-index: 2000;
    pointer-events: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.85);
	color: #fff;
	text-align: center;
	padding-bottom: 25%;
	opacity: 0;
	transition: all 0.5s;
}
.search-overlay.toggled { 
    opacity: 1; 
    z-index: 2000;
    pointer-events: auto;
}

.v-align {
	width: 100%;
	height: 100%;
	display: table
}
.v-align > div {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}