﻿/*
 * CHAT (c) 2022 @alva-it
 */

.chat-container {
    font-family: Gilroy;
    line-height: normal;
    margin: 0;
    font-size: 12px;
    font-family: Arial;
    width: 320px;
    min-width: 320px;
    max-width: 1172px;
    position: fixed;
    border: none;
    right: 0;
    _bottom: 0;
    _height: 100%;
    z-index: 999;
    top: 50px;
}

.chat-body {
    border: 1px solid #ddd;
    border-radius: 3px 3px 3px 3px;
    background-color: #fff !important;
}

.chat-header {
    height: 50px;
    border-bottom: 1px solid #eaeaea;
}
.chat-header-title {
    font-family: Gilroy;
    font-size: 15px;
    padding-left: 20px;
    padding-top: 15px;
    color: #333;
}
.chat-header-close {
    position: absolute; 
    right: 15px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
}
.chat-messages {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    padding: 5px 0 5px 5px;
    _background-color: rgba(242,245,248,.65);
    overflow-y: auto;
}
.chat-message-avatar {
    padding: 0 5px 0 5px;
}
.chat-message {
    padding: 10px 10px 10px 5px;
    display: flex;
}
.chat-message-item {
    background-color: #FFF5DA;
    background-color: #FFCF48;
    padding: 5px 10px;
    border-radius: 15px;
}
.Client .chat-message-item {
    background-color: var(--theme-secondary-3);
}
.Operator .chat-message-item {
    background-color: var(--theme-primary-4);
}
.chat-message-title {
    display: flex;
    padding: 5px 0;
}
.chat-message-name {
    font-weight: 600;
}
.chat-message-time {
    margin-left: auto;
}
.chat-message-text {
    width: 220px;
}
.chat-editor {
    height: 76px;
    display: flex;
    padding: 5px;
}
.chat-editor textarea{
    width: 100%;
    resize: none;
    border: solid 1px #F0F0F0;
    outline: none !important;
}
.chat-editor > div {
    _padding-top: 5px;
}
.chat-editor > div:first-child {
    padding-top: 0;
    padding-right: 5px;
    width: 70%;
}
.chat-editor button{
    margin-top: 5px;
    width: 40px;
}
.chat-editor #chatMessageSend {
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: #FFCF48
} 