body {
     font-family: 'gill sans', sans-serif;
}

body.myBodyClass {
     background: #c5ddeb;
     padding: 40px 0;
     color: white;
}

.container,
.container *:before,
.container *:after {
     box-sizing: border-box;
}

*,
*:before,
*:after {
     box-sizing: border-box;
}

.chat {
     width: 490px;
     float: left;
     background: #f2f5f8;
     border-top-right-radius: 5px;
     border-bottom-right-radius: 5px;
     color: #434651;
}

.chat .chat-header {
     padding: 20px;
     background-color: #3b3b3b;
     color: white;
     border-bottom: 2px solid white;
}

.chat .chat-header img {
     float: left;
}

.chat .chat-header .chat-about {
     float: left;
     font-family: 'tahoma', sans-serif;
     padding-left: 10px;
     margin-top: 6px;
}

.chat .chat-header .chat-with {
     font-weight: bold;
     font-size: 16px;
}

.chat .chat-header .fa-star {
     float: right;
     color: #d8dadf;
     font-size: 20px;
     margin-top: 12px;
}

.chat .chat-history {
     padding: 30px 30px 20px;
     border-bottom: 2px solid white;
     overflow-y: scroll;
     height: 575px;
}

.chat .chat-history ul li {
     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: 90%;
     position: relative;
}

.chat .chat-history .my-message {
     background: white;
     color: #3b3b3b;
}

.chat .chat-history .other-message {
     background: #3b3b3b;
}

.chat .chat-history .other-message:after {
     border-bottom-color: #3b3b3b;
     left: 93%;
}

.chat .chat-message {
     padding: 30px;
}

.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: #282828;
     font-size: 16px;
     text-transform: uppercase;
     border: none;
     cursor: pointer;
     font-weight: bold;
     background: #f2f5f8;
}

.chat .chat-message button:hover {
     color: #797979;
}

.me {
     margin-right: 3px;
     font-size: 10px;
}

.me {
     color: #3b3b3b;
}

.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;
}