/* style sheets */
.ui-chatbox {
    position: fixed;
    bottom:0;
	z-index:1000;
}
.ui-chatbox-container {
    padding: 1px;
    background: #3991D8;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: none;
}
.ui-chatbox-titlebar {
    padding: 3px;
    height: 85px;
    width: 356px;
}
.ui-chatbox-titlebar span.ctitle{
    display: inline-block;
    padding: 10px;
	color: #fff;
}
.ui-chatbox-content {
    padding: 0px;
    margin: 0px;
    border: 0px;
    background-color: #EDEDED;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.ui-icon {
	margin:2px;
	color: #e2e3e4;
}
.ui-chatbox-log {
    padding: 3px;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
    width: 356px;
}

.ui-chatbox-input {
    padding: 3px;
    overflow: hidden;
    max-width: 350px;
    position: relative;
}

.chatbox-send {
    position: absolute;
    background: url(../img/send.svg) 0px 50% no-repeat;
    background-size: contain;
    width: 23px;
    height: 23px;
    right: 14px;
    top: 48px;
    cursor: pointer;
}
.ui-chatbox-input-box {
    margin: 9px;
    border: none;
    padding: 2px;
    height: 63px;
    border-radius: 10px;
    width: 332px;
}
@media (max-width: 991px) {
    .ui-chatbox-titlebar {
        width: 276px !important;
        font-size: 0.8rem;
    }
    .ui-chatbox-log {
        height: 215px !important;
        width: 276px !important;
    }
    .ui-chatbox-input {
        max-width: 270px !important;
    }

    .ui-chatbox-input-box {
        width: 252px !important;
    }

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

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

.ui-chatbox-msg {
    margin-top: 10px;
    clear: both;
	font-size:0.9rem;
    /* 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 */
    width: 85%;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}
.ui-chatbox-msg.chatfore {
    float: left;
	background-color: #BCE1FF;
    margin-left: 10px;
}
.ui-chatbox-msg.chatfore:before {
    content: " ";
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    top: 42%;
    left: -4px;
    position: absolute;
    border-left: #BCE1FF solid 4px;
    border-top: #BCE1FF solid 4px;
}
.ui-chatbox-msg.chatmy {
    float: right;
    background-color: #EEEEEE;
    margin-right: 10px;
}
.ui-chatbox-msg.chatmy:before {
    content: " ";
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    top: 42%;
    right: -4px;
    position: absolute;
    background-color:  #EEEEEE;
}
.ui-chatbox-msg b{
    font-size: 0.6rem;
    position: relative;
    top: -3px;
    left: 0;
    display: block;
}
.ccomment {
	color: #e2e3e4;
	font-size: 0.7rem;
    display: block;
    margin-top: -9px;
    margin-left: 5px;
}
.chelp{
	text-align:center;
	font-size:0.8rem;
}
#recap {
    margin-left: 25px;
}
.ctphoto {
    width: 45px;
    height: 45px;
    border-radius: 23px;
    margin: 16px 25px;
    background-color: #999;
}
.chat-icon {
    background: url(../img/chat.svg) 22px 50% no-repeat;
    width: 86px;
    height: 86px;
    border-radius: 50px;
    background-color: #3991D8;
    cursor: pointer;
}
.ui-chatbox-close {
    background: url(../img/close.svg) 5px 50% no-repeat;
    width: 28px;
    height: 28px;
    border-radius: 15px;
    border: 2px solid #D3D3D3;
    right: -34px;
    position: absolute;
}