﻿#chatBot {
    position: fixed;
    overflow: hidden;
    width: 300px;
    height: 280px;
    z-index: 10;
    bottom: 0;
    right: 0;
    margin-right: 17%;
    resize: both;
}

#chatBotPlaceholder {
    position: fixed;
    overflow: hidden;
    width: 300px;
    height: 36px;
    z-index: 10;
    bottom: 0;
    right: 0;
    margin-right: 17%;
    resize: both;
}

.wc-message-groups {
    bottom: 65px !important;
}

body div#chatBot .wc-app, body div#chatBotPlaceholder .wc-app {
    font-family: Arial, Helvetica, sans-serif !important;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}

.wc-chatview-panel {
    background-color: #fff;
    border-left: 1px solid #dbdee1;
    border-right: 1px solid #dbdee1;
}

.wc-header, .wc-header-placeholder {
    background-color: #064773 !important;
    color: #ffffff;
    padding: 8px;
    height: auto;
}

#dragHandle, #dragHandleTemp {
    content: '';
    display: block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    width: 2px;
    height: 5px;
    position: absolute;
    left: -3px;
    top: 1px;
    transform: rotate(135deg);
    cursor: nw-resize;
}

.footer-block {
    padding-bottom: 30px !important;
}

.wc-textbox {
    margin-left: -40px;
}

.wc-console {
    height: 40px !important;
    border-top: 2px solid #dbdee1 !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
    bottom: 26px;
}

.chatbot-icon-container img {
    margin: auto;
    position: relative;
    width: 130px;
    display: block;
}

#chatIcon {
    margin-right: 10px;
}

#chatCaret, #placeholderChatCaret {
    float: right;
    margin-right: 5px;
    cursor: pointer;
}

#chatSend {
    color: #064773;
    margin-right: 10px;
    margin-bottom: 12px;
}

.wc-message.wc-message-from-bot .wc-message-content {
    background: #ece5d4;
    color: #6f3928;
    -webkit-border-radius: 5px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-bottomleft: 0;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    font-size: 14px
}

.chatbot-icon-container {
    position: absolute;
    /* left: 50%; */
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0px;
}

.wc-message.wc-message-from-me .wc-message-content {
    background: #fff;
    border: 1px solid #d3c8b5;
    color: #333333;
    -webkit-border-radius: 5px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-bottomright: 0;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    font-size: 14px
}

.wc-message-callout {
    display: none;
}

@media (max-width: 1200px) {
    #chatBot {
        margin-right: 15%;
    }
}

@media (max-width: 992px) {
    #chatBot {
        margin-right: 8%;
    }
}

@media (max-width: 768px) {
    #chatBot {
        margin-right: 10px;
    }
}