nav {
  height: inherit;
  float: right;
}

#menu-icon {
	display: none;
	width: 50px;
	height: 50px;
	background: url('/layout/images/icon/menu.png') center;
  background-size: cover;
}

nav ul {
  background-color: black;
  height: inherit;
	list-style: none;
  margin: 0;
}

nav li {
	display: inline-block;
	float: left;
  height: inherit;
  line-height: 50px;
  border: none;
  margin: 0;
  text-align: center;
  color: white;
  font-size: 16px;
  font-family: 'libel-suit';
}

nav li.link a {
  padding: 0px 10px;
  text-decoration: none;
  height: inherit;
    display:block;
  line-height: 50px;
  color: white;
  font-size: 16px;
  font-family: 'libel-suit';
}

nav li.link:hover {
	background-image: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2));
}

/*nav li {
  border-left: 1px white solid;
}*/

@media only screen and (max-width : 640px) {
    nav {
        width: 50px;
    }

    #menu-icon {
        display: inline-block;
    }

    nav ul {
        display: none;
        position: absolute;
        background-color: black;
        border: 2px solid rgb(231, 161, 38);
        top: 50px;
        right: 0px;
        width: 150px;
        padding: 0;
        z-index: 1;
        border-radius: 4px 0 4px 4px;
    }

    nav li {
        /*text-align: center;*/
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav li.spacer {
        display: none;
    }

    nav:hover ul {
        display: block;
    }
}
