/* Chat */

ul.chat-box {
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 10px;
}
.chat-box li {
    position: relative;
    z-index: 35;
    margin-bottom: 10px;
}
.chat-box li.float-left {
    float: none !important;
    padding-right: 0;
    padding-left: 60px;
}
.chat-box .chat-author {
    position: absolute;
    top: 0;
    right: 0;
}
.chat-box li.float-left .chat-author {
    right: auto;
    left: 0;
}
.chat-box .chat-author img {
    min-width: 45px;
    border-radius: 100px;
}
.chat-box .popover {
    position: relative !important;
    display: block;
    float: none;
    min-height: 45px;
}
.chat-box .popover .popover-content {
    padding: 15px;
}
.chat-box .popover.left .arrow,
.chat-box .popover.right .arrow {
    top: 23px;
}
/***
.chat-box .chat-time {
    font-size: 10px;
    font-style: italic;
    margin-top: 5px;
    color: #000;
}
.chat-box .chat-time i {
    font-size: 13px;
    margin-right: 3px;
}
*/
.chat-box .popover h3 {
    font-size: 16px;
    margin: 0 0 5px;
}
.chat-box .popover .divider {
    margin: 8px 0 10px;
}
.chat-box .chat-reply {
    overflow: hidden;
    padding: 0;
    border-width: 1px;
}
.chat-body{
    padding: 0px!important;
}
.chat-box .left {
    /**background-image: linear-gradient(to left, #fff , #BBDEFB);*/
    background-color: #3578E5;
    color: white;
    font-size: 12px;
    white-space: initial;
    padding: 10px;
    border-radius: 10px 0px 0px 10px;
}
.left .chat-time {
    color: #fff;
    font-size: 10px;
    font-style: italisc;
    text-align: right;
    margin-top: 10px;
}
.right .chat-time {
    color: #000;
    font-size: 10px;
    font-style: italsic;
    text-align: left;
    margin-top: 10px;
}
.chat-box .right {
    /**background-image: linear-gradient(to right, #fff , #DCEDC8);*/
    background-color: #eeeeee;
    color: black;
    font-size: 12px;
    white-space: initial;
    padding: 10px;
    border-radius: 0px 10px 10px 0px;
}

.chat-group {
    width: 82vw;
    position: fixed;
    bottom: 0px;
    z-index: 99999;
    margin-bottom: 0!important;

}
.chat-group > .row {
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 0!important;
}
.chat-group > .row > .col-xs-3 {
  display: inline-block;
  float: none;
}
.chat-group > .row > .col-xs-3 > .panel {
  margin-bottom: 0px!important;
}

.left {
    position: relative;
    background: #3578E5;
    text-align: right;
}
.left:after {
    left: 100%;
    top: 25%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #fff;
    border-left-color: #3578E5;
    border-width: 10px;
    margin-top: -10px;
}

.right {
    position: relative;
    background: #eeeeee;
    text-align: left;
}
.right:after {
    right: 100%;
    top: 25%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #fff;
    border-right-color: #eeeeee;
    border-width: 10px;
    margin-top: -10px;
}
.title-chat{
    color: white;
    text-transform: capitalize;
    cursor: pointer;
    font-size: 12px;
}
.title-chat:hover{
    color: #eee;
    text-transform: capitalize;
    cursor: pointer;
}