nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.dash-mobile__menu-button {
	width: 35px;
	padding-left: 7px;
	cursor: pointer;
}

.dash-mobile__menu-button > div {
	width: 25px;
	height: 3px;
	background-color: #0083b7;
	margin: 4px 0;
	transition: 0.2s;
}

.dash-mobile__menu-button.active > div:first-child {
	transform: rotate(-45deg) translate(-4px, 5px);
}

.dash-mobile__menu-button.active > div:nth-child(2) {
	opacity: 0;
}

.dash-mobile__menu-button.active > div:last-child {
	transform: rotate(45deg) translate(-5px, -6px);
}

#dash_cnt_menu {
	position: fixed;
	overflow: hidden;
	top: 34px;
	left: 0;
	bottom: 24px;
	right: 0;
	background-color: rgba(0, 0, 0, 0.2) !important;
	z-index: 40;
	opacity: 0;
	font-size: 14px;
	transition: opacity 0.2s;
}

#dash_cnt_menu.active {
	display: block;
	opacity: 1;
}

#dash_cnt_menu > nav {
	position: absolute;
	left: -280px;
	top: 0;
	bottom: 0;
	max-width: 100%;
	width: 280px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #13adeb;
	box-shadow: 5px 0 10px -5px;
	transition: left 0.2s;
}

#dash_cnt_menu.active > nav {
	left: 0;
}

#dash_cnt_menu ul,
#dash_cnt_menu li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

#dash_cnt_menu li > a {
	display: block;
	color: white;
	padding: 8px 10px;
	text-decoration: none;
}

#dash_cnt_menu li > a:hover {
	text-decoration: none;
	color: black;
	background: #DDD;
}

#dash_cnt_menu li > ul > li > a {
	padding-left: 20px;
}