.chat {
    position: fixed;
    right: 0;
    bottom: 30px;
    margin-right: 60px;
    width: 20%;
    background-color: red;
    z-index: 1000;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.chat > .chat-header {
    width: 100%;
    display: flex;
    align-items: center;
    height: 35px;
    padding: 5px 10px;
    background-color: #fff;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid #cacaca;
    background-color: #2196f3;
}

.chat > .chat-body {
    display: none;
    height: 35rem;
    padding: 10px;
    background-color: #eaebec;
    border: 1px solid #cacaca;
}

.chat > .chat-body > .conversation {
    height: 90%;
    overflow-x: hidden;
    overflow-y: scroll;
}

.chat > .chat-body > .conversation > .messages {
    margin: 15px 0;
}

.chat > .chat-body > .conversation > .messages .message {
    padding: 5px 10px;
    border-radius: 5px;
}

.chat > .chat-body > .conversation > .messages .message .time {
    font-size: 12px;
    color: #cacaca;
    padding: 0 5px;
    font-weight: 500;
}

.chat > .chat-body > .send-message input {
    width: 100%;
    border: none;
    padding: 6px;
}

.message-other {
    background: #fff;
    margin-right: 5rem;
}

.message-own {
    background: #ccf6c8;
    margin-left: 5rem;
    color: #000;
}
