#toc {
    border: 2px solid #036;
    border-radius: 3px;
    width: 20%;
    position: fixed;
    z-index: 2;
    box-shadow: 0px 0px 15px;
    min-width: 250px;
    left: 0;
}

    #toc > h2 {
        color: white;
        background: linear-gradient(to bottom,#069 0,#036 100%);
        text-align: center;
    }

    #toc > ul {
        max-height: 300px;
        overflow-y: scroll;
    }

.nolist {
    list-style-type: none;
}

.nopad {
    padding: 0px;
    margin: 0px;
}

.listitem-div {
    display: flex;
    align-items: center;
}

.listItem {
    border-top: 1px solid #036;
    background: white;
    padding: .5rem;
    color: #337ab7;
}

.toc-title {
    margin: 0px;
    padding: .5rem;
}

.sub-list-item {
    background: white;
    border: .5px solid #036;
    padding: .5rem;
    border-radius: 5px;
    margin: 2px;
}

    .sub-list-item:hover {
        background: #f4f4f4;
    }

.drawer-toggle-tab {
    position: absolute;
    top: 50px;
    right: -25px;
    width: 25px;
    height: 60px;
    background: linear-gradient(to bottom, #069 0%, #036 100%);
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
    z-index: 999;
    transition: filter 0.2s ease;
}

    .drawer-toggle-tab:hover {
        filter: brightness(1.15);
    }

.drawer-toggle-tab-closed {
    position: fixed;
    /*        top: 0px;*/
    right: -25px;
    width: 25px;
    left: 0;
    height: 60px;
    background: linear-gradient(to bottom, #069 0%, #036 100%);
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
    z-index: 999;
    transition: filter 0.2s ease;
}
