<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html.menu_open {
	overflow: hidden
}
#header{
	position: relative;
}
.menu_overlay {
	background-color: #000;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -99;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	display: none;
}

html.menu_open .menu_overlay {
	opacity: 0.2;
	z-index: 999;display: block;
}

.navbar-toggle {
	border: solid 1px #087533
}

.navbar-toggle .icon-bar {
	background-color: #087533
}

#menu_mobile {
	background-color: #000;
	height: auto;
	right: -100%;
	position: absolute;
	top: 100%;
	width: 300px;
	z-index: 999999;
	overflow: scroll
}

#menu_mobile .menu_title {
	padding: 0 15px;
	line-height: 35px;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 16px;
	border-bottom: solid 1px #fff;
	color: #fff
}

#menu_mobile .menu_title .backmenu {
	cursor: pointer
}

#menu_mobile .menu_close {
	position: absolute;
	color: #fff;
	right: 0;
	top: 0;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	border-left: solid 1px #fff;
	font-size: 20px;
	cursor: pointer
}

#menu_mobile &gt; .menu_inner {
	position: relative
}

#menu_mobile &gt; .menu_inner &gt; .dropdown-menu,
#menu_mobile &gt; .menu_inner &gt; ul {
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
	box-shadow: none;
	background-color: transparent;
	border: none;
	width: 100%
}

#menu_mobile ul li {
	clear: both;
	float: none;
	display: block
}

#menu_mobile ul li a {
	border-bottom: 1px solid #3f3d3d;
	color: #fff;
	padding: 8px 30px 8px 10px;
	position: relative
}

#menu_mobile ul li:hover &gt; a {
	color: #5abeed;
	background: transparent
}

#menu_mobile .dropdown-menu &gt; .active &gt; a,
#menu_mobile .dropdown-menu &gt; .active &gt; a:focus,
#menu_mobile .dropdown-menu &gt; .active &gt; a:hover {
	background: transparent
}

#menu_mobile ul li a .ex_menu {
	display: inline-block;
	height: 100%;
	line-height: 45px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 30px;
	font-size: 20px;
	z-index: 9
}
</pre></body></html>