.online{
    color: #32CD32;
}
.ffside {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: 18em;
    overflow-x: hidden;
    padding-top: 50px;
}
.chat_box{
    width:299px;
    padding: 5px;
    position: fixed;
    bottom: -20px;
}

.chatbox {
    position: fixed;
    bottom: 198px;
    right: 10px;
    width: 300px;
    height: 509px;
    background-color: #fff;
    font-family: 'Lato', sans-serif;

    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);

    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    flex-direction: column;
}
.chatbox--tray {
    bottom: -350px;
}
.chatbox--empty {
    height: 600px;
}

.chatbox--empty.chatbox--tray {
    bottom: -560px;
}

.chatbox--empty.chatbox--closed {
    bottom: -262px;
}

.chatbox--empty .chatbox__body,
.chatbox--empty .chatbox__message {
    display: none;
}

.chatbox--empty .chatbox__credentials {
    display: block;
}

.chatbox__title,
.chatbox__body {
    border-bottom: none;
}

.chatbox__title {
    min-height: 50px;
    padding-right: 10px;
    background-color: #1f2836;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;

    display: -webkit-flex;
    display: flex;

    -webkit-align-items: center;
    align-items: center;
}

.chatbox__title h5 {
    height: 50px;
    margin: 0 0 0 15px;
    line-height: 50px;
    position: relative;
    padding-left: 20px;

    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.chatbox__title h5 a {
    color: #fff;
    max-width: 195px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatbox__title h5:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 6px;

    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.chatbox__title__tray,
.chatbox__title__close {
    width: 24px;
    height: 24px;
    outline: 0;
    border: none;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;

    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

.chatbox__title__tray:hover,
.chatbox__title__close:hover {
    opacity: 1;
}

.chatbox__title__tray span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-bottom: 2px solid #fff
}

.chatbox__title__close svg {
    vertical-align: middle;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2px;
}

.people-list {
    width: 260px;
    float: left;
    border-left: 1px solid #1f2836;
}
.people-list .search {
    padding: 20px;
}
.people-list input {
    border-radius: 3px;
    border: none;
    padding: 14px;
    color: white;
    background: #6A6C75;
    width: 90%;
    font-size: 14px;
}
.people-list .fa-search {
    position: relative;
    left: -25px;
}
.people-list ul {
    padding: 0px;
    height: 548px;
    list-style: none;
    overflow: auto;
    width: 295px;
    margin-left: 4px;
}
.people-list ul li {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px dashed #e5ebf5;
}
.people-list img {
    float: left;
}
.people-list .about {
    float: left;
    margin-top: 8px;
}
.people-list .about {
    padding-left: 8px;
}
.people-list .status {
    color: #92959E;
}

/*Group list*/
.group-list {
    width: 260px;
    float: left;
    border-left: 1px solid #1f2836;
}
.group-list .search {
    padding: 20px;
}
.group-list input {
    border-radius: 3px;
    border: none;
    padding: 14px;
    color: white;
    background: #6A6C75;
    width: 90%;
    font-size: 14px;
}
.group-list .fa-search {
    position: relative;
    left: -25px;
}
.group-list ul {
    padding: 0px;
    height: 108px;
    list-style: none;
    overflow: auto;
    width: 295px;
    margin-left: 4px;
}
.group-list ul li {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px dashed #e5ebf5;
}
.group-list img {
    float: left;
}
.group-list .about {
    float: left;
    margin-top: 8px;
}
.group-list .about {
    padding-left: 8px;
}
.group-list .status {
    color: #92959E;
}

.direct-chat-primary .right > .direct-chat-text {
    background: #3c8dbc;
    border-color: #3c8dbc;
    color: #fff;
    float: right !important;
}
.direct-chat-text {
    border-radius: 5px;
    position: relative;
    padding: 5px 10px;
    background: #d2d6de;
    border: 1px solid #d2d6de;
        border-top-color: rgb(210, 214, 222);
        border-right-color: rgb(210, 214, 222);
        border-bottom-color: rgb(210, 214, 222);
        border-left-color: rgb(210, 214, 222);
    margin: 5px 0 0 50px;
        margin-right: 0px;
        margin-left: 50px;
    color: #444;
}
.direct-chat-msg {
    margin-bottom: 10px;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.direct-chat-info {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}
.direct-chat-timestamp {
    color: #999;
}
.pull-right {
    float: right;
}
.pull-right {
    float: right !important;
}
.small, small {
    font-size: 85%;
}
*, ::after, ::before {
    box-sizing: border-box;
}
