.sidebar-chat-bot{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999999;
}

.sidebar-chat-bot .chat-button{
    background: #027eff;
    padding: 15px;
    display: inline-block;
    border-radius: 100%;
    cursor: pointer;
}

@media only screen and (min-width: 200px) and (max-width: 700px ) {
    .sidebar-chat-bot .chat-button{
        float: right;
        margin-right: 20px;
    }
}

.sidebar-chat-bot .chat-button img{
    width: 30px;
    height: 30px;
}

.sidebar-chat-bot .chat-widget{
    position: absolute;
    bottom: 0px;
    right: -450px;
    background: #FFFFFF;
    width: 400px;
    height: 500px;
    overflow: hidden;
    padding-bottom: 50px;
    opacity: 1;
    
    -webkit-box-shadow: 0 0 15px 0 #AAAAAA;
    box-shadow: 0 0 15px 0 #AAAAAA;
    
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.sidebar-chat-bot .chat-widget.show{
    right: 0px;
}

.sidebar-chat-bot .chat-widget .titlebar{
    background: #027eff;
    width: 100%;
    padding: 15px;
    padding-left: 20px;
}
.sidebar-chat-bot .chat-widget .titlebar h6{
    font-weight: 600;
    font-size: 14px;
    color:#FFFFFF;
    margin-bottom: 0px;
    line-height: 1em;
}

.sidebar-chat-bot .chat-widget .titlebar img{
    position: absolute;
    right: 15px;
    top: 12px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.sidebar-chat-bot .chat-widget .inner{
    position: relative;
    width: 100%;
    height: 80%;
    max-height: 100%;
    padding: 20px;
    overflow-y: scroll;
    border-bottom: 1px solid #CCCCCC;
}
/*
.sidebar-chat-bot .chat-widget .inner::-webkit-scrollbar {
  display: none;
}
.sidebar-chat-bot .chat-widget .inner{
  -ms-overflow-style: none;
  scrollbar-width: none;
}
*/

.sidebar-chat-bot .chat-widget .inner .buttons-container{
    display: block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sidebar-chat-bot .chat-widget .inner .chat-head{
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.sidebar-chat-bot .chat-widget .inner .item{
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 90%;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}
.sidebar-chat-bot .chat-widget .inner .item.text{

}
.sidebar-chat-bot .chat-widget .inner .item.text p{
    font-size: 15px!important;
    line-height: 1.5em;
    margin-bottom:0px;
}

.sidebar-chat-bot .chat-widget .inner .item.bot{
    background: #F5F5F5;
    color:#666666;
    border: 1px solid #DDDDDD;
}
.sidebar-chat-bot .chat-widget .inner .item.human{
    float: right;
    background: #027eff;
    color:#FFFFFF;
    
    background-color: rgba(2, 126, 255, 0.1);
    color: #027eff;
    border: 1px solid rgba(2, 126, 255, 0.6);
}

.sidebar-chat-bot .chat-widget .inner .faq-button{
    border: 2px solid #027eff!important;
    border-radius: 100px;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #027eff;
    font-size: 13px;
    font-weight: 600;
    display: inline-block!important;
    line-height: 1.5em;
    text-decoration: none;
}
.sidebar-chat-bot .chat-widget .inner .faq-button:hover{
    background: #027eff;
    color: #FFFFFF;
}

.sidebar-chat-bot .chat-widget .textbox-container{
    position: relative;
    width: 100%;
    height: 20%;
    padding: 10px;
}
.sidebar-chat-bot .chat-widget .msg-box{
    float: left;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    width: 88%;
    height: 100%;
    margin-right: 2%;
    display: block;
    border: 0px;
    padding: 15px;
    outline: none;
    background-color: #F5F5F5;
    resize: none;
}

.sidebar-chat-bot .chat-widget .textbox-container .sendfaqchat{
    float: left;
    position: relative;
    background-color: #027eff;
    background-image: url(../images/send.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 10%;
    height: 40px;
    border-radius: 5px;
}



@media only screen and (min-width: 200px) and (max-width: 600px){
    
    .sidebar-chat-bot{
        width: 100%;
        right: 0px;
        bottom: 20px;
        z-index: 99999999999999;
    }
    
    .sidebar-chat-bot .chat-widget{
        width: 95%;
    }
    
    .sidebar-chat-bot .chat-widget.show{
        right: 2.5%;
    }
    
}