@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#chat-box {
    border-radius: 10px !important;
    border: 1px solid #9b9b9b;
}
.chatButton {
    z-index: 1000;
    font: "Lato", Arial, sans-serif;
    width: 50px;
    height: 50px;
    position: fixed;
    font-size: 27px !important;
    right: 15px;
    bottom: 50px;
    border-radius: 5px !important;
    padding: 5px 5px 5px 7px !important;
    text-align: center;
}
.chatButton span {
    font-size: 10px;
    font-weight: bold;
    line-height: 1px;
    margin-left: -2px;
    margin-top: 5px;
    display: block;
}
.chat {
    font: 14px/20px "Lato", Arial, sans-serif;
    background: #F2F5F8;
    color: #434651;
    border-radius: 10px !important;
}

    .chat .chat-header {
        padding: 10px;
        border-bottom: 2px solid white;
    }

        .chat .chat-header img {
            float: left;
        }

        .chat .chat-header .chat-about {
            float: left;
            padding-left: 10px;
            margin-top: 6px;
        }

        .chat .chat-header .chat-with {
            font-weight: bold;
            font-size: 16px;
        }

        .chat .chat-header .chat-num-messages {
            color: #92959E;
        }

        .chat .chat-header .fa-close {
            float: right;
            color: #a6181c;
            font-size: 20px;
            margin-top: 3px;
            cursor: pointer;
        }

    .chat .chat-history {
        padding: 20px 20px 15px;
        border-bottom: 2px solid white;
        overflow-y: scroll;
        height: 250px;
    }
        .chat .chat-history ul {
            list-style-type: none;
        }

        .chat .chat-history .message-data {
            margin-bottom: 15px;
        }

        .chat .chat-history .message-data-time {
            color: #a8aab1;
            padding-left: 6px;
        }

        .chat .chat-history .message {
            color: white;
            padding: 18px 20px;
            line-height: 26px;
            font-size: 16px;
            border-radius: 7px;
            margin-bottom: 30px;
            width: 80%;
            position: relative;
        }

            .chat .chat-history .message:after {
                bottom: 100%;
                left: 7%;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-bottom-color: #86BB71;
                border-width: 10px;
                margin-left: -10px;
            }

        .chat .chat-history .my-message {
            background: #86BB71;
            border-radius: 0px 10px 10px 10px !important;
        }

        .chat .chat-history .other-message {
            background: #94C2ED;
            border-radius: 10px 0px 10px 10px !important;
        }

            .chat .chat-history .other-message:after {
                border-bottom-color: #94C2ED;
                left: 93%;
            }

    .chat .chat-message {
        padding: 30px 30px 10px 30px;
        border-radius: 5px!important;
    }

        .chat .chat-message textarea {
            width: 100%;
            border: none;
            padding: 10px 20px;
            font: 14px/22px "Lato", Arial, sans-serif;
            margin-bottom: 10px;
            border-radius: 5px;
            resize: none;
        }

        .chat .chat-message .fa-file-o, .chat .chat-message .fa-file-image-o {
            font-size: 16px;
            color: gray;
            cursor: pointer;
        }

        .chat .chat-message button {
            float: right;
            color: #94C2ED;
            font-size: 16px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-weight: bold;
            background: #F2F5F8;
        }

            .chat .chat-message button:hover {
                color: #75b1e8;
            }

.online, .offline, .me {
    margin-right: 3px;
    font-size: 10px;
}

.online {
    color: #86BB71;
}

.offline {
    color: #E38968;
}

.me {
    color: #94C2ED;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.float-right {
    float: right;
}
