﻿#CloseMessengerBox:after {
    content: '\e818';
    font-family: active-menu;
    color: white;
    cursor: pointer;
    font-size: 20px;
    margin-right: 20px;
}
.messenger-header {
    width: 100%;
    height: 50px;
    background-color: #e90530;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title {
    color: white;
    font-family: 'UniBold';
    margin-left: 10px;
}
.messenger-body {
    height: 470px;
    border-bottom: 1px solid #1f1e1e;
    overflow-x: hidden;
    color: white;
}
.messenger-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
}
#MessageText {
    width: 270px;
    height: 15px;
    border: 0;
    background-color: #1b1515;
    outline: 0;
    color: white;
    resize: none;
    padding: 20px;
    border-radius: 50px;
}
#SendMessage {
    width: 70px;
    height: 50px;
    outline: 0;
    background-color: #e90530;
    border: 0;
    border-radius: 40px;
    font-family: 'UniBold';
    color: white;
    font-size: 16px;
    cursor: pointer;
}
    #SendMessage:hover {
        transition: background-color .9s;
        background-color: #ad0424;
    }
.client-message span {
    max-width: 200px;
    background-color: red;
    position: relative;
    right: 0;
    display: flex;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    font-family: 'UniBold';
    font-size: 13px;
    margin-left: auto;
    word-break: break-all;
}
.admin-message span {
    max-width: 200px;
    background-color: #272727;
    position: relative;
    left: 0;
    display: flex;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    font-family: 'UniBold';
    font-size: 14px;
    margin-right: auto;
    word-break: break-all;
}
.admin-message:after {
    content: attr(data-date);
    display: inline-block;
    position: relative;
    margin-left: 20px;
    color: #6b6b6b;
    font-family: 'UniBold';
    font-size: 12px;
    top: -8px;
}
.client-message:after {
    content: attr(data-date);
    display: block;
    position: relative;
    color: #6b6b6b;
    font-family: 'UniBold';
    font-size: 12px;
    right: 16px;
    top: -8px;
}
.client-message {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}