/*
    @see https://getbootstrap.com/docs/4.6/components/navbar/
*/
.navbar-main {
    z-index: 101;
    padding: 0;
    margin: 1rem 0;
}
.navbar-main .navbar-brand {
    color: #2373ad;
    font-size: 1.5rem;
    line-height: 1.25rem;
    font-weight: bolder;
}
.navbar-main .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
}
.navbar-main .nav-item {
    border-top: 1px solid #dddddd;
}

.navbar-main .navbar-collapse {
    transition-duration: .25s;
    margin-top: .5rem;
}

.navbar-main .navbar-collapse.show {
    border-bottom: 1px solid #dddddd;
}
.navbar-main .dropdown-item {
    padding: 0.5em;
    padding-left: 3em;
}
.navbar-main .dropdown-divider {
    margin-left: 0;
}

.navbar-main .nav-item.dropdown .fa-caret-down {
    font-size: .75em;
    opacity: 0.5;
}

@media (min-width: 992px) {
    .navbar-main {
        margin: 0.45rem -1rem 0.45rem 0;
        height: 2.8rem;
    }
    .navbar-main.no-brandname .navbar-nav:first-child .nav-link:first-child {
        margin-left: -1.3rem !important;
    }
    .navbar-main .dropdown-item {
        padding: 0.5em 1.5em;
    }
    .navbar-main .navbar-collapse,
    .navbar-main .navbar-collapse.show {
        border-bottom: none;
        margin-top: 0;
    }
    .navbar-main .nav-item {
        border-top: none;
    }
    .navbar-main .nav-item:first-child {
        margin-left: 0.25rem;
    }
    .navbar-main .nav-link {
        padding: 0px 1rem !important;
    }
    .dropdown-item {
        margin-left: 0;
    }
    .dropdown-divider {
        margin-left: 0;
    }
}
.navbar-main .nav-item a:link,
.navbar-main .nav-item a:visited {
    color: #454545 !important;
}
.navbar-main .nav-item a:active,
.navbar-main .nav-item a:hover {
    color: #A02337 !important;
}
.navbar-main .nav-item .nav-link.disabled {
    color: silver !important;
}

.navbar-main .dropdown-menu {
    border-top: 2px solid #A02337;
    display: none !important;
    box-shadow: 0 0.1875em 0.9375em 0 rgba(0, 0, 0, 0.15);
}
.navbar-main .dropdown-menu.show {
    display: block !important;
}