@charset "UTF-8";
/*
$content-width will be the max width of the content within the navigation bar.
$breakpoint determines at which width the media query breakpoint will take effect.
*/

.left-menu {
	margin-left: -4px;
	float: left;
	text-align: left;
	width: 100%;
	font-family: djbjenna;
	font-size: 18px;
	font-weight: bold;
}

.left-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
}

.left-menu ul li {
	width: 100%;
	float: right;
	position: relative;
	border: 0px solid #2efa04;
	margin: 10px -10px 0 10px;
	border-radius: 10px;
}

.left-menu ul li a {
	display: block;
	padding: 15px;
	line-height: 20px;
	background: #6cb86e;
	color: #000000;
	text-decoration: none;
	text-align: center;
	border-radius: 10px;
}

.left-menu ul li a:hover {
	background: #2efa04;
	color: #000000;
}

.left-menu ul li a:not(:only-child):after {
	padding-left: 4px;
	content: '+';
}

.left-menu ul li ul li {
	min-width: 170px;
	margin: 10px 0 0 10%;
	max-width: 90%;
}

.left-menu ul li ul li a {
	padding: 15px;
	line-height: 20px;
}

.left-nav-dropdown {
	position: relative;
	z-index: 1;
	display: none;
	width: 100%;
}

@media screen and (min-width: 800px) {
	.left-nav-list {
		display: block !important;
	}
}

@media screen and (max-width: 800px) {
	.left-navigation {
		height: 52px !important;
	}
}
/*
.navigation â€“ the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.left-navigation {
	height: 52px;
}

/*
.nav-container â€“ the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.left-nav-container {
	max-width: 1150px;
	margin: 0 auto;
}
