.header-fixed .app-header {
    padding-right: 20px;
}

.nav .dropdown-menu {
    border-radius: 0;
    margin-top: 13px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .23);
}

.dropdown-header {
    background: $primary;
    color: white;
    border-bottom: none;
}

.dropdown-item {
    border-bottom: 1px solid #F0F2F4;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #263238;
    text-decoration: none;
    background-color: white;
}

.app-header.navbar .navbar-brand {
    padding: 0.5rem 1rem;
    color: #4273fa;
    font-weight: 600;
    display: inline;
    width: auto;
    height: auto;
    margin-right: 1rem;
    background: none !important;
    border: none;
    img {
        max-width: 200px;
        max-height: 20px;
    }
}

.dropdown-toggle {
    box-shadow: none !important;
    &:hover {
        cursor: pointer;
    }
}

.dropdown .dropdown-menu {
    display: block;
    transition: all 300ms ease-in-out;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
}

.open .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: all;
    transform: translateY(-5px);
}

.app-header.navbar {
    border-bottom: 1px solid #D6DEE3;
}

@media (max-width: 991px) {
    .app-header .navbar-brand {
        text-align: center;
    }
    .avatar-initials {
        display: none;
    }
}

@media (max-width: 600px) {
    .app-header.navbar .navbar-brand {
        display: none;
    }
}