.sider-tool {
    position: fixed;
    bottom: 20px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.chat-popUp {
    position: fixed;
    bottom: 120px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: #f0f2f5;
    width: 330px;
}

.return_chats{
    cursor: pointer;
}


.badge {
    padding: 10px;
    border-radius: 15px;

    box-shadow: 0 0 32px rgb(0 0 0 / 8%), 0 16px 16px -16px rgb(0 0 0 /10%);
    max-width: calc(100% - 60px);
    display: inline-block;
    overflow-wrap: break-word;
    /* modern standard */
    word-break: break-word
}

.outcoming span {
    border-radius: 18px 18px 0 18px;
}

.sider-tool-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-minimize {
    animation: chatMinimize 0.5s forwards;
}

.chat-display {
    animation: chatDisplay 0.5s forwards;
}

@keyframes chatMinimize {
    0% {
        transform: scale(1);
        opacity: 1;
        right: 35px;
        bottom: 100px;
    }

    100% {
        transform: scale(0);
        opacity: 0;
        right: 5px;
        bottom: 60px;
    }

}

@keyframes chatDisplay {
    0% {
        transform: scale(0);
        opacity: 0;
        right: 5px;
        bottom: 60px;
    }

    100% {
        transform: scale(1);
        opacity: 1;
        right: 35px;
        bottom: 100px;
    }


}