#sidebar {
    width: 300px;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    z-index: 999;
    background: #ffffff;
    color: #222222;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    right: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#dismiss:hover {
    color: #222222;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

#sidebar .sidebar-header {
    padding: 20px;
}

.mobileSubNav {
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.5);
	border:0px;
	padding:2px 2px 1px 2px;
	margin:0px 20px;
	border-radius:0;
}

.mobileSubNav li a {
	width: 100% !important;
	margin: 0px !important;
	font-size: 12px !important;
	padding: 10px 20px !important;
}

#sidebar ul li a {
    padding: 15px 10px;
    display: block;
	color:#222222;
	border-bottom: #efefef 1px solid;
	margin: 0px 20px;
	font-size: 14px;
	text-transform:uppercase;
	font-weight:bold;
	text-indent:10px;
}

#sidebar ul li a:hover {
    background: #f7f7f7;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #111111;
    background: #ffffff;
}

a.mobileExpand[data-toggle="collapse"] {
    position: relative;
}

a.mobileExpand[aria-expanded="false"]::before, a.mobileExpand[aria-expanded="true"]::before {
    content: '\e610';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'matmix-icons';
    font-size: 0.6em;
	font-size: 12px;
}
a.mobileExpand[aria-expanded="true"]::before {
    content: '\e60e';
}
