.agent-assistant {
    flex: 1;
}

.agent-assistant .container {
    position: fixed;
    top: 48;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

#agent-assist {
    width: 100%;
!    height: 350px;
	height: 100%
}

iframe {
!    height: 350px;
	height: 100%
}

hr {
    padding: 0px !important;
    margin: 0px !important;
}

a{
    color: #23395D;
}

a:hover{
    text-decoration: underline;
}

.chat-message {
    background-color: #F2F2F2;
    border-radius: 5px;
    box-shadow: 0 0 6px #B2B2B2;
    display: inline-block;
    padding: 10px 18px;
    position: relative;
    vertical-align: top;
    width: 55%;
}

.chat-message::before {
    background-color: #F2F2F2;
    content: "\00a0";
    display: block;
    height: 16px;
    position: absolute;
    top: 11px;
    transform:             rotate( 29deg ) skew( -35deg );
        -moz-transform:    rotate( 29deg ) skew( -35deg );
        -ms-transform:     rotate( 29deg ) skew( -35deg );
        -o-transform:      rotate( 29deg ) skew( -35deg );
        -webkit-transform: rotate( 29deg ) skew( -35deg );
    width:  20px;
}

.customer {
    background-color: white;
    color: #23395D;
    float: left;   
    margin: 5px 45px 5px 20px;   
}

.customer::before {
    background-color: white;
    box-shadow: -2px 2px 2px 0 rgba( 178, 178, 178, .4 );
    left: -9px;
}

.agent {
    background-color:  #23395D;
    color: white;
    float: right;    
    margin: 5px 20px 5px 45px;   
}

.agent::before {
    background-color:  #23395D;
    box-shadow: 2px -2px 2px 0 rgba( 178, 178, 178, .4 );
    right: -9px;   
}

.workflow {
    background-color:  #00A600;
    color: white;
    float: right;    
    margin: 5px 20px 5px 45px;   
}

.workflow::before {
    background-color:  #00A600;
    box-shadow: 2px -2px 2px 0 rgba( 178, 178, 178, .4 );
    right: -9px;   
}

.chat-conversation {
    display: flex;
    flex: 1 1 100%;
    flex-direction: column;
}

.message-pane {
    /* display: flex; */
    align-content: stretch;
    flex-direction: column;
    height: calc(100% - 100px);
    background-color: #fff;
    overflow-y: auto;
    flex: 1 1 0;
}

.chat-box {
    padding: 0px 20px 0px 20px;
    border-top: 1px solid #ccc;
    background-color: rgb(244, 244, 244);
}

.top-chat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    height: 20px;
    min-height: 15px;
    max-height: 15px;
    padding-top: 2px;
    color: #999999;
}

.bottom-chat-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    padding-top: 2px;
    color: #999999;
}

.chat-text {
    width: 100%;
    max-height: 130px;
    padding: 5px;
    overflow-y: auto;
    resize: none;
    color: #666666;

    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;
    border: 1px solid #ccc;
    height: 50px;
    overflow: auto;
    padding: 2px;
    resize: both;
    background-color: white;
}

.chat-text:focus {
    border-color: #75a8ff;
    box-shadow: 0 0 2px rgba(117,168,255,.72);
    outline: 0;
}

.link-container {
    margin: 10px;
}

#libraries-container {
    margin: 10px;
}

#canned-response-container {
    height: 350px;
    display: none;
    overflow: auto;
    flex: 1 1 0;
}

.collapsible {
    border: 1px solid #23395D;
    border-radius: 25px;
    color: #23395D;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin: 5px;
}

.active, .collapsible:hover {
    background-color: #23395D;
    border: 1px solid #23395D;
    border-radius: 25px;
    color: white;
}

.content {
    /* padding: 0 18px; */
    display: none;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 5px;
}

#search-container {
    margin: 10px 10px 0px;
    position: relative;
}

#search-result-container {
    display: none;
}

.search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

#find-response {
    border: 1px solid #e1e1e1;
    background-color: #f6f6f6;
    box-shadow: none;
    padding-right: 30px;
    height: 30px;
    border-radius: 4px;
    text-overflow: ellipsis;
    width: 100%;
    padding: 6px 12px;
}

#find-response-btn {
    position: absolute;
    right: 0;
    background-color: transparent;
    border-color: transparent;
}

i {
    color: #b8b8b8;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 2px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
	bottom: 100%;
	right: 0;
    background-color: #f9f9f9;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 5px;
}

.dropdown-item img {
    width: 30px;
    height: 20px;
    margin-right: 5px;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.language-picked {
    display: flex;
    align-items: center;
    padding: 5px;
}

.language-picked img {
    width: 30px;
    height: 20px;
    margin-right: 5px;
}

