#ws_chat #widget_circle {
    max-width: 460px;
    overflow: hidden;
    transition: all 0.4s ease-out;
    min-width: 60px;
    height: 60px;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,0,0,.06),0 2px 32px rgba(0,0,0,.16);
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    z-index: 20;
}
#ws_chat #widget_logo {
    position: absolute;
    top: 13px;
    left: 20px!important;
    transition: all 0.3s ease;
    opacity: 1;
    width: 28px;
    right: 10px;
}
#ws_chat #circle_close {
    width: 20px;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
    transform: rotate(120deg) scale(1.2);
    transition: all 0.3s ease;
}
#ws_chat #widget_circle span {
    position: relative;
    top: 21px;
    font-size: 15px;
    color: white;
    font-weight: 500;
    display: block;
    float: left;
    box-sizing: border-box;
    padding-left: 60px;
    padding-right: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}


#ws_chat #widget_popup, 
#ws_chat #whts_widget_box {
    width: 290px;
    border-radius: 12px;
    background-color: rgba(255,255,255,.98);
    box-shadow: 0 4px 30px 0 rgba(0,0,0,.1);
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    padding: 16px 22px 16px 22px;
    position: fixed;
    bottom: 96px;
    transition: all 0.3s ease-out;
    padding-bottom: 0;
    transform: translate3d(0,20px,0);
    opacity: 0;
}
#ws_chat #widget_popup {
    transform: translate3d(0,0,0);
    right:20px; 
    max-height: 90px;
    opacity:1; 
    display:block;
    z-index: 9999999999;
}
#ws_chat #welcome_message {
    float: left;
    width: calc(100% + 34px);
    padding-top: 70px;
    margin-top: -70px;
    margin-left: -16px;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 6px;
    position: relative;
    transform: translate3d(0,0,0);
    z-index: 9999999999;
    transition: all 0.3s ease-out;
    opacity: 1;
}
#ws_chat #welcome_message p:nth-child(1) {
    font-family: 'roboto','arial',sans-serif;
    font-weight: 600;
    color: #29323C;
    font-size: 13px;
    margin: 0px!important;
}
#ws_chat #welcome_message p:nth-child(2) {
    color: #646B72;
    font-family: 'roboto','arial',sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    margin: 0px!important;
    margin-top: 11px!important;
    margin-bottom: 8px!important;
}
#ws_chat #widget_close {
    width: 28px;
    height: 28px;
    border-radius: 28px;
    background: rgba(0,0,0,.3) url(/img/icon_close.svg);
    box-sizing: border-box;
    background-size: 10.5px;
    background-position: 9px;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 15px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}
#ws_chat #widget_close {
    opacity: 1;
}

#ws_chat #widget_popup.closed {
    right: 20px;
    opacity: 0;
    display: block;
    transform: translate3d(0px, 0px, 0px);
    pointer-events: none;
    max-height: 0;
    z-index: -1;
}


#ws_chat #whts_widget_box {
    right:10px; 
    display:block;
}

/* Small */
@media (max-width:640px) {
    #ws_chat #widget_circle {
        width: 56px;
        height: 56px;
        min-width: 0;
    }
    #ws_chat #widget_popup,
    #ws_chat #widget_circle span {
        display: none;
    }
    #ws_chat #widget_logo {
        width: 26px;
        top: 12px;
        left: 15px!important;
    }
}