#widget_chat_box{
    position: fixed;
    /*bottom:20px;*/
    top:20px;
    right:20px;
    z-index: 2;
    font-size:15px;
}
@media (max-width: 767px){
    #widget_chat_box{
        position: fixed;
        /*bottom:20px;*/
        top:auto;
        bottom:20px;
        right:20px;
        z-index: 2;
    }
}
.chat_panel{
    position: relative;
}
#chat_bubble_counter{
    position: absolute;
    top:0px;right:0px;
    background-color: #c90000;
    color:#fff;
    font-size: 10px;
    line-height: 12px;
    height: 14px;
    min-width: 14px;
    border-radius: 14px;
    text-align: center;
    padding: 1px 3px;
}
#widget_chat_bubble{
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 47px;
    text-align: center;
    background-color: #008bdd;
    border-color: #008bdd;
    border-width: 2px;
    border-style: solid;
    color:#fff;
    font-size: 25px;
    cursor: pointer;
}
#widget_chat_bubble:active,
#widget_chat_bubble:hover{
    background-color: #fff;
    color:#008bdd;
}

#chat_input_box{
    height: 60px;
    background-color: transparent;
}
#widget_chat_chatter #chat_input_box{
    position: absolute;
    bottom:15px;
    left: 15px;right:15px;
}
#widget_chat_chatter .chat_header{
    position: absolute;
    top:0;
    left: 15px;right:15px;
}
#chat_list{
    background-color: #fff;
    border-radius: 3px;
    padding: 5px;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;

    position: absolute;
    top: 30px;
    bottom: 75px;
    left:15px;right:15px;
}
#chat_list .msg_box{
    margin-bottom: 3px;
}
#chat_list .msg_box .msg{
    border-radius: 18px;
    background-color: #f0f0f0;
    color:#2e2f35;
    word-wrap: break-word;
    padding: 5px 12px;
    max-width: 170px;
    display: inline-block;
}
#chat_list .msg_box.me{
    text-align: right;
}
#chat_list .msg_box.me .msg{
    background-color: #4c7fc1;
    color:#fff;
}
.chat_big_panel{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #008bdd;
    padding: 15px;
    padding-top: 0;
    border-radius: 4px;
    color:#fff;
}
#widget_chat_contact_form label{
    width: 100%;
}
.chat_input:focus{
    outline: none;
}
.chat_input{
    width: 100%;
    padding: 2px 3px;
    font-size: 16px;
}
.field_cont{margin-bottom: 5px;}
.chat_btn:hover{
    background-color: #fff;
    color: #008bdd;
}
.chat_btn:active,
.chat_btn{
    background: none;
    background-color: transparent;
    border: 2px solid #fff;
    height: 26px;
    line-height: 22px;
    padding: 0 15px;
    border-radius: 13px;
    outline: none;
    color:#fff;
}

.chat_input{
    border:none;
    background-color: #fff;
    color:#333;
    border-radius: 3px;
}

.chat_header{
    height: 30px;
    line-height: 30px;
}
.chat_header .chat_x_btn{
    float: right;
}
.chat_x_btn{
    font-size: 14px;
    color:#fff;
}



/*****************************************/
.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
