#menu-trigger {
	position:fixed;
	top:20px;
	right:30px;
	width:30px;
	height:40px;
	cursor:pointer;
    font-size:0.8em;
    transition:top 0.4s;
    z-index:2000;
    display:none;
}
#menu-trigger label {
    position:absolute;
    bottom:-10px;
    right:0;
    display:block;
    width:30px;
    text-align:center;
}
body.open #menu-trigger label {
    color:#fff;
}
#menu-trigger span {
	position: absolute;
	left: 0;
	width: 30px;
	height: 3px;
	display: inline-block;
	transition: all .4s;
	background-color:#E48379;
}
#menu-trigger span:nth-of-type(1) {
	top: 10px;
}
#menu-trigger span:nth-of-type(2) {
	top: 18px;
}
#menu-trigger span:nth-of-type(3) {
	bottom: 10px;
}
body.open #menu-trigger span:nth-of-type(1) {
	transform: translateY(8.5px) rotate(-320deg);
    background-color:#fff;
}
body.open #menu-trigger span:nth-of-type(2) {
	opacity: 0;
    background-color:#fff;
}
body.open #menu-trigger span:nth-of-type(3) {
	transform: translateY(-8.5px) rotate(320deg);
    background-color:#fff;
}

#nav-cover {
	background:rgba(0,0,0,0.4);
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:400;
	display:none;
}


/** Media Query **/

@media only screen and (max-width : 720px) {
    #menu-trigger {
        display:block;
    }

}
