#navbar {
    transition: all .3s ease;
    background-color: var(--bg-1); 
    border-bottom: 1px solid var(--bg-2); 
    z-index: 1000; 
    max-width: 100vw; 
    box-shadow: rgba(0, 16, 41, 0.25) 0px 6px 12px -2px, rgba(0, 16, 41, 0.3) 0px 3px 7px -3px; 
}

.navbar-logo {
    transform: scale(2.5) translate(15px, 7px);
}

.navbar-row {
    height: 90px;
}

@media(min-width: 778px) {
    .navbar-logo {
        transform: scale(2.5) translate(-5px, 4px);
    }
    
    .navbar-row {
        height: 75px;
    }

    .nav-container {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

.nav-item {
    list-style: none !important;
}

.left-nav-item[data-selected='true'] {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.nav-link[data-selected='true'] {
    font-weight: bold;
}

.custom-dropdown-menu {
    transition: all .3s ease;
}

.custom-dropdown-menu .nav-link {
    border-radius: 25px;
    height: fit-content;
    padding: 12px;

    &:hover {
        text-decoration: none !important;
        background-color: var(--brand-2) !important;
    }
}

.custom-dropdown-menu .nav-link[data-selected='true'] {
    text-decoration: none !important;
    background-color: var(--brand-1);
    font-weight: 400;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -110vw; 
    background-color: rgba(0, 0, 0, .7); 
    height: 100vh;
    width: 100vw;
    z-index: 99999; 
    transition: all .3s ease;
    color: white !important;
}

.mobile-nav-open {
    left: 0;
}

/* TABS */

.nav-tabs .nav-item .nav-link {
    border-color: var(--brand-2) !important;
    background-color: var(--bg-2);
}

.nav-tabs .nav-link.active {
    background-color: white;
    font-weight: 500;
}