#custom-navbar {
    background-color: var(--header-background-color);
    border-bottom-color: var(--background-color);
}

@media (max-width: 991px) {
    #custom-navbar-items {
        display: none;
    }
}

@media (min-width: 992px) {
    #sidenav-toggler {
        display: none;
    }
}

#logo {
    margin-top: auto;
    margin-bottom: auto;
    height: 50px;
}

@media (min-width: 992px) {
    #logo {
        height: 80px;
    }
}

@media (min-width: 1200px) {
    #logo {
        height: 100px;
    }
}

#sideNavbar {
    background-color: rgba(255, 255, 255, 0.9)!important;
}

.custom-nav-link {
    display: block;
    color: #1a1a1a;
    padding: 0.5rem 0;
}

.disabled .custom-nav-link {
    color: #898989;
}

.nav-line {
    background-color: #d1d1d1;
    height: 3px;
}

a:hover .nav-line {
    background-color: #898989;
}

.active .nav-line {
    background-color: #898989;
}

.active .custom-nav-link {
    color: rgb(var(--theme-color-dark));
}

.disabled a {
    pointer-events: none;
}

.dropdown-item-custom {
    --bs-dropdown-link-hover-bg: #eeeeee;
    --bs-dropdown-link-active-bg: #cccccc;
}

.dropdown-item-active {
    color: rgb(var(--theme-color-dark))!important;
}

.side-nav-border-top {
    border-top-color: #d1d1d1;
    border-top-style: solid;
    border-top-width: 2px;
}

.side-nav-border-bottom-dotted {
    border-bottom-color: #d1d1d1;
    border-bottom-style: dotted;
    border-bottom-width: 2px;
}