/* style sheets */
.ui-chatbox {
    position: fixed;
    bottom: 0;
    padding: 2px;
    background: #0dbfb3;
    z-index:21474883647;
}

.ui-chatbox-titlebar {
   
    color: #ffffff !important;
    background-image: -moz-linear-gradient(45deg, #8226f5 0%, #e625ea 100%) !important;
    background-image: -webkit-linear-gradient(45deg, #8226f5 0%, #e625ea 100%) !important;
    background-image: -ms-linear-gradient(45deg, #8226f5 0%, #e625ea 100%) !important;
    border-color: transparent;
    background-color: #8226f5 !important;
    background-size: cover;
    background-repeat: repeat;
}


.ui-chatbox-content {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.ui-chatbox-log {
    padding: 3px;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
}

.ui-chatbox-input {
    padding: 3px;
    border-top: 1px double #52dbd2;
    overflow: hidden;
}

.ui-chatbox-input-box {
    margin: 5px;
    font-size: 12px !important;
    border: 2px solid lightgrey; /* #6699FF */
    padding: 2px;
    height: 50px; 
   
}

.ui-chatbox-icon {
    float: right;
}

.ui-chatbox-input-focus {
    border-color: #6699FF;
}

.ui-chatbox-msg {
    margin-top: 10px;
    float: left;
    clear: both;
    /* Source: http://snipplr.com/view/10979/css-cross-browser-word-wrap */
    white-space: pre-wrap; /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -pre-wrap; /* Opera <7 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* IE */
    font-size: 12px;
}
