nav {
	background: #10b8e1;
	margin: 0;
	padding: 15px 0;
    width: 230px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
	bottom:0;
	display:none;
	z-index:999
}

nav li {
  display: block;
}
nav li a {
  display: block;
  color: #fff;
  font-size: 100%;
  text-transform:uppercase;
  padding: 10px 25px 10px 45px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s;
}
nav li a:hover, nav li a:focus {
    border-color: transparent;
    background: #fff;
    color: #10b8e1;
}

/* Burger */
#toggle-menu {
	position: fixed;
	right: 15px;
	top: 40px;
	background: rgba(255, 255, 255, 0.9);
	padding: 5px 18px 5px 13px;
	display: block;
	width: 120px;
	z-index: 999;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
#toggle-menu em {
	display: inline-block;
	position: relative;
	color: #000;
	vertical-align: middle;
	padding: 0 10px 0 0;
	font-style: normal;
	text-transform: uppercase;
}
.hamburger {
	width: 30px;
	position: relative;
	display: inline-block;
	vertical-align: middle
}
.hamburger .bar {
	background: #10b8e1;
	display: block;
	height: 3px;
	margin: 6px;
	position: relative;
	width: 100%
}
.hamburger:hover .bar {
	background: #305899
}

.hamburger.x .bar-top {
	top: 9px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: -webkit-transform .4s;
	transition: transform .4s
}
.hamburger.x .bar-middle {
	opacity: 0;
	-webkit-transition: opacity .3s;
	transition: opacity .3s
}
.hamburger.x .bar-bottom {
	top: -9px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: -webkit-transform .4s;
	transition: transform .4s
}

.opentg {
	right:250px !important;
}
.open {
	display: block !important;
}

@media only screen and (max-width:768px) {
	#toggle-menu {
	right: 15px;
	top: 10px;
	}
}