.LeftNavFooter {
    align-items: center;
    background-color: var(--midnight-7);
    color: var(--white);
    display: flex;
    font-size: $font-size-base;
    font-weight: 500;
    height: 60px;
    justify-content: space-between;
    padding: 0 10px;

    img {
        border-radius: 50%;
        height: 40px;
        margin-right: 10px;
        width: 40px;
    }

    &-dropdown {
        margin-left: 10px;
        .Kabob {
            cursor: pointer;
            fill: var(--gray-200);
        }

        &.dropdown-toggle.btn.btn-secondary:hover,
        &.dropdown-toggle.btn.btn-secondary:focus,
        &.dropdown-toggle.btn.btn-secondary:active,
        &.dropdown-toggle.btn.btn-secondary[aria-expanded="true"] {
            background-color: var(--midnight-6);
        }
    }

    &-left-section {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .DropdownIconOnly {
        &.dropup .dropdown-toggle::after {
            display: none !important;
        }

        .dropdown-item {
            font-size: $font-size-base;
            padding: 10px;
        }

        .dropdown-menu {
            /* stylelint-disable declaration-no-important */
            bottom: 4px !important;
            /* stylelint-enable declaration-no-important */
        }
    }
}
