#callme-chat.operator.chatroom {width:400px;display:flex;flex-direction:column;background-color:rgba(255, 255, 255, 0.5);}#callme-chat #chat-title {height:40px;display:flex;justify-content:center;align-items:center;font-size:12pt;font-weight:700;text-align:center;}#callme-chat #chat-messages {width:100%;padding-top:10px;overflow-y:scroll;position:relative;flex:1;}#callme-chat #chat-messages .callme-chat-first-message {width:90%;margin:0 auto;justify-content:center;align-items:center;display:flex;flex-direction:column;text-align:center;padding:20px;border:1px solid #e2e2e2;border-radius:10px;}#callme-chat #chat-messages .message {display:flex;margin-bottom:10px;color:#fff;}#callme-chat #chat-messages .message .username {background-color:#000;border-radius:19px;width:40px;height:40px;display:flex;justify-content:center;align-items:center;margin-left:5px;border:1px solid #000;}#callme-chat #chat-messages .message .message-text-info {color:#000;font-style:italic;text-align:left;width:100%;box-sizing:border-box;padding:3px 10px;border-bottom:1px solid #e2e2e2;font-size:12px;}#callme-chat #chat-messages .message .message-text {background-color:#000;flex:1;padding:10px 5px;border-radius:5px;margin:0 5px;word-break:break-word;border:1px solid #000;}#callme-chat #chat-messages .message .message-text .message-text-time {font-size:10px;font-style:italic;margin-top:5px;opacity:0.75;}#callme-chat #chat-messages .message .message-text .chat-link {color:#fff;text-decoration:underline;}#callme-chat #chat-messages .message.my-message {flex-direction:row-reverse;}#callme-chat #chat-messages .message.my-message .username {background-color:#1c94c4;margin-left:0px;margin-right:5px;}#callme-chat #chat-messages .message.my-message .message-text {background-color:#1c94c4;}#callme-chat #chat-form {padding-top:10px;margin-top:10px;padding-bottom:10px;text-align:center;position:relative;}#callme-chat #chat-message-input {width:calc(100% - 19px);resize:none;box-sizing:border-box;}#callme-chat .questions-autocomplete {display:none;position:absolute;border:1px solid #e2e2e2;min-height:10px;width:calc(100% - 19px);left:9px;top:60px;background:#fff;z-index:9999999;padding:10px;box-sizing:border-box;}#callme-chat .questions-autocomplete ul {list-style:none;margin:0;}#callme-chat .questions-autocomplete ul li {margin-bottom:5px;text-align:left;padding:3px;cursor:pointer;}#callme-chat .questions-autocomplete ul li:hover {background-color:#abd3ee;}#callme-chat #chat-form #chat-buttons {display:flex;justify-content:space-between;width:95%;margin:10px auto 0;}#callme-chat #chat-form #chat-buttons #hide-chat {padding:10px 20px;border-radius:5px;background-color:#b1b1b1;color:#fff;cursor:pointer;width:125px;}#callme-chat #chat-form #chat-buttons #connect-to-chat {padding:10px 20px;border-radius:5px;background-color:#b1b1b1;color:#fff;cursor:pointer;width:190px;}#callme-chat #chat-form #chat-buttons #disconnect-to-chat {display:none;padding:10px 20px;border-radius:5px;background-color:#b1b1b1;color:#fff;cursor:pointer;width:125px;}#callme-chat #chat-form #chat-buttons #send-message {padding:10px 20px;border-radius:5px;background-color:#1c94c4;color:#fff;cursor:pointer;width:125px;}#callme-chat #user-typing {color:#000;font-style:italic;text-align:left;width:100%;box-sizing:border-box;padding:10px 10px 3px 20px;border-bottom:1px solid #e2e2e2;font-size:12px;animation:blinker 2s linear infinite;}#callme-chat .chat-history-download {display:none;position:absolute;right:10px;top:10px;background-color:#FFF;padding:4px 7px;border-radius:5px;font-size:12px;cursor:pointer;border:1px solid #555;}#chat-text-wrap #callme-chat #user-typing {padding-top:0;}#chat-messages #new-message-info {padding:5px 10px 5px 22px;background-color:#fff;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB4SURBVHgBzZKBCYAgEEV/0QCO4Ci1iRs0Ym3QCo3QBnbiGUd1Rgbhg4+C/54gArXTc1Q65HEUT5m1QouP1CcYKTbTt9y5FRjER5sUieUzpwk2ysDrWZKGU+egwRXD5bCuQiAveCQML4h/wPPe4CVJUjQsJcXD/7ADnS4VB2Nn5loAAAAASUVORK5CYII=);background-repeat:no-repeat;background-position:2px center;box-shadow:0 0 3px 0 #000;border-radius:5px;color:#000;position:absolute;left:50%;transform:translate3d(-50%, 0, 0);font-size:14px;cursor:pointer;width:-moz-max-content;width:max-content;}@keyframes blinker {50% {opacity:0;}}