.chat-app-container {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.kc-box {
  background: #fff;
  box-shadow: 0 0 6px #666;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}

.kc-warning {
  font-size: 11px;
  color: #f00;
  padding: 0 8px;
  display: none;
}

.kc-avatar {
  max-height: 18px;
  max-width: 18px;
}

.kc-box textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #ddd;
  margin: 0;
  font-size: 12px;
  line-height: 1.1;
  padding: 2px;
  height: 35px;
}

.kc-public-box {
  position: fixed;
  z-index: 2031;
  right: 195px;
  bottom: 0;
  width: 200px;
}

.kc-public-chat {
  display: none;
  padding: 0 3px;
  height: 230px;
}

.kc-public-row {
  font-size: 12px;
  padding: 3px 0;
  line-height: 1.2;
}

.kc-public-box.expanded .kc-public-chat {
  display: block;
}

.kc-open-chatbox {
  font-weight: 700;
  cursor: pointer;
}

.kc-online-box {
  position: fixed;
  z-index: 2031;
  right: 10px;
  bottom: 0;
  width: 230px;
}

.kc-online-box.expanded .kc-header-minimize,
.kc-online-box.expanded .kc-online-list {
  display: block;
}

.kc-online-box .kc-status {
  background: #fff;
}

.kc-online-box .kc-status:hover {
  background: #999;
  color: #fff;
}

.kc-header-minimize {
  padding: 3px 5px 0;
  cursor: pointer;
}

.kc-header-chat-close {
  padding: 0 5px 0 0;
  cursor: pointer;
}

.kc-header-minimize:hover,
.kc-header-chat-close:hover {
  color: #f00;
}

.kc-box-header {
  cursor: pointer;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #f5f5f5;
  line-height: 25px;
  font-size: 13px;
  font-weight: bold;
}

.kc-online-header {
  padding: 0 3px;
}

.kc-public-header {
  padding: 0 3px;
}

.kc-online-list {
  height: 400px;
  display: none;
  background: #333;
}

.kc-online-list .kc-status {
  margin-bottom: 1px;
  cursor: pointer;
  height: 25px;
  line-height: 25px;
  background: #666;
  color: #fff;
}

.kc-channel-box {
  position: fixed;
  z-index: 2031;
  left: 10px;
  bottom: 0;
  width: calc(100% - 315px);
  /*width: calc(100% - 1000px);*/
  text-align: right;
  pointer-events: none;
  overflow: hidden;
  padding: 5px 5px 0 5px;
}

.kc-channel-box-scroller {
  width: 9000px;
  float: right;
}

.kc-chat-box.unread .kc-status {
  -webkit-animation: unread 1.2s linear 0s infinite alternate;
  animation: unread 1.2s linear 0s infinite alternate;
}

@-webkit-keyframes unread {
  50% {background: #ff69b4;}
}

@keyframes unread {
  50% {background: #ff69b4;}
}

.kc-chat-box.expanded .kc-chat-message-list,
.kc-chat-box.expanded .kc-chat-textarea,
.kc-chat-box.expanded .kc-header-minimize,
.kc-chat-box.expanded .kc-warning {
  display: block;
}

.kc-header-minimize {
  display: none;
}

.kc-chat-box {
  text-align: left;
  display: inline-block;
  width: 200px;
  vertical-align: bottom;
  margin-left: 10px;
  pointer-events: auto;
}

.kc-chat-message-list {
  display: none;
  height: 172px;
  padding: 5px;
  overflow: hidden;
  -webkit-touch-callout: initial;
  -webkit-user-select: initial;
  -khtml-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}

.kc-chat-profile {
  padding: 2px 9px;
  font-size: 11px;
}

.kc-chat-textarea {
  display: none;
  padding: 0 5px 5px;
}

.kc-guest-date {
  font-size: 11px;
}

.kc-status {
  font-size: 13px;
  border-left: 6px solid #999;
  padding-left: 5px;
  background: #f5f5f5;
  text-overflow: ellipsis;
}

.kc-status-online {
  border-left: 6px solid #51a351;
}

.kc-status-away {
  border-left: 6px solid #f89406;
}

.kc-status-busy {
  border-left: 6px solid #b94a48;
}

.kc-chat-row {
  font-weight: 700;
  font-size: 13px;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 2px 4px;
}

.kc-chat-meta-label {
  color: #1f6377;
  font-weight: 700;
  font-size: 11px;
  line-height: 12px;
}

.kc-me .kc-chat-meta-label {
  color: #51a351;
}

.kc-chat-row-content {
  line-height: 1.3;
}

.kc-change {
  border-radius: 5px;
  background: #ddd;
  padding: 0 2px;
  margin-right: 2px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.kc-change-online:hover,
.kc-change-online.active {
  background: #468847;
  color: #fff;
}

.kc-change-busy:hover,
.kc-change-busy.active {
  background: #b94a48;
  color: #fff;
}

.kc-change-invisible:hover,
.kc-change-invisible.active {
  background: #000;
  color: #fff;
}

.kc-chat-box-slider {
  position: fixed;
  z-index: 2032;
  right: 257px;
  bottom: 13px;
  width: 45px;
  height: 20px;
  line-height: 20px;
  border-radius: 3px;
  background: #fff;
}

.kc-chat-box-slider .fa {
  opacity: 0.3;
  cursor: pointer;
  padding: 0 5px;
}

.kc-chat-box-slider .fa:hover {
  opacity: 1;
  color: #f00;
}

.scroll-bar-handle {
  border-radius: 5px;
  width: 10px;
  opacity: 0.3;
  background: #000;
  position: absolute;
  right: 3px;
  top: 0px;
}

.scroll-disable-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

