/* Sidebar */
aside ul.nav-list > li > a {
    color: #666;
    font-size: 1em;
    padding: 8px 0 8px 22px;
}

/* Nav List */
ul.nav-list li {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

ul.nav-list li a {
    transition: background 0.1s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0 8px 22px;
    display: block;
    color: #666;
    font-size: 1em;
    text-decoration: none;
    line-height: 20px;
}

/*ul.nav-list li a:before {*/
/*    font-family: 'Font Awesome 6 Free';*/
/*    content: "\f054";*/
/*    font-weight: 900;*/
/*    position: absolute;*/
/*    top: 8px;*/
/*    font-size: 7.2px;*/
/*    font-size: 0.45rem;*/
/*    opacity: 0.7;*/
/*    transform: translate3d(-1px, 0, 0);*/
/*    left: 12px;*/
/*}*/

ul.nav-list li a:hover {
    text-decoration: none;
    color: var(--primary);
}

ul.nav-list li a:hover:before,
ul.nav-list li a:hover i[class*="fa-chevron"] {
    animation-name: arrowLeftRight;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
}

ul.nav-list li a i[class*="fa-chevron"] {
    position: relative;
    top: -1px;
    font-size: 8px;
    font-size: 0.5rem;
    opacity: 0.8;
}

ul.nav-list li > a.active {
    font-weight: bold;
}

ul.nav-list li ul {
    list-style: none;
    margin: 0 0 0 15px;
    padding: 0;
}


ul.nav-list.hide-not-active li ul {
    display: none;
}

ul.nav-list.hide-not-active li.active ul {
    display: block;
}

ul.nav-list.show-bg-active .active > a,
ul.nav-list.show-bg-active a.active {
    background-color: #f5f5f5;
}

ul.nav-list.show-bg-active .active > a:hover,
ul.nav-list.show-bg-active a.active:hover {
    background-color: #eee;
}

ul.nav-list.no-arrows li a:before {
    content: none;
}

ul.nav-list-simple li {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

ul.nav-list-simple li a {
    transition: background 0.1s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 8px 0;
    display: block;
    color: #666;
    font-size: 0.9em;
    text-decoration: none;
    line-height: 20px;
    transition: ease padding 300ms;
}

ul.nav-list-simple li > a.active {
    font-weight: bold;
}

ul.nav-list-simple li:hover a {
    padding-left: 4px;
}

ul.nav-list-simple li ul {
    list-style: none;
    margin: 0 0 0 25px;
    padding: 0;
}

ul.narrow li a {
    padding: 4px 0;
}

ul.nav-pills > li > a.active {
    color: var(--light);
    background-color: var(--grey-500);
}

ul.nav-pills > li > a.active:hover, ul.nav-pills > li > a.active:focus {
    color: var(--light);
    background-color: var(--grey-500);
}

/* Nav Pills */
.nav-pills-center {
    text-align: center;
}

.nav-pills-center > li {
    display: inline-block;
    float: none;
}

.nav-pills-sm > li > a {
    padding: 7px 12px;
}

.nav-pills-xs > li > a {
    padding: 5px 10px;
    font-size: 0.9em;
}

.nav-pills .nav-link.active {
    background-color: transparent;
}

.show > .nav-pills .nav-link {
    background-color: transparent;
}

/* Nav Light */
.nav-light > li > a {
    color: var(--light);
}

/* Nav Active Style - Active Bottom Border */
.nav-active-style-1 {
    min-height: 100px;
    align-items: center;
}

.nav-active-style-1 > li {
    align-self: stretch;
}

.nav-active-style-1 > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 !important;
    margin: 0 15px;
    border-bottom: 2px solid transparent;
    transition: ease border-color 300ms;
}

.nav-active-style-1 > li > a:hover, .nav-active-style-1 > li > a:focus, .nav-active-style-1 > li > a.active {
    border-bottom-color: var(--grey-500);
}

@media (max-width: 575px) {
    .nav-active-style-1 > li > a {
        min-height: 45px;
        justify-content: center;
    }
}

/* Nav Secondary */
.nav-secondary {
    background: #fafafa;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    z-index: 99;
    width: 100% !important;
}

.nav-secondary .nav-pills > li {
    float: none;
    display: inline-block;
}

.nav-secondary .nav-pills > li a {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 13px;
    text-transform: uppercase;
}

.nav-secondary.sticky-active {
    border-bottom-color: #e9e9e9;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}