button {
	background: none;
	border: none;
	z-index:99999;
}
button::-moz-focus-inner {
	border: 0;
}
:focus { 
	outline: none; 
}
::-moz-focus-inner {
	border: 0;
}
.btn-nav:hover { 
	cursor: pointer; 
}
.btn-nav:hover .bar {
	background: #FFF; 
}
.bar {
    display: block;
    height: 3px;
    width: 38px;
    background: #FFFFFF;
    margin: 8px auto;
    border-radius: 2px;
}
.btn-nav {
    display: block;
    padding: 10px 15px;
    width: 60px;
    position: fixed;
    right: 30px;
    top: 20px;
    background: linear-gradient(135deg, #008BFF 0%, #00C6FB 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 139, 255, 0.4);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 139, 255, 0.6);
}
.btn-nav:focus { 
	outline: none; 
}
.middle { 
	margin: 0 auto; 
}
.bar {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.animated { 
	z-index: 999; 
}
.animated .arrow-top-r {
    transform: rotateZ(-45deg) translateY(6px);
    width: 20px;
    margin-left: 8px;
}
.animated .arrow-middle-r {
	opacity: 0;
    transform: translateX(20px);
    margin: 8px 0;
}
.animated .arrow-bottom-r {
    transform: rotateZ(45deg) translateY(-6px);
    width: 20px;
    margin-left: 8px;
}
.nav-container {
	position: fixed;
	left: -220px;
	top: 0;
	height: 100%;
	width: 220px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.nav-list {
	cursor: pointer;
	list-style-type: none;
	top: 50%;
	text-align: left;
	position: relative;
	margin: 0;
	padding: 20px 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.list-item {
    margin: 8px 15px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.list-item:hover {
    background: linear-gradient(135deg, rgba(0, 139, 255, 0.3) 0%, rgba(0, 198, 251, 0.3) 100%);
    border-color: rgba(0, 198, 251, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 198, 251, 0.2);
}
.list-item.active {
    background: linear-gradient(135deg, #008BFF 0%, #00C6FB 100%);
    border-color: #00C6FB;
}
.list-item a {
	color: #fff;
	font-size: 15px;
	display: block;
	width: 100%;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.5px;
}
.list-item:hover a {
    color: #00C6FB;
}
.list-item.active a {
    color: #fff;
    font-weight: 500;
}
.fa {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@keyframes showNav { 
	from { left: -220px; }
	to { left: 0; }
}
@-webkit-keyframes showNav { 
	from { left: -220px; }
	to { left: 0; }
}
@-moz-keyframes showNav { 
	from { left: -220px; }
	to { left: 0; }
}
@-o-keyframes showNav { 
	from { left: -220px; }
	to { left: 0; }
}
.showNav {
	-webkit-animation: showNav 0.4s ease forwards;
	-moz-animation: showNav 0.4s ease forwards;
	-o-animation: showNav 0.4s ease forwards;
	animation: showNav 0.4s ease forwards;
	position:fixed;
	z-index:999;
}
@keyframes hideNav { 
	from { left: 0; }
	to { left: -220px; }
}
@-webkit-keyframes hideNav { 
	from { left: 0; }
	to { left: -220px; }
}
@-moz-keyframes hideNav { 
	from { left: 0; }
	to { left: -220px; }
}
@-o-keyframes hideNav { 
	from { left: 0; }
	to { left: -220px; }
}
.hideNav {
	-webkit-animation: hideNav 0.4s ease forwards;
	-moz-animation: hideNav 0.4s ease forwards;
	-o-animation: hideNav 0.4s ease forwards;
	animation: hideNav 0.4s ease forwards;
	position:fixed;
	z-index:999;
}
.hidden {
	display: none;
}
.jquery-script-ads {
	position:absolute;
	top:350px;
	left:250px;
}

.nav-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}
.nav-header h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
}
.nav-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
	.nav-container {
		width: 180px;
		left: -180px;
	}
	@keyframes showNav { 
		from { left: -180px; }
		to { left: 0; }
	}
	@-webkit-keyframes showNav { 
		from { left: -180px; }
		to { left: 0; }
	}
	@keyframes hideNav { 
		from { left: 0; }
		to { left: -180px; }
	}
	@-webkit-keyframes hideNav { 
		from { left: 0; }
		to { left: -180px; }
	}
	.list-item {
		margin: 6px 10px;
		padding: 10px 15px;
	}
	.list-item a {
		font-size: 13px;
	}
	.btn-nav {
		right: 20px;
		top: 15px;
		width: 55px;
		padding: 8px 12px;
	}
}

@media screen and (max-width: 480px) {	
	.btn-nav {
		width: 50px;
		right: 15px;
		top: 12px;
		padding: 6px 10px;
	}
	.bar {
		width: 28px;
		margin: 6px auto;
	}
	.nav-container {
		width: 160px;
		left: -160px;
	}
	@keyframes showNav { 
		from { left: -160px; }
		to { left: 0; }
	}
	@-webkit-keyframes showNav { 
		from { left: -160px; }
		to { left: 0; }
	}
	@keyframes hideNav { 
		from { left: 0; }
		to { left: -160px; }
	}
	@-webkit-keyframes hideNav { 
		from { left: 0; }
		to { left: -160px; }
	}
	.list-item {
		margin: 5px 8px;
		padding: 8px 12px;
	}
	.list-item a {
		font-size: 12px;
	}
}
