#alfavox-client {
    border: none;
    bottom: 0;
    right: 32px;
    /*position: fixed;*/
    display: block !important;
}

.alfavox-client-min {
    width: 200px;
    height: 32px;
}

.alfavox-client-opened {
    width: 350px;
    height: 708px;
    margin-left: 16px; /*added*/
}

.alfavox-client-video {
    width: 700px;
    height: 500px;
}

.alfavox-client-closed {
    width: 0;
    height: 0;
}

.alfavox-client-bubble {
    animation: shake 2s cubic-bezier(.36,.07,.19,.97) 3;
    transform: translate3d(0, 0, 0);
    position: absolute;
    width: 200px;
    height: 80px;
    border-radius: 1rem;
    border: 2px solid #0052a5;
    right: 20px;
    bottom: 70px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    font-family: monospace, monospace; /* 1 */
    color: #0052a5;
}
/*.alfavox-client-bubble:before {*/
/* content: "";*/
/* position: absolute;*/
/* right: 20px;*/
/* top: 82px;*/
/* width: 0;*/
/* height: 0;*/
/* transform: rotate(270deg);*/
/* border-top: 13px solid transparent;*/
/* border-right: 26px solid #0052a5;*/
/* border-bottom: 13px solid transparent;*/
/* z-index: 0;*/
/*}*/

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.chatbot-component-icon {
    outline: none;
    border: none;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: #0052a5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
    /* margin-right: 16px; */
    color: white;
    font-size: 24px;
}

.chatbot {
    border: none;
    display:flex;
    flex-direction:row;
    position: fixed;
    z-index: 98;
    align-items: flex-end;
    bottom: 0;
    right: 30px;
    /* width: 50px; */
    height: 50px;
}
 
#chatbtn:focus {
     outline: none !important; 
}