/* CATEGORY SUB NAV */
.category-sub-nav .container {
    position: relative;
}
.category-sub-nav ul {
    display: flex;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
    flex-direction: row;
    white-space: nowrap;
}
.category-sub-nav a,
.category-sub-nav .nav-item a {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    padding: 1rem 0 .7rem 0;
    border: none;
    border-bottom: 5px solid transparent;
}
.category-sub-nav a:hover,
.category-sub-nav a.active {
    border: none;
    border-bottom: 5px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}
@media only screen and (max-width: 991.98px) {
    .category-sub-nav .container {
        padding-right: 0!important;
    }
    .category-sub-nav .container:after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        width: 2rem;
        height: 100%;
        top: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255,0) 0%, #F4F4F4 100%);
        z-index: 2;
    }
    .category-sub-nav ul {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .category-sub-nav a {
        font-size: 12px;
        padding: .9rem 0 .3rem 0;
    }
}
/* INITIATIVE CATEGORY SUB NAV */
.initiative-categories-sub-nav {
    background: #F4F4F4;
}
.initiative-categories-sub-nav li {
    padding-right: 2em;
}
