.mbChatBubble {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    left: 20px;
    display: none;
    padding: 15px;
    background-color: #01619a;
    font-size: 32px;
    border-radius: 50%;
    box-shadow: 0 0 10px #00000045;
    color: #FFF;
    transition: all 0.5s;
}
.mbChatBubble.mbInActive {
    opacity: 0;
}
.mbChatBubble.mbActive {
    opacity: 1;
    transition: all 0.5s;
}

@media screen and (min-width: 768px) {
    .mbChatBubble:hover {
        background-color: #FFF;
        color: #01619a;
    }
}
.mbChatBubble:focus {
    outline: none;
}

.sendBirdBadge {
    position: absolute;
    top: -2px;
    right: -2px;
    color: #FFF;
    background-color: #D22628;
    text-align: center;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    display: none;
}