/*
 Copyright 2017: ADVOKAT Unternehmensberatung GREITER & GREITER GmbH
   --> Jusline 2.0
 
 Erstellt: CHE - 04.09.2018

 Abhängigkeiten:
  --> 

 Beschreibung:

*/
/* 
    Created on : 04.09.2018, 13:30:50
    Author     : CHE
*/

.agent {
    overflow-y: auto;
    background: white;
    position: fixed;
    top: 110px;
    bottom: 55px;
    width: 100%;
    color: #2b313f;
    font-weight: 300;
}
.agent-header {
    min-height: 80px;
    height: 80px;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #2b303e;
    display: table;
}
.agent-header-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
}
.agent-header-wrapper {
    display: table-cell;
    vertical-align: middle;
}
.agent-header-agent-name {
    padding-left: 80px;
    font-size: 18px;
    color: #ffffff;
}
.agent-header-description {
    color: #b7bbc4;
    padding-left: 80px;
    padding-top: 7px;
    font-size: 12px;
    display: block;
    display: -webkit-box;
    max-height: 24px;
    margin: 0 auto;
    line-height: 1;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#agent-avatar {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    margin: auto;
}
.agent-result {
    overflow-y: auto;
    background: white;
    position: fixed;
    top: 80px;
    bottom: 55px;
    width: 100%;
}
#result {
    vertical-align: bottom;
}
.agent-result-table {
    height: 100%;
    min-height: 100%;
    width: 100%;
}
.agent-input-wrapper {
    position: fixed;
    bottom: 0;
    height: 55px;
    border-top: 1px solid lightgray;
    background-color: white;
    width: 100%;
}
.agent-input {
    display: block;
    margin-left: 15px;
    margin-right: 55px;
}
#query {
    width: 100%;
    border: 0;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    height: 55px;
}
#query::placeholder {
    color: #2b313f;
    opacity: 1; /* Firefox */
}

#query:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #2b313f;
}

#query::-ms-input-placeholder { /* Microsoft Edge */
    color: #2b313f;
}
.user-request, .server-response {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 16px;
    clear: both;
}
.user-request {
    color: #ffffff;
    background-color: #a5d175;
    float: right;
    margin-right: 15px;
    margin-top: 15px;
    margin-left: 15px;
}
.server-response {
    background-color: #efefef;
    float: left;
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 15px;
}
.server-response-error {
    background-color: #f76949;
}