.dialog-chat {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
}

.dialog-chat-members {
  display: inline-block;
  width: 100%;
	border: 1px solid #000000;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.dlg-circle-button {
  width: 16px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 2px;
  border: none;
  color: #454545;
  font-size: 16px;
  font-weight: 500;
  background: #f5f5f5;
  border-radius: 8px;
}

.dlg-circle-button:hover {
  background-color:#f5f5f5;
}

.dialog-chat-data {
  position: relative;
  width: 100%;
  flex: 1;
  overflow-x: auto;
  overflow-y: auto;
  padding-left: 2px;
  padding-right: 2px;
}

.dialog-chat-entry {
  width: 100%;
  border-top: 2px solid #000;
}

.dialog-chat-textarea {
  width: 100%;
	border: 1px solid #000000;
  border-radius: 5px;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: transparent;
}

.dialog-chat-received-line {
  background-color: #ffe0ff;
}

.dialog-chat-received-line-two-users {
  background-color: #e0f0e0;
}

.dialog-chat-sender-line {
  background-color: #e0e0ff;
}

.dialog-chat-open-handle:hover {
  cursor: pointer;
  font-weight: bold;
}

