#navBar {
	position: fixed;
	width: 223px;
	margin-top: 10px;
    margin-right: 19px;
	z-index: 999999;
	right: 0;
	display: none;
}
.navButton {
	width: 80px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	position: relative;	
	background-color: #132649;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.4s;
	right: 20px;
	float:right;
}
.navButton::after {
	content: '\f00d';
	font-family: FontAwesome;
	font-weight: normal;
	position: absolute;
	right: 32px;
	top: -4px;
	transition: 0.3s;
	color: white;
	font-size: 18px;
	opacity: 0;
}
.navButton img {
	transition: all 1s;
	margin-left: 0;
	vertical-align: initial;
	width: 20px;
	display: none;
}
.navButton span {
	transition: all 0.4s;
	position: absolute;
	font-family: 'Comfortaa', cursive;
	font-size: 18px;
	font-weight: bold;
	line-height: 47px;
	color: #fff;
	text-transform: uppercase;
	left: 10px;
	opacity: 1;
}
.navButton.active {
	transition: all 0.4s;
	width: 222px;
	right: 0;
}
.navButton.active::after {
	opacity: 1;
}
.navButton.active img {
	transition: all 1s;
	position: relative;
	margin-left: -130%;
}
.navButton.active span {
	opacity: 1;
	transition: all 1s;
}
.navvv {
	width: 222px;
    margin-top: 42px;
	position: relative;
	background-color: #2f2f2f;
	display: none;
}
.navvv ul {
	padding: 5px 12px 0 2px;
	margin: 0;
}
.navvv ul li {
	list-style: none;
    background-repeat: repeat-x;
    border-bottom:1px dashed #515151;
    background-color: transparent;
    display: block;
    line-height: normal;
    overflow: hidden;
    padding: 10px 0;
}
.navvv ul li:last-child {
    border-bottom: 0px solid #ccc;
}
.navvv ul li a {
	text-decoration: none;
	font: bold bold 16px/22px "Open Sans";
	text-transform: uppercase;
	color: #FFFFFF;
	transition: all 0.4s;
}

@media all and (min-width: 1112px) {
	.navButton:hover {
		background-color: #3a3a3a;
	}
	.navvv ul li a:hover {
		color: #1abc9c;
		transition: all 0.4s;
	}
}