.toggle-button {
    position: absolute;
    top: 7px;
    right: 0px;
    padding:0;
    margin: 8px 15px 8px 0;
    height: 20px;
    width: 35px;
    cursor: pointer;
    z-index: 3;
}

.bar {
    background-color: #fff;
    display: block;
    width: 100%;
    height: 3px;
    border: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.bar + .bar {
    margin-top: 6px;
}
.middle {
    top: 11px;
}
.bottom {
    top: 22px;
}
.toggle-button:hover {
    opacity: 1.7;
}
.toggle-active .bar {
    background-color: #fff;
}
.toggle-active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
}
.toggle-active .middle {
   opacity: 0;
}
.toggle-active .bottom {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
}

.overlay {
    position: fixed;
    background-color:#040421; 
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
}
.nav-active {
    opacity: 1;
    visibility: visible;
    height: 100%;
/*    max-height: 340px;*/
}
.overlay ul {
    display: block;
    position: relative;
    top: 14%;
    left: 0;
    font-size: 15px;
    font-weight: 300;
	line-height:400%;
    text-align: left;
    list-style: none;
    padding: 0;
	width:1260px;
	margin:auto;
	border-top:0px solid #333;
	max-width:90%;
}
.overlay ul li {
    display: block;
	border-bottom:0px solid #333;
}
.overlay ul li a {
    color: #fff;
    text-decoration: none;
	display:block;
	border-radius:8px;
	border:1px solid #040421;
}

.overlay ul li a:hover {
	font-weight:500;
	background-color:#0d0d38;
	padding-left:20px;
	border:1px solid #333379;
}