#mobile-nav-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	width: 25px;
	height: 20px;
	margin: auto;
	opacity: .5;
	cursor: pointer;
	transition: .2s;
	border: 0;
	box-shadow: none !important;
	outline: 0;
	background: none;
}

.open-menu #mobile-nav-toggle {
	opacity: 1;
}

.open-menu .mobile-nav-toggle-bar:first-child {
	transform: rotate(45deg);
}
.open-menu .mobile-nav-toggle-bar:nth-child(2) {
	opacity: 0;
}

.open-menu .mobile-nav-toggle-bar:last-child {
	transform: rotate(-45deg);
}

.mobile-nav-toggle-bar {
	background: #202229;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	transition: .4s;
	transform-origin: 0;
	border-radius: 2px;
}

.mobile-nav-toggle-bar:first-child {
	top: 0;
}
.mobile-nav-toggle-bar:nth-child(2) {
	top: 9px;
}
.mobile-nav-toggle-bar:last-child {
    top: 18px;
}

.open-menu #mobile-nav {
	transform: translateX(100%);
}
#mobile-nav {
	position: fixed;
	top: 0;
	width: 260px;
	left: -260px;
	height: 100%;
	background: #fff;
	transition: .4s;
	font-family: Roboto,font-sans;
	border: 1px solid #ddd;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
	z-index: 9999;
}
#mobile-nav-inner {
	overflow-y: auto;
	padding: 10px 0;
	position: absolute;
	top: 0;
	bottom: 40px;
	left: 0;
	right: 0;
}
#mobile-nav-list {
	padding-left: 0;
}

.mobile-nav-link {
	color: #3b94d9;
	text-decoration: none;
	display: block;
	padding: 10px 15px;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mobile-nav-link:hover {
	color: #0369b3;
	text-decoration: none;
	background-color: #f1f4f7;
}

#container {
	transition: .4s;
	flex: 1 0 auto;
}
#header, main, #footer {
	transition: .4s;
}

.open-menu #header, .open-menu main, .open-menu #footer {
	transform: translateX(260px);
	overflow: hidden;
}

@media screen and (max-width: 1199px) {
	.nav-wrapper .navbar.navbar-inverse {
		justify-content: center;
	}
	#logo-wrap #logo {
		background-size: 80%;
	}
}

@media screen and (min-width: 1024px) {
	#mobile-nav-toggle {
		display: none;
	}
}

.navbar.navbar-inverse::before, .navbar.navbar-inverse::after {
	display: none;
}