#sidebar {
    position: relative;
    height: 100vh;
    max-width: 600px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #fff;

}
#sidebar .nav-main {
    height: 100%;
    overflow: auto;
    font-size: .875rem;
    padding-left: 0.6rem;
    min-width: 25vw;
    max-width: 400px
}
#sidebar::after {
    content: ' ';
    background-color: #ddd;
    position: absolute;
    right: 0;
    width: 3px;
    height: 100vh;
    cursor: w-resize;
}

.nav-main-toggler {
    position: fixed;
    bottom: 3rem;
    font-size: 1.4rem;
    margin-left: 1rem;
    left: 360px;
}
.nav-main-toggler:hover {
    cursor: pointer;
}
i {
    height: 24px;
    width: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
ul, #nav-root {
    list-style-type: none;
}
#nav-root {
    padding-left: 1.5rem;
}
.caret {
    cursor: pointer;
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: -0.6rem
}
.caret::before {
    content: "\f105";
    font-family: FontAwesome;
    color: #2A2A2A;
    font-size: 1rem;
    padding-right: 0.3rem;

}
.caret-down {
    font-weight: 600;
}
.caret-down::before {
    content: "\f107";
}
.nested {
    display: none;
    padding-left: 0.6rem;
}
.active {
    display: block;
}
li {
    padding-left: 0.4rem;
    padding-top: 1rem;
    white-space: nowrap;
    cursor: pointer;
}
.active-link {
    color: #01295f;
    font-weight: 600;
}
#nav-root li{
    white-space: initial;
}
