body {
  background-color: #1f2027;
  height: 100%;
  margin: 0;
  font-family: QwictRegular, Courier New;
  overflow: hidden;
}

.chat {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
}

.chatui {
  background-color: #1f2027;
  border-radius: 5px;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.error-msg .msg-bubble {
  color: #f15959;
  background-color: #343541;
  margin-left: 25%;
  margin-right: 25%;
}

.init-msg .msg-bubble {
  color: #ececec;
  background-color: #343541;
  margin-left: 25%;
  margin-right: 25%;
}

.right-msg .msg-bubble {
  color: #ececec;
  background-color: #444654;
  margin-left: 40%;
  margin-right: 25%;
}

.left-msg .msg-bubble {
  color: #ececec;
  background-color: #343541;
  margin-left: 25%;
  margin-right: 40%;
}

.chatui-select-wrapper {
  background-color: #1f2027;
  justify-content: center;
  padding: 10px 0;
  display: flex;
}

#chatui-select {
  color: #fff;
  background-color: #1f2027;
  border: none;
  width: 350px;
}

#chatui-select:focus {
  outline: none;
}

#chatui-select::-webkit-scrollbar {
  display: none;
}

#chatui-select option {
  color: #fff;
  background-color: #1f2027;
}

#chatui-select option:hover {
  color: #fff;
  background-color: #474747;
}

s .chatui-header {
  color: #666;
  background: #eee;
  border-bottom: 2px solid #ddd;
  justify-content: space-between;
  padding: 10px;
  display: flex;
}

*, :before, :after {
  box-sizing: content-box;
}

.chatui-chat {
  background-color: #1f2027;
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

.chatui-chat::-webkit-scrollbar {
  width: 6px;
}

.chatui-chat::-webkit-scrollbar-track {
  background: #1f2027;
}

.chatui-chat::-webkit-scrollbar-thumb {
  background: #888;
}

.chatui-chat::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.msg {
  align-items: flex-end;
  margin-bottom: 10px;
  display: flex;
}

.msg:last-of-type {
  margin: 0;
}

.msg-bubble {
  box-sizing: border-box;
  color: #000;
  background-color: #f0f0f0;
  border: none;
  border-radius: 8px;
  width: calc(100% - 20px);
  margin: 5px auto;
  padding: 16px;
  font-size: medium;
}

.chatui-inputarea {
  background-color: #1f2027;
  border-top: 2px solid #0000;
  margin-left: 25%;
  margin-right: 25%;
  padding-bottom: 20px;
  display: flex;
}

.chatui-inputarea * {
  color: #fff;
  background: #0000004d;
  border: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 1em;
}

.chatui-input {
  color: #fff;
  background-color: #40414f;
  flex: 1;
}

.chatui-reset-btn {
  color: #fff;
  cursor: pointer;
  background-color: #40414f;
  background-image: url("reset.81b3cea1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  width: 40px;
  margin-left: 10px;
  font-weight: bold;
}

.chatui-reset-btn:hover {
  background-color: #03a33e;
}

.chatui-send-btn {
  color: #fff;
  cursor: pointer;
  background-color: #40414f;
  background-image: url("plane.19fc72ff.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  width: 40px;
  margin-left: 10px;
  font-weight: bold;
}

.chatui-send-btn:hover {
  background-color: #03a33e;
}
/*# sourceMappingURL=index.61d3354a.css.map */
