#hide_lc  {
    position : fixed;
    bottom: 40px;
    left: 185px;
    z-index : 2147483640;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    /*bottom : 0%;*/
    /*left : 0%;*/
    width : 30px;
    height : 60px;
}
#show_lc {
    display : none;
    position : fixed;
    bottom: 40px;
    left: 40px;
    z-index : 2147483640;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    /*bottom : 0%;*/
    /*left : 0%;*/
    width : 30px;
    height : 60px;
}

#hide_lc span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
    /*margin: -10px;*/
    animation: animate 2s infinite;
}
#show_lc span {
    display: block;
    width: 12px;
    height: 12px;
    border-left: 3px solid white;
    border-top: 3px solid white;
    transform: rotate(45deg);
    /*margin: -10px;*/
    animation: animate_show 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(0px, 0px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px);
    }
}
@keyframes animate_show {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(0px, 0px);
    }
}
#chat-widget-container {
    color: white;
    font-size: large;
    height: 63px;
    width: 281px;
    text-align: center;
    line-height: 150px;
    transition: width 1s ease-in-out;
    -webkit-transition:width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
}