.menu {
  width: 190px;
  height: 100%;
  position: fixed;
  background-color: #0ff;
  background: linear-gradient(to right, rgba(0,160,160,.25) 0%,rgba(0,160,160,0) 100%);
  transition: all 1s;
  left: 0;
  top: 0;/*185px;*/
  z-index: 50;
  overflow-y: auto;
  padding-bottom: 100px;
}
.menu.closed { left: -190px; }

#toggle {
  width: 56px;
  background: linear-gradient(to right, rgba(0,160,160,.75) 0%,rgba(0,160,160,.25) 100%);
  height: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;/*185px;*/
  bottom: 0;
  left: 0;
  z-index: 25;
  transition: all .7s ease;
  cursor: pointer;
}
#toggle.closed {
  left: 0px;
  top: 0;/*185px;*/
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
}

.container.closed  {
  padding-left: 180px;
  padding-right: 20px;
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 16px;
  padding-right: 16px;
  text-align: center;
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
}

.menu ul li {
  font-size: 20px;
  margin: 0 0 17% 0;
  display: block;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  position: relative;
  letter-spacing: -0.7px;
  transition: all .3s;
}

.menu ul li a {
  color: #fff;
  border: none;
}
.menu ul li:not(.nohover):after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	transform: translateX(-50%);
	height: 1px;
	background: #fff;
	transition: .35s;
}
.menu ul li:not(.nohover):hover:after,
.menu ul li:not(.nohover):focus:after,
.menu ul li:not(.nohover):active:after {
	width: 67%;
}

.burger {
	font-size: 30px;
	color: #fb6;
	display: block;
	position: absolute;
	margin: auto;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	text-align: center;
	opacity: 1;
	transition: color .35s;
	user-select: none;
}
#toggle:hover .burger {color: #fff;}

.closed .burger {display: none;}

