nav {
    background-color:var(--custom-body-bg);
    /* border-bottom: 2px solid black; */
}

.navbar-nav {
    width: 100%;
}

.nav-link {
    color: var(--custom-body-color);
}

.nav-link:hover {
    /* color: var(--custom-body-color); */
    text-decoration: underline;
}

.nav-link:active {
    /* color: var(--custom-body-color); */
    text-decoration: underline;
}

#search-form-nav {
    display: none;
    background-color: var(--custom-tertiary-bg);
}

.search-complete {
    display:flex;
    flex-direction: column;
    list-style-type: none;
    justify-content: flex-start;
    text-align: left;
    padding-left: 0px;
    top:0; 
    background-color:var(--custom-body-bg); 
    z-index:9999;
    display:none;
}

#search-complete-cover {
    position: absolute;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    /* background-color: rgb(10,10,10,.5); */
    z-index: 9998;
    display:none;
}

#search-complete a, #search-complete p {
    text-decoration: none;
    color: var(--custom-body-color)!important;
}

.search-link:hover {
    background-color: var(--custom-secondary-bg);
}

#search-form-nav-mobile {
    position: absolute;
    top: 0.52rem;
    left: 20%;
    right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 100ms linear;
    z-index: 9999;
}

#search-form-nav-mobile.focused {
    left: 2%;
    right: 2%;
}

#nav-logo-lg {
    display: none;
}

#nav-logo-mobile {
    display: inline-block;
}

#notification-dropdown {
    max-height: 80vh;
    overflow-y: scroll;
    background-color: var(--custom-body-bg);
}


.notification-number {
    display: none;
    background-color: var(--custom-success);
    color: white;
    border-radius: 50%;
    width: .5rem;
    height: .5rem;
    position: absolute;
    font-size: .5rem;
    left: 1px;
    top: 10px;
}

@media (min-width: 768px) {
    #search-form-nav {
        display: flex;
        justify-content: flex-center;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        width: calc(100% / 3);
    }
    #search-form-nav {
        display: flex;
        justify-content: flex-center;
        width: 33%;
    }
    #search-form-nav-mobile {
        display: none!important;
    }
    #nav-logo-lg {
        display: inline-block;
    }
    #nav-logo-mobile {
        display: none;
    }
    #notification-dropdown {
        min-width:24rem!important;
    }
    .notification-number {
        left:8px;
        top:12px;
    } 
}