.vbbfp-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
    background-color: #c49db0;
    padding: 10px;
    text-align: center;
    border: 2px solid #40343a;
    border-radius: 12px;
    z-index: 1000000;
}
.vbbfp-popup.hidden {
    display: none;
}
.vbpfp-popup > div {
    flex-grow: 0;
    flex-shrink: 0;
}
.vbbfp-popup-avatar {
    height: 75px;
    width: auto;
    position: relative;
    z-index: 0;
}
.vbbfp-popup-avatar.online::after {
    content: ' ';
    font-size: 0;
    position: absolute;
    background-color: #13ff57;
    bottom: 2px;
    left: 2px;
    display: block;
    width: 0;
    height: 0;
    padding: 4px;
    border: 1px solid #006600;
    border-radius: 4px;
    z-index: 20;
}

.vbbfp-popup-avatar.wide {
    width: 100px;
    height: auto;
}
.vbbfp-popup-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vbbfp-popup-text {
    width: 200px;
}
.vbbfp-popup-wa img {
    width: 48px;
    height: 48px;
}

.vbbfp-popup .closeButton {
    position: absolute;
    cursor: pointer;
    top: -20px;
    right: -20px;

}

.vbbfp-popup-reopen {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 2px 0 0 2px;
    background-color: #c49db0;
    border: 2px solid #40343a;
    border-bottom: none;
    border-right: none;
    border-top-left-radius: 8px;
}
.vbbfp-popup-reopen.active {
    display: block;
}

.vbbfp-popup-text .vbbfp-signature {
    max-height: 75px;
    overflow: auto;
    background: transparent;
}

html:not(.isMobile) .vbbfp-popup-text .vbbfp-signature::-webkit-scrollbar {
    width: 4px;
}
html:not(.isMobile) .vbbfp-popup-text .vbbfp-signature::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}
html:not(.isMobile) .vbbfp-popup-text .vbbfp-signature::-webkit-scrollbar-button {
    display: none;
}

@media screen and (max-width : 410px) {
    .vbbfp-popup {
        bottom: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        border-bottom: none;
        border-right: none;
        border-left: none;
        border-radius: 0;
        padding: 8px 18px 8px 8px;
    }
    .vbbfp-popup-text {
        flex-grow: 1;
    }

    .vbbfp-popup .closeButton {
        top: -18px;
        right: 0;
    }
}