ul.nav {

    height: 100%;
    width: auto;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content:flex-end;
    align-items:stretch;
    padding: 0rem 0.5rem;
    position: relative;
}

ul.nav > li.nav-item {

    height: 100%;
    padding: 0.5rem;
    cursor: pointer;
    display: block;
    position: relative;

}

ul.nav > li.nav-item:hover
{
    background-color: #326375;
}

ul.nav > li.nav-item.nav-item-active
{
    background-color: #326375;
}

ul.nav > li.nav-item  a.nav-item-url {

    display: flex;
    position: relative;
    height: 100%;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    align-items: center;
    line-height: 1;
    overflow: hidden;


}

ul.nav > li.nav-item .nav-item-icon {

}

ul.nav > li.nav-item .nav-item-txt {

    padding:0.5rem;
}


ul.sub-nav {

    display: block;
    max-width: 0;
    width: auto;
    background-color: #326375;
    position: absolute;
    top:0;
    left:100%;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.25s ease-in-out;

}

ul.nav > li.nav-item:hover > ul.sub-nav
{
    display: block;
    max-width: 2000px;
}

ul.sub-nav > li.nav-item:hover
{
    background-color: #003d53;

}


nav.nav-top {

    width: 100%;
    height: 50px;
    position: fixed;
    top:0px;
    left: 0px;
    right:0px;
    z-index: 12;
    margin: 0px;
    padding: 0px;
    color:rgba(255,255,255,1);
    background-color: #003d53;
    border: 0px;
    border-radius: 0px;
    display: flex;

}


nav.nav-top .nav-header {

    height: 100%;
    position: relative;
    background-color: inherit;
}

nav.nav-top .nav-header .nav-brand {

    height: 100%;
    padding: 0.5rem;
    display: block;
}

nav.nav-top .nav-header .nav-brand > img {

    height: 100%;
}

nav.nav-top .nav-content {

    height: 100%;
    position: relative;
    background-color: inherit;
    flex-grow:1;
    color:rgb(255,255,255);
    font-size: 1rem;
    font-weight: 400;
}



nav.nav-sidebar {

    height: 100%;
    width: 40px;
    position: fixed;
    top:50px;
    left: 0px;
    bottom:0px;
    z-index: 10;
    margin: 0px;
    padding: 0px;
    color:rgba(255,255,255,1);
    background-color: #003d53;
    border: 0px;
    border-radius: 0px;

}

nav.nav-sidebar .nav-content {

    height: 100%;
    position: relative;
    background-color: inherit;
    width: 100%;
    color:rgb(255,255,255);
    font-size: 1rem;
    font-weight: 400;

}


nav.nav-sidebar ul.nav {

    height: 100%;
    width: 100%;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content:center;
    flex-direction:column;
    flex-wrap:wrap;
    align-items:flex-start;
    padding: 0rem;
    position: relative;
    background-color: inherit;


}

nav.nav-sidebar ul.nav > li.nav-item {

    padding: 0;
    margin: 0.5rem 0;
    cursor: pointer;
    display: block;
    height: auto;

}


nav.nav-sidebar ul.nav > li.nav-item .nav-item-icon {

    width: 40px;
    padding: 0.5rem;
    text-align: center;
}

nav.nav-sidebar ul.nav > li.nav-item .nav-item-txt {

    padding: 0;
    background-color: inherit;
    white-space: nowrap;
    width: auto;
    max-width: 0;
    overflow: hidden;
    transition: all 0.25s ease-in-out;

}

nav.nav-sidebar ul.nav > li.nav-item:hover .nav-item-txt {

    max-width: 1000px;
    padding: 0.5rem;
}


nav.nav-breadcrumb {

    width: 100%;
    background-color: #668a97;
    display: block;
    padding: 0;
    line-height: 1;
    height: 30px;
    position: fixed;
    top:50px;
    left: 40px;
    right:0px;
    font-size: 0.9rem;
    color: rgb(255,255,255);
}

nav.nav-breadcrumb ul.nav {

    padding:  0rem 0.5rem;
    justify-content:flex-start;
}

nav.nav-breadcrumb ul.nav > li.nav-item {

    height: 100%;
    padding: 0;
    cursor: pointer;
    display: block;

}

nav.nav-breadcrumb ul.nav > li.nav-item:hover {

    color:#003d53;
    background-color: inherit;
}

nav.nav-breadcrumb ul.nav > li.nav-item.nav-item-active {

    color:#003d53;
    background-color: inherit;
}

nav.nav-breadcrumb ul.nav > li.nav-item .nav-item-url {

    padding:0.25rem;

}

nav.nav-breadcrumb ul.nav > li.nav-item:not(:first-child) .nav-item-url:before {

    color: rgb(255,255,255);
    content: "/\00a0";
    font-weight: normal;
    padding: 0 0.125rem 0 0;
}

nav.nav-breadcrumb ul.nav > li.nav-item .nav-item-txt {

    padding: 0;
}
