#chat-circle {
    position: fixed;
    bottom: 50px;
    right: 50px;
    /*background: #5ab989;*/
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    padding: 28px;
    cursor: pointer;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}


#chat-overlay {
    background: rgba(255,255,255,0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
}


.chat-box {
    display:none;
    background: #efefef;
    position:fixed;
    right:30px;
    bottom:50px;
   /* width:350px;*/
    width: 302.5px;
    max-width: 85vw;
    max-height:100vh;
    border-radius:5px;
    /*   box-shadow: 0px 5px 35px 9px #464a92;
    box-shadow: 0px 5px 35px 9px #ccc;*/
}
.chat-box-toggle {
    float:right;
    margin-right:15px;
    cursor:pointer;
}
.chat-box-header {
    background: #f5b824;
    
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    color:white;
    text-align:center;
    font-size:20px;
    padding-top:6px;
    padding-left: 15px;
    font-weight: bold;
}
.chat-box-body {
    position: relative;
    height: 445px !important;
    border:1px solid #ccc;
    overflow: hidden;
}
.chat-box-body:after {
    content: "";
    background: #fff;
    opacity: 0.1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height:100%;
    position: absolute;
    z-index: -1;
}
#chat-input {
    background: #f4f7f9;
    width:100%;
    position:relative;
    height:47px;
    padding-top:10px;
    padding-right:50px;
    padding-bottom:10px;
    padding-left:15px;
    border:none;
    resize:none;
    outline:none;
    border:1px solid #ccc;
    color:#888;
    border-top:none;
    border-bottom-right-radius:5px;
    border-bottom-left-radius:5px;
    overflow:hidden;
}
.chat-input > form {
    margin-bottom: 0;
}
#chat-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ccc;
}
#chat-input::-moz-placeholder { /* Firefox 19+ */
    color: #ccc;
}
#chat-input:-ms-input-placeholder { /* IE 10+ */
    color: #ccc;
}
#chat-input:-moz-placeholder { /* Firefox 18- */
    color: #ccc;
}
.chat-submit {
    position: absolute;
    bottom: 8px;
    right: 10px;
}
.chat-logs {
    padding:15px;
    height:445px;
    overflow-y:scroll;
}

.chat-logs::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.chat-logs::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}

.chat-logs::-webkit-scrollbar-thumb
{
    background-color: #5ab989;
}





.chat-msg.bot > .msg-avatar img {
    width:45px;
    height:45px;
    border-radius:50%;
    float:left;
    width:15%;
}
.chat-msg.user > .msg-avatar img {
    width:45px;
    height:45px;
    border-radius:50%;
    float:right;
    width:15%;
}
.cm-msg-text {
    background: white;
    padding: 4px 6px;
    color: #666;
    max-width: 75%;
    float: left;
    margin-left: 10px;
    position: relative;
    /* margin-bottom: 20px; */
    border-radius: 3px;
}
.chat-msg {
    clear:both;
    padding-top: 10px;
}
.chat-msg.user > .cm-msg-text {
    float:right;
    margin-right:10px;
    background: #5ab989;
    color:white;
}
.cm-msg-button>ul>li {
    list-style:none;
    float:left;
    width:50%;
}
.cm-msg-button {
    clear: both;
    margin-bottom: 70px;
}

