#chatBoxContainer{
    position: fixed;
    background: transparent;
    z-index: 9999;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-property: bottom, transform;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
    border-radius: 8px 8px 0px 0px; */
    cursor: pointer;
    bottom: 135px;
    overflow: hidden;
    width: 185px;
    height: 145px;
    right: 5px;
    left: auto;
}

@media screen and (max-width: 1100px){
    #chatBoxContainer{
        bottom: 170px;
        right: -5px;
    }
}