.bc-chat-item {
  cursor: pointer;
  display: flex;
  padding: 8px;
  gap: 8px;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}
.bc-chat-item:hover {
  background-color: #e6f4ff;
}
.bc-chat-item__avatar .client-avatar {
  height: 40px;
  width: 40px;
  border-radius: 100%;
}
.bc-chat-item__content {
  width: 100%;
  min-width: 0;
}
.bc-chat-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.bc-chat-item__name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bc-chat-item__time {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 12px;
  margin: auto 0;
}
.bc-chat-item__message-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.bc-chat-item__integration-and-text {
  display: flex;
  column-gap: 4px;
  width: 150px;
}
.bc-chat-item__text {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.bc-chat-item__unanswered {
  align-self: flex-end;
  color: #ff4d4f;
}
.bc-chat-item--unread {
  background-color: #f4f8ff;
}
.bc-chat-item--selected {
  background-color: #bae0ff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.06);
}
.bc-chat-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}
.bc-chat-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.bc-chat-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b1c4df;
}
.bc-chat-list__show-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0px;
}
.bc-chat-list__show-more-button {
  height: 32px;
  width: calc(100% - 12px);
  min-height: 32px;
}
.bc-chat-list-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 239px;
}
@media screen and (max-width: 550px) {
  .bc-chat-list-container {
    width: 94.8vw;
  }
}
.bc-chat-list-header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
  width: 100%;
}
.bc-chat-list-header button {
  border-radius: 0;
}
.bc-chat-list-header .ant-space {
  width: 100%;
}
.bc-chat-list-header .filter-chats-button {
  width: 100%;
}

/*# sourceMappingURL=main~65.f0929a07.css.map*/