/*@import url(https://fonts.googleapis.com/css?family=Lato:400,700);*/

.chatcontainer {
    padding: 0px 0px;
    margin: 10px 10px;
    /*width: 750px;*/
    width:100%;
    /*background: #444753;*/
    border-radius: 5px;
    padding: 0px;
    /*color: white;*/
    /*height: 75vh;*/
resize: both;
    overflow: auto;
}

.chat {
    /*width: calc(100% - 260px);*/
    width:100%;
    float: left;
    /*background: #F2F5F8;*/
    /*border-top-right-radius: 5px;*/
    /*border-bottom-right-radius: 5px;*/
    /*color: #434651;*/
    height: 100%;
    overflow-y: hidden;
}
    .chat .chat-history {
        /*padding: 30px 30px 20px;*/
        /*border-bottom: 2px solid white;*/
        overflow-y: auto;
        height: calc(100% - 125px);
        /*height:100%;*/
    }

        .chat .chat-history .message-data {
            margin-bottom: 10px;
        }

        .chat .chat-history .message-data-time {
            /*color: #a8aab1;*/
            /*padding-left: 6px;*/
        }

        .chat .chat-history .message {
            color: var(--light);
            padding: 10px 12px;
            line-height: 20px;
            /*font-size: 16px;*/
            border-radius: 7px;
            margin-bottom: 30px;
            width: 90%;
            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: var(--secondary);
                border-width: 5px;
                margin-left: -5px;
            }

        .chat .chat-history .my-message {
            background-color: var(--secondary);
            /*border-color: #86BB71;*/
        }

        .chat .chat-history .other-message {
            background-color: var(--primary);
            /*border-color: #94C2ED;*/
        }

            .chat .chat-history .other-message:after {
                border-bottom-color: var(--primary);
                left: 93%;
            }

    .chat .chat-message {
        /*padding: 30px;*/
        margin-top:5px;
        height:120px;
    }

        .chat .chat-message textarea {
            width: 100%;
            /*border: none;*/
            padding: 10px 10px;
            height:85px;
            /*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;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
