body,html {
    font-family: Arial;
    padding: 0;
    margin: 0;
}
nav {
    width:100%;
    height: 50px;
    background-color: cornflowerblue;
}
#sidebar {
    position: fixed;
    top: 50px;
    left: 0;
    height: calc(100% - 50px);
    width: 320px;
    transition: transform 0.2s linear;
    background-color: #f6f6f6;
    z-index: 99;
    transform: translateX(-325px);
    overflow:auto;
}
.sidebar-nav{
    list-style:none;
    padding: 0;
    margin: 0;
    width:100%;
    border-right: 1px solid #ececec;

    height: 100%;
}
.sub-sidebar-brand {
    width:100%;
    border-top: 1px solid #ececec;
    background-color: #fff;
    box-sizing: border-box;
}
.sub-sidebar-brand a{
    display: flex;
    align-items: center;
    height: 45px;
    text-decoration: none;
    padding: 0 15px 0 15px;
}
.sub-sidebar-brand a .caret {
    position: absolute;
    right: 30px;
}

.sub-sidebar-brand a:hover {
    background-color: #f6f6f6;
}
.lastMenuClicked a {
    background-color: #f6f6f6;
}
.sub-menu {
    padding: 0;
    display: none;
    list-style: none;
}
.sub-menu .sub-sidebar-brand {
    background-color: #fff;
}

.sub-menu .sub-sidebar-brand a{
    padding: 0 15px 0 30px;
}
.sub-menu .sub-sidebar-brand .sub-menu .sub-sidebar-brand a{
    padding: 0 15px 0 45px;
}
    .sub-menu .sub-sidebar-brand .sub-menu .sub-sidebar-brand .sub-menu .sub-sidebar-brand a {
        padding: 0 15px 0 65px;
    }
#content-overlay {
    opacity: 0.7;
    background-color: black;
    height: calc(100% - 50px);
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 98;
    display:none;
}
.navbar-toggle {
    display:block !important;
    float:left !important;
    margin-left:15px !important;
}
.top-account-menu {
    float:right;
    height:50px;
}
.top-account-menu ul {
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
    height:100%;
}
.top-account-menu ul li {
    float: left;
    margin:10px;
}
.top-account-menu ul li a{
    color:white;
}
