/*CHAT*/

.send_field {
    color:#000000;
    border:rgb(156, 156, 156) solid 1px;
    width: 100%;
    line-height: 22px;
    border-radius: 3px;
    padding: 5px;
    margin-bottom: 10px;
    margin-right: 10px;
    overflow: hidden;
    resize: none;
    background-color: var(--de-area-background);
}
textarea.send_field:focus {
    outline-style: solid;
    outline-width: 2px;
}
#send_msg {
    width: 100%;
    line-height: 20px;
}
.chat {
    color:#000000;
    background-color: var(--de-area-background);
    border:rgb(156, 156, 156) solid 1px;
    width: 100%;
    border-radius: 3px;
    min-height: 290px;
    max-height: 450px;
    padding: 10px;
    margin-top:10px;
    overflow-y: scroll;
    float: left;
}
.inner_chat {
    position: relative;
}
.chat .self{
    background-color: #fdfff0 !important;
}
.chat .message {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top:10px;
    padding: 5px;
    width: 100%;
    border: solid 1px rgb(163, 163, 163);
}
.chat .message i{
    padding-right: 5px;
    padding-left: 5px;
}
.chat .message .msg_date {
    border: solid 1px black;
    position: absolute;
    top: -7px;
    right: 40px;
    font-size: 0.9em;
    background-color: #f1eedc;
    border-radius: 2px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 12px;
}
.chat .message .delete {
    border: solid 1px black;
    position: absolute;
    top: -7px;
    right: 10px;
    font-size: 0.9em;
    background-color: #f1eedc;
    border-radius: 2px;
    line-height: 12px;
}