﻿/* Nav */
.gpf-nav {
    background-color: white;
    color: antiquewhite !important;
    height: 70px;
}

.nav-icons {
    color: white;
}

.dropdown-menu {
    position: absolute !important;
}

.navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

.nav-link-master {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.navbar-badge {
    font-size: 0.6rem;
    font-weight: 300;
    padding: 2px 4px;
    position: absolute;
    right: 5px;
    top: 9px;
}


.badge-warning {
    background-color: red !important;
    color: white !important;
    right: 0px !important;
    font-size: 10px !important;
    padding: 5px !important;
    top: 0px !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
}

.dropdown, .dropleft, .dropright, .dropup {
    position: relative;
}

/* Sidebar */
#sidebar-wrapper {
    z-index: 1;
    position: fixed;
    width: 270px;
    margin-top: 70px;
    margin-left: -270px;
    height: 100%;
    overflow-y: hidden;
    background: #ffffff;
    opacity: 0.9;
    transition: all .5s;
    display: flex;
    border-right: 2px solid;
    border-color: #eeeeee;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

/* Main Content */
#page-content-wrapper {
    width: 100%;
    margin-top: 60px;
    position: absolute;
    padding: 15px;
    transition: all .5s;
}

/* Change the width of the sidebar to display it*/
#wrapper.menuDisplayed #sidebar-wrapper {
    margin-left: 0;
}

/*#wrapper.menuDisplayed #page-content-wrapper {
    padding-left: 270px;
}*/

/* Sidebar styling */
.sidebar-nav {
    padding: 0;
    list-style: none;
    transition: all .5s;
    width: 100%;
    text-align: left;
}

    .sidebar-nav li {
        line-height: 30px;
        width: 100%;
        transition: all .3s;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #000000;
            padding: 10px;
        }

        .sidebar-nav li:hover {
            background: #2983a4;
        }

            .sidebar-nav li:hover a {
                color: #ffffff;
                background-color: #a4a4a4;
            }

        .sidebar-nav li ul li a {
            background-color: #ffffff;
            color: #000000;
        }

        .sidebar-nav li:hover ul li a {
            background-color: #ffffff;
            color: #000000;
        }

        .sidebar-nav li:hover ul li:hover a {
            background-color: #4eb0d4;
            color: #ffffff;
        }

        .sidebar-nav li a[aria-expanded="true"] {
            color: #ffffff !important;
            background: #2983a4;
        }