ul.nav li.dropdown:hover ul.dropdown-menu{
    display: block;
}

.navbar .dropdown-menu {
    margin-top: 0px;
}

.navbar .navbar-nav {
    font-size: 1.3em;

    .dropdown .dropdown-menu {
        font-size: 0.8em;
    }
}

.navbar .navbar-toggler {
    border-color: #333;
    color: white;
    font-size: 14px;
    
    &:hover,
    &:focus {
        background-color: #333;
    }
    
    .navbar-toggler-icon {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 22px;
        width: 54px;
    }
}

.navbar-nav {
    a, a:visited, button {
        color: #999;
    }

    a:hover, button:hover{
        text-decoration: none;
        color: #fff;
    }
}

.nav-link {
    color: #333;
    &:hover {
        text-decoration: none;
    }
}

.nav-pills {
    .nav-item {
        &:not(:last-child) {
            margin-right: 8px;
        }
    }

    .nav-link {
        &:hover {
            background-color: #eee;
            color: #333;
        }
    }
    .nav-link.active {
        background-color: #5C5C5C;
        color: #eee;
    }
}

.menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1rem;

    margin-bottom: 1rem;

    .actions {
        display: flex;
        justify-content: flex-end;
    }
}