/*@import url(https://fonts.googleapis.com/css?family=Vollkorn|Roboto);*/
.toggle-button {
    position: relative;
    top: 50%;
	transform: translateY(-50%);
    height: 20px;
    width: 45px;
    cursor: pointer;
    z-index: 99999999999999999;
	float: right;
	display: inline-block;
	margin-right: 30px;
	*display: none;
}

.bar {
    background-color: #000;
    display: block;
    width: 100%;
    height: 3px;
    border: 0;
	margin-bottom: 6px;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.bar + .bar {
    margin-top: 4px;
}
.middle {
    top: 11px;
}
.bottom {
    top: 22px;
}
.toggle-button:hover {
    opacity: .7;
}
.toggle-active {
	    position: fixed!important;
    top: 8%!important;
    right: 20%!important;

}
.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-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);*/
	background: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .25s, visibility .25s, height .25s;
}
.nav-active {
    opacity: 1;
    visibility: visible;
    height: 100%;
	z-index: 999999999999999;
/*    max-height: 340px;*/
}
.overlay ul {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
	margin: 0!important;
    font-family: "Roboto Condensed"!important;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    list-style: none;
    padding: 0;
}
.overlay ul li {
    display: block;
}
.overlay ul li a {
    color: #fff;
    text-decoration: none;
	opacity: 0;
}

.overlay.nav-active  ul li a {
	opacity: 1;
}