/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 16, 2017, 2:01:29 PM
    Author     : Larry A. Lein
*/
html, body {
    height: 100vh;
    margin: 5px;
}
a {
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', Helvetica, 'Trebuchet MS', 'Droid Sans', Tahoma, Geneva, sans-serif;
    font-size: 14px;
}
.page-wrap {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
    background: white;
    border-radius: 10px;
    padding: 20px;
}
.arrow-right {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-left: 10px solid lightgray;
    float: right;
}

.arrow-left {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-right:10px solid cornsilk;
    float: left;
}
.admin-text {
    font-size: 14px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', Helvetica, 'Trebuchet MS', 'Droid Sans', Tahoma, Geneva, sans-serif;
    font-weight: normal;
    margin-left: 0px;
    padding: 0px 0 0 0;
    color: black;
}
.chatArea {
    overflow: hidden;
}
.chat-username {
    font-size: 12px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', Helvetica, 'Trebuchet MS', 'Droid Sans', Tahoma, Geneva, sans-serif;
    font-weight: normal;
    margin-left: 0px;
    padding: 0px 0 0 0;
    color: black;
}
.chat-text {
    font-size: 14px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', Helvetica, 'Trebuchet MS', 'Droid Sans', Tahoma, Geneva, sans-serif;
    font-weight: bold;
    margin-left: 0px;
    padding: 0px 0 0 0;
    color: black;
}
.chat-outgoing-block {
    background-color: cornsilk;
    text-align: left;
}
.chat-supervisor-block {
    background-color: papayawhip;
    text-align: left;
}
.chat-file-block {
    background-color: #ddd8d8;
}
.chat-incoming-block {
    text-align: right;
}
.chat-timestamp {
    font-size: 12px;
    font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', Helvetica, 'Trebuchet MS', 'Droid Sans', Tahoma, Geneva, sans-serif;
    font-weight: normal;
    margin-left: 0px;
    padding: 0px 0 0 0;
    color: black;
}

.bmv-image {
    display: inline-block;
}

.full-width-content {
    width: 100%;
    margin-top: 30px;
}

.full-width-content > .dx-widget {
    margin-bottom: 20px;
}

.full-width-content .dx-field {
    max-width: 385px;
}

#chatStatusBar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: 2em;
}
#chatEvents{
    top: 2em;
    height: calc(100vh - 10em);
    overflow-y: auto;
}
#chatFooter {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    height: 4em;
}