﻿#chat-bot-container {
    box-shadow: 0px 1px 0 #dfe5ec;
    border-radius: 0 0 3px 3px;
    border-left: 1px solid #dfe5ec;
    border-right: 1px solid #dfe5ec;
    border-bottom: 1px solid #d2dbe3;
    background-color: rgb(128, 128, 128, 0.1);
    min-width: 300px;
    margin: 0 auto;
    min-height: 100%;
    z-index:999;
    display: none;
    overflow-y: hidden;
    overflow-x: hidden;
}

#chat-bot-container .modal-dialog
{
    width:90%;
    height:75%;
}

#chat-bot-container hr {
    clear: both;
    border: 0;
    width: 100%;
    height: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

#chat-bot-container li {
    display: list-item;
    text-align: left;
    border-radius: 3px;
    display: block;
    font-weight: 700;
    line-height: 20px;
    padding: 6px 6px 6px 38px;
    text-decoration: none;
    cursor: pointer;
}

#chat-bot-container li:hover {
    background-color: rgba(127, 127, 127, 0.5);
}

#chat-bot {
    background-color: #FFF
}

#chat-header {
    background-color: gray;
}

#chat-minimize {
    width: auto;
    height: 26px;
    font-size: 12px;
    font-weight:bold;
    float: right;
    padding: 5px 20px 2px 0px;
    margin: 5px 0px 5px 0px;
    cursor: pointer;
    color: #ccc;
}

#chat-minimize:hover {
    color: #efe;
}

#chat-list-block {
    border-right-color: grey;
    border-right-style: solid;
}

#chat-list {

}

#chat-messages {
    width: 100%;
    min-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    resize: none;
    border-radius: 5px;
    padding: 15px;    
}

#chat-respond-block {
    width: 100%;
    height: auto;
    margin: 0px 0px 0px 0px;
}

#chat-message-control {

}

#chat-send-message {

}

.chat-user-name {
    font-weight: bold;
}

.chat-dialog-actor-change {
    height: 10px;
}

.chat-my-message {
}

.chat-their-message {
}

.message-text {
    word-wrap: break-word;
    line-height: 150%;
    border-radius: 5px;
    padding: 5px;
}

#telegramicon {
    position: absolute;
    bottom: 119px;
    right: 20px;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    cursor: pointer;
    background: url("../Images/telegram.png");
    background-size: 64px 64px;
    z-index: 999;
}
