.menu-header {
	position: absolute;
	top: 15%;
	left: 25%;
	right: 0;
	z-index: 101;
	width: 60%;
	height: 20%;

}

.openRanting {
	position: absolute;
	top: -35%;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 101;
	width: 40%;
	height: 40%;
	margin: auto;
}


@media (max-width: 900px) {
	.menu-header {
    	position: absolute;
    	top: 20%;
    	left: 30%;
    	/*right: 0;*/
    	z-index: 101;
    	/*width: 100%;*/
    	/*height: 30%;*/
	}
}

#left-menu {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 15%;
	text-align: center;
	transition: all ease-in-out 0.2s;
	z-index: 9997;
	transition: all 0.5s;
	padding: 0 15px;
	overflow-y: auto;
	background: rgb(0,38,76, 0.6);
}


#left-menu ul {
	padding: 10px;
	margin: 10px;
}

#left-menu ul>li {
	margin: 15px 0px;
	list-style: none;
}

#left-menu ul>li:first-child {
	margin-top: 30px;
}

#left-menu ul>li:last-child {
	margin-bottom: 40px;
}

#left-menu ul>li>a {
	padding: 15px 15px;
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

#left-menu ul>li>a:hover {
	color: #fff;
	background: rgb(0,38,76, 0.6);
}

#openMenu {
	z-index: 10000000;
	display: block;
	text-decoration: none;
	position: fixed;
	left: 0;
	top: 65px;
	background: rgb(236,120,35);
	background: linear-gradient(90deg, rgba(236,120,35,1) 0%, rgba(225,82,39,1) 42%, rgba(218,46,41,1) 100%);
	color: #fff;
	font-size: 24px;
	padding: 10px;
	padding-left: 5px;
	font-weight: bold;
	text-align: center;
	min-height: 38px;
	border-radius: 0 40px 40px 0px;
}

#openMenu.active span {
		animation: rotateIOpenMenu 0.2s forwards;
		display: block;
		line-height: 38px;
}

#openMenu.close span {
		animation: rotateICloseMenu 0.2s forwards;
		display: block;
		line-height: 38px;
}

.active-menu {
		animation: animationOpenMenu 0.5s forwards;
}

.close-menu {
		animation: animationCloseMenu 0.5s forwards;
}

@keyframes animationOpenMenu {
	from {
		transform: translate(-100%, 0);
	}
	to {
		transform: translate(0%, 0);
		}
	}

@keyframes animationCloseMenu {
	from {
		transform: translate(0%, 0);
	}
	to {
		transform: translate(-100%, 0);
	}
}

@keyframes rotateIOpenMenu {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(-180deg);
	}
}

@keyframes rotateICloseMenu {
	from {
		transform: rotate(180deg);
	}
	to {
		transform: rotate(0deg);
	}
}

@media (max-width: 768px) {
	#left-menu {
		min-width: 50%;
		height: 100%;
	}
	#left-menu ul {
		height: 60vh;
		overflow: auto;
	}

	#left-menu>ul::-webkit-scrollbar {
		width: 10px;
	}
	#left-menu>ul::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	#left-menu>ul::-webkit-scrollbar-thumb {
		background: #888;
	}
	#left-menu>ul::-webkit-scrollbar-thumb:hover {
		background: #555;
	}
	.menu-header {
    	position: fixed;
        top: 23%;
        left: 10%;
        bottom: 0;
        /* right: 0; */
        z-index: 101;
        width: 80%;
	}
}
			
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  text-decoration: none;
  border-radius: 10px 10px 10px 10px;
}

a:hover {
  color: #EC7823;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

#header .logoAVN img {
  margin: 40px;
  display: block;
  width: 100px;
}

#header .logoAVN h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .logoAVN h1 a, #header .logoAVN h1 a:hover {
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 13px;
  color: #f4f6fd;
  font-size: 12px;
  position: fixed;
  left: 0;
  bottom: 10px;
  width: 250px;
  z-index: 9999;
  text-align: center;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

