.chatBody::-webkit-scrollbar {
    width: var(--scrollbar-width);
}

.chatBody::-webkit-scrollbar-track {
    box-shadow: var(--scrollbar-track);
    border-radius: var(--scrollbar-track-border-radius);
}

.chatBody::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-background);
    outline:  var(--scrollbar-thumb-outline);
    border-radius: var(--scrollbar-thumb-border-radius);
}

.chatbox-popup {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 100vh;
    bottom: 0;
    background-color: var(--body-background-color);
    border-radius: var(--popup-border-radius);
    border: var(--popup-border);
    align-items: center;

}


.chatbox-popup .chatbox-popup__main {
    padding-top: var(--body-main-top-clearance) !important;
    box-sizing: border-box;
    border-bottom: none;
    width: 99%;
    height: var(--body-height);
    padding: calc(2 * 16px) 16px;
    text-align: center;
    overflow-y: var(--body-scroller);
    overflow-x: hidden;
}

.mainMiddleHolder{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: 92%;
    padding: 3% 0 0 0;
}