
.bottomBar {
    &.hidden {
        bottom: -200px;
    }
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: Mukta, sans-serif;
    font-size: 11px;
    display: flex;
    z-index: 2;
    position: fixed;
    bottom: 0;
    transition: bottom 0.6s ease;
    left: 0;
    overflow: visible;
    height: 98px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: var(--eo-darker-grey);
    color: white;
    gap: 55px;
    .profile,.slot1 {
        display: flex;
        margin: 0 !important;
        align-self: center;
        justify-self: start;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        color: white !important;
        opacity: 0.72;
        &.active {
            opacity: 1;
            color: var(--eo-main-color) !important;
        }
        &.disabled {
            opacity: 0.4;
            color: var(--eo-dark-grey) !important;
        }
        &.loading {
            pointer-events: none;
            opacity: 1;
            color: var(--eo-main-color-highlight) !important;
            svg {
                animation: mymove 4s infinite;
            }
        }
        width: 32px;
        z-index: 2;
        .slot1Name {
            white-space: nowrap;
        }
    }
    .profile {
        img {
            filter: invert(1);
        }
        &.invertColor {
            filter: invert(1);
        }
    }
    .selectCircle {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        height: 115px;
        width: 115px;
        border-radius: 50%;
        background-color: inherit;

        .toggleSidebar {
            align-self: start;
            text-align: center;
            font-size: 12px;
            margin-top:25%;
            img {
                width: 32px;
                margin-bottom: 5px;
            }
            &.invertColor {
                filter: invert(1);
                img {
                    width: 22px;
                }
            }
        }
    }
    .logout,.slot2 {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        justify-self: end;
        align-self: center;
        align-items: center;
        justify-content: center;
        color: white;
        opacity: 0.72;
        width: 32px;
        z-index: 2;
        &.active {
            opacity: 1;
        }
    }
    &.invertColor {
        background-color: #fff;
    }
    .logout {
        opacity: 1;
        color: var(--eo-highlight-warning);
    }
}

.logoutPopoverButton {
    font-size: 18px;
    padding:5px;
    margin: 5px;
    width: 60px;
}
@keyframes mymove {
    50% {transform: rotate(180deg);}
    100% {transform: rotate(360deg);}
}