/*Status Line for admin messages*/
.chatStatusLine_1_2 {
    font-size: 12px;
    color: blue;
}

/*Message Line for admin messages*/
.chatMessage_1_2 {
    font-size: 16px;
    color: purple;
}

[dir="ltr"] .chatStatusLine_1_2,
[dir="ltr"] .chatMessage_1_2 {
    text-align: left;
}

[dir="rtl"] .chatStatusLine_1_2,
[dir="rtl"] .chatMessage_1_2 {
    text-align: right;
}

/*Status Line for customer messages*/
.chatStatusLine_1_1 {
    font-size: 12px;
    color: green;
}

/*Message Line for send error*/
.chatMessage_send_err {
    font-size: 16px;
    color: red;
}

/*Message Line for customer messages*/
.chatMessage_1_1 {
    font-size: 16px;
    color: green;
}

[dir="ltr"] .chatStatusLine_1_1,
[dir="ltr"] .chatMessage_send_err,
[dir="ltr"] .chatMessage_1_1 {
    text-align: right;
}

[dir="rtl"] .chatStatusLine_1_1,
[dir="rtl"] .chatMessage_send_err,
[dir="rtl"] .chatMessage_1_1 {
    text-align: left;
}

/*Assigned Status Line*/
.chatStatusLine_6_2 {
    font-size: 16px;
    color: red;
    text-align: center;
}

/*Assigned Message Line*/
.chatMessage_6_2 {
    font-size: 16px;
    color: red;
    text-align: center;
    margin: 10px 0;
}

/*Office Closed*/
.chatMessage_12_2 {
    font-size: 16px;
    color: red;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*No-one available*/
.chatMessage_14_2 {
    font-size: 16px;
    color: red;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Session Closed*/
.chatMessage_2_2 {
    font-size: 16px;
    color: red;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.chatMessage_2_1 {
    font-size: 16px;
    color: red;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Session Re-opened*/
.chatMessage_13_2 {
    font-size: 16px;
    color: red;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.chatMessageUT {
    font-size: 10px;
    display: none;
}

.chatWelcome {
    text-align: center;
}

.chatSideBarLine1 {
    font-weight: bold;
}

.chatSideBarLine2 {
}

.chatPopupCloseDialog .ui-widget-header {
    color: #fff;
    background: #800080;
}

.chatButton {
    position: fixed;
    bottom: 50%;
    right: 10px;
    width: 52px;
    height: 52px;
    color: #fff;
    background-color: #800080;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.chatClose {
    display: flex;
    color: #fff;
    background-color: #800080;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.chatPopup {
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding-top: 78px;
}

    .chatPopup .chatPopupHeader {
        display: flex;
        flex: 0 0 52px;
        color: #fff;
        background-color: #800080;
        align-items: center;
        justify-content: space-around;
    }

        .chatPopup .chatPopupHeader .chatPopupHeaderTitle {
            width: 250px;
            text-overflow: ellipsis;
            font-size: 20px;
            overflow:hidden;
            white-space:nowrap;
            text-align:center;
        }

.chatPopupMain {
    box-sizing: border-box;
    width: 100%;
    padding: 16px;
    line-height: 20px;
    color: #888;
    overflow-y: scroll;
    height: 100%;
}

.chatPopupBottomSection {
    margin-top: auto;
}

.chatPopupFooter {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.chatPopupPoweredBy {
    text-align: center;
    width: 100%;
    font-size: 10px;
    color:purple;
    margin-bottom: 5px;
}

.chatName {
    padding: 5px 10px;
}

.chatMessage {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    height: 180px;
    padding: 10px;
    font-family: inherit;
    font-size: 16px;
    line-height: 20px;
    color: #888;
    background-color: lightgray;
    border: 0;
    outline: 0 !important;
    resize: none;
    overflow: hidden;
}

.chatFlagDropdown {
    position: absolute;
    max-height: 350px;
    overflow-y: auto;
    bottom: 20px;
    font-size: 13px;
    z-index: 1000;
    display: none;
    min-width: 250px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

    .chatFlagDropdown .chatFlagItem:nth-child(odd) {
        background-color: #f5f5f5;
    }

[dir="ltr"] .chatFlagDropdown {
    left: 0;
}

[dir="rtl"] .chatFlagDropdown {
    right: 0;
}

.chatFlagItem {
    padding: 3px 7px;
    font-size: 13px;
    color: #000;
}

.chatFlagIcon {
    background-size: 18px 13px;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    min-width: 18px;
    line-height: 1em;
    height: 13px;
    border: 1px solid #d0cece;
    flex-shrink: 0;
}

.chatLanguageSelectLabel {
    font-size: 11px;
}

.chatShowUnTranslatedLabelWrapper {
    font-size: 11px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.btn-chatlangselect {
    border-style: solid;
    border-width: 1px;
    background-color: transparent;
    color: black !important;
    font-size: 10px;
    outline: 0;
    padding: 2px;
    min-width: 40px;
}

[dir="ltr"] .btn-chatlangselect {
    margin-left: 6px;
}

[dir="rtl"] .btn-chatlangselect {
    margin-right: 6px;
}

.chatLanguageSelectArea {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 10px;
}

.chatLanguageArea {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.chatSendSection {    
    width: auto;
    padding: 0;
}

[dir="ltr"] .chatSendSection {
    margin-left: auto;
    margin-right: 10px;
}

[dir="rtl"] .chatSendSection {
    margin-left: 10px;
    margin-right: auto;
}

.chatSendMessage {
    display: flex;
    align-items: center;
}

.chatSendButton {
    padding-left: 2px;
}

.chatHelp {
    cursor: pointer;
}

.chatSelectedLang {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}

[dir="ltr"] .chatHelpLanguage {
    margin-left: 6px;
}

[dir="rtl"] .chatHelpLanguage {
    margin-right: 6px;
}

.chatShowUnTranslatedArea {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin-top: 6px;
}

.chatShowUnTranslatedArea .w3-check-label {
    border-color: black;
}

[dir="ltr"] .chatShowUnTranslatedArea .chatHelpShowUT,
[dir="ltr"] .chatShowUnTranslatedArea .w3-check-label {
    margin-left: 6px;
}

[dir="rtl"] .chatShowUnTranslatedArea .chatHelpShowUT,
[dir="rtl"] .chatShowUnTranslatedArea .w3-check-label {
    margin-right: 6px;
}

.chatInputName {
    width: 100%;
}

.chatInputNameEmpty {
    background-color:yellow;
}

.chatOfficeStatus {
    margin:10px; 
    color:red; 
    font-weight: bold; 
    text-align:center;
}