#trigger-overlay img{ width: 21px !important; height: 18px !important; }
#trigger-overlay, .overlay{ display: none; }
#trigger-overlay{ position: fixed; top: -3px; right: 0px; font-size: 2em; color: #666; background: transparent; border: 0; cursor: pointer; z-index: 1000; }
#trigger-overlay:focus{ outline: 0; }

/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(93,46,135,0.98); z-index: 99999;
}

/* Overlay closing cross */
.overlay .overlay-close {
	width: 28px;
	height: 22px;
	position: absolute;
	right: 20px;
	top: 39px;
	overflow: hidden;
	border: none;
	background: url(../img/btn-close.png) no-repeat center center; background-size: auto 100%;
	text-indent: 200%;
	color: #fff;
	outline: none;
	z-index: 100; cursor: pointer;
}

/* Menu style */
.overlay nav {
	text-align: center;
	position: relative;
	top: 42%;
	width: 100%; margin: 0 auto;
	height: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	width: 70%;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
	width: 100%;
	/* height: calc(100% / 7); */
	height: 45px;
	margin: 0 0 5px 0;
	/*
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	*/
	list-style: none !important;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif; font-size: 1.125em; font-weight: 400; border-bottom: 1px solid rgba(255, 255, 255, .25); text-align: center;
}

.overlay ul li a {
	/* font-size: 32px; */
	/*font-weight: 300;*/
	display: block;
	color: #fff !important;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #e3fcb1;
	text-decoration: none;
}

/* Effects */
.overlay-slidedown {
	visibility: hidden;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
	transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
	visibility: visible;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

@media screen and (max-height: 30.5em) {
	.overlay nav {
		height: 70%;
		/*font-size: 34px;*//*
	}
	.overlay ul li {
		min-height: 34px;
	list-style: none !important;
	}
}