﻿.navigation {
    color: white;
    text-decoration: none;
    background-color: #4D4F53;
    background-image: url("../Images/brilliant.png");
    background-repeat: repeat;
    position: fixed;
    top: 0;
    left: 0px;
    height: 100%;
    width: 21%;
    line-height: 1.25;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    overflow-y: auto;
    overflow-x: hidden;
}

#HideNav {
    width: 12px;
    height: 94%;
    background-color: #9A9B9C;
    position: fixed;
    left: 21%;
    bottom: 0;
    z-index: 0;
    cursor: w-resize;
    box-shadow: rgba(0,0,0,0.5) 2px 2px 3px;
}

#hide {
    background-color: #EAAB00;
    background-image: url("../Images/White-Arrows-Left.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 21%;
    top: 0;
    width: 12px;
    height: 6%;
    cursor: pointer;
    z-index: 0;
    border-bottom: 1px solid black;
    box-shadow: rgba(0,0,0,0.5) 2px 0px 3px;
}

    #hide:hover {
        background-color: #4D4F53;
        border: 1px solid white;
    }

/* Fancy Scrollbars */

::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(255, 255, 255, 0.38);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #D5D6D2;
    /*border-radius: 10px;*/
    background-color: #D5D6D2;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background-color: #4D4F53;
}

/* Other nav items */
.navigation .agency-name-label {
    width: 100%;
    min-width: 270px;
    display: block;
    white-space: pre-wrap;
    white-space: pre-wrap; /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -pre-wrap; /* Opera <7 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* IE */
}
.navigation-top-items {
    padding: 7px;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
    .navigation-top-items > div{
        width: 100%;
        overflow: hidden;
    }
    .navigation-top-items a{
        color: white;
    }

.nav-items-container {
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    margin-bottom: 7em;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-item {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 25px;
    text-shadow: 0 0 0 white;
    cursor: pointer;
    white-space: nowrap;
    background-color: #002664;
    display: block;
    color: white;
    text-decoration: none;
}
    .nav-item.selected{
        background-color: #0065BD;
    }
    .nav-item:not(.selected):hover {
        background-color: #001c4a;
    }
    .nav-item i {
        position: absolute;
        left: 7px;
        transition: all 300ms ease-in-out;
    }
        .nav-item i.toggled {
            transform: rotateX(180deg);
        }

.nav-tree-item-list {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
    list-style: none;
    display: none;
}
    .nav-tree-item-list .nav-tree-item {
        padding: 0;
        border-top: 1px solid #555555;
        border-bottom: 1px solid #555555;
        white-space: nowrap;
        display: flex;
    }
        .nav-tree-item-list .nav-tree-item.completed-section {
            padding-left: 29px;
        }
        .nav-tree-item-list .nav-tree-item:hover{
            background-color: #D2D2D2;
        }
        .nav-tree-item-list .nav-tree-item.selected {
            background-color: #0065BD;
        }
            .nav-tree-item-list .nav-tree-item.selected a {
                color: white;
                text-shadow: 0 0 0 white;
            }
        .nav-tree-item-list .nav-tree-item.empty-text {
            color: #555555;
            text-shadow: 0 0 0 #555555;
            white-space: normal;
        }
        .nav-tree-item-list .nav-tree-item a {
            color: #555555;
            text-shadow: 0 0 0 #555555;
            text-decoration: none;
            padding-top: 5px;
            padding-bottom: 5px;
            display: inline-block;
            width: 100%;
        }
        .nav-tree-item-list .nav-tree-item i {
            position: relative;
            margin: 5px;
            margin-bottom: 0;
            margin-top: 1px;
            font-size: 16pt;
            color: #E3B505;
        }
            .nav-tree-item-list .nav-tree-item.completed-section i{
                display: none;
            }
.nav-no-permissions{
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: -5em;
}

.nav-item.collapse-all{
    display: none;
}