.chat-button {
    position: fixed;
    right: 0;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #0d6aad;
    cursor: pointer;
}

.chat-container {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 30px;
    height: 400px;
    border: 1px solid black;
    width: 800px;
    display: flex;
    flex-direction: column;
}

.chat-menu {
    width: 100%;
    height: 25px;
    background-color: #fff;
}

.chat-content {
    display: flex;
    flex-direction: row;
    background-color: white;
    flex-grow: 1;
    flex-basis: 0;
}

.chat-contacts {
    display: flex;
    flex-grow: 2;
    flex-basis: 0;
    background-color: #eeeeee;
    flex-direction: column;
    overflow-y: scroll;
}

.chat-messages {
    display: flex;
    flex-grow: 3;
    flex-basis: 0;
    flex-direction: column;

}

.chat-messages-container {
    background-color: #fffbe3;
    flex-grow: 8;
    overflow-y: scroll;
    padding: 5px;
    flex-basis: 0;
}

.chat-input-container {
    background-color: #fffbef;
    flex-grow: 1;
    flex-direction: row;
    display: flex;
    flex-basis: 0;
}

.chat-text-area-container {
    flex-grow: 10;
    flex-basis: 0;
}

.chat-send-container {
    background-color: #d1f1c4;
    display: flex;
    align-content: center;
    justify-content: center;
}

.chat-input {
    width: 100%;
    height: 100%;
    resize: none;
    border: none !important;
    outline: 0;
}

.chat-message {
    color: #000000;
    padding: 10px 15px;
    margin-right: 30px;
    margin-left: 0;
    background-color: #dbdbdb;
    border-radius: 5px;
    border: 1px solid white;
}

.from-me {
    background-color: #d1f1c4;
    margin-right: 0;
    margin-left: 30px;
}

.btn-close {
    color: #fff;
    background-color: #5c5c5c;
    border-color: #5c5c5c;
}

.chat-send-container .btn,
.chat-send-container .btn:hover {
    border-radius: 0;
    background-color: #ccc;
    border-color: #ccc;
}

.chat-send-container .btn:hover {
    background-color: #3f8bd4;
    border-color: #3f8bd4;
}

.chat-contact .btn {
    border-radius: 0;
    background-color: #fff;
    color: #000;
}

.chat-contact .btn.active {
    background-color: #0d6aad;
    border-color: #0d6aad;
}

.chat-contact .btn:hover,
.chat-contact .btn.active:hover {
    background-color: #3f8bd4;
    border-color: #3f8bd4;
}
