#elDialog {
  position: fixed;
  right: 150px;
  bottom: 0;
}
#elDialog .dialog-bar {
  width: 300px;
  height: 30px;
  background-color: #018069;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #FFF;
  padding: 10px;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#elDialog .dialog-bar.hidden {
  display: none;
}
#elDialog .el-chat-dialog {
  border-radius: 10px;
  width: 300px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 700;
  font-size: 20px;
  background-color: #FFF;
  overflow: hidden;
  box-shadow: 3px 1px 9px -3px #000;
  display: none;
  background-image: url(../img/bg.08f6f705.jpeg);
}
#elDialog .el-chat-dialog.hidden {
  display: none;
}
#elDialog .el-chat-dialog.show {
  display: inherit;
}
#elDialog .el-chat-dialog .el-chat-dialog-header {
  width: 100%;
  background-color: #018069;
  color: #FFF;
  padding: 10px 0;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#elDialog .el-chat-dialog .el-chat-dialog-header .el-chat-dialog-header-user-info {
  padding-left: 10px;
  width: 100%;
  display: flex;
  gap: 10px;
}
#elDialog .el-chat-dialog .el-chat-dialog-header .el-chat-dialog-header-user-info .el-chat-dialog-header-avatar img {
  width: 30px;
}
#elDialog .el-chat-dialog .el-chat-dialog-header .el-chat-dialog-header-minimize {
  padding-right: 10px;
}
#elDialog .el-chat-dialog .el-chat-dialog-content {
  width: 100%;
  height: 300px;
  max-height: 300px;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view {
  width: 100%;
  height: 300px;
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-width: none;
  color: #333;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view .el-chat-dialog-item.send-item {
  display: flex;
  justify-content: right;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view .el-chat-dialog-item.receive-item {
  display: flex;
  justify-content: left;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view .el-chat-dialog-item .el-chat-item-content {
  position: relative;
  display: inline-block;
  background-color: #FFF;
  padding: 5px;
  font-weight: 100;
  border-radius: 10px;
  margin: 10px;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view .el-chat-dialog-item .el-chat-item-content.send-item {
  background-color: #d9fdd3;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view .el-chat-dialog-item .el-chat-item-content.send-item::after {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAWCAMAAAAo0TYrAAAAD1BMVEVHcEzZ/dPZ/dPX+9PZ/dOah78PAAAABHRSTlMAfr9A+H3QJwAAAENJREFUeAGFzDsOgEAMA1Hnc/8zI5YgedKsu1d41LYMwd2xnBcXvXop+KW76EN5yz2Ut8yii/7PY6O89RmUt45JBfkAraAC93N63g0AAAAASUVORK5CYII=) 100% 0 no-repeat;
  background-size: 50%;
  content: "";
  height: 22px;
  position: absolute;
  right: -6px;
  top: 0;
  width: 18px;
}
#elDialog .el-chat-dialog .el-chat-dialog-content .el-chat-dialog-view .el-chat-dialog-item .el-chat-item-content.receive-item::after {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAWCAMAAAAo0TYrAAAAD1BMVEVHcEz///////////////8T4DEaAAAABHRSTlMAfr9A+H3QJwAAAERJREFUeAF9zUEOgDAIBdGpcP8z2yZoYBZ198bwCyv7JyZP3v/b3lPYHpPHIfcLFFAo/5ufsUOuCRRQ6D6PDIe8L6ZZL55uAvBQ3nn1AAAAAElFTkSuQmCC') 0 0 no-repeat;
  background-size: 50%;
  content: "";
  height: 22px;
  left: -6px;
  position: absolute;
  top: 0;
  width: 18px;
}
#elDialog .el-chat-dialog .el-chat-dialog-input {
  display: flex;
  justify-content: space-between;
  background-color: #CCC;
  padding: 10px;
  align-items: center;
  gap: 20px;
}
#elDialog .el-chat-dialog .el-chat-dialog-input .el-chat-dialog-input-text {
  border-radius: 10px;
  width: 100%;
  border: none;
  padding: 10px;
  outline: none;
}
#elDialog .el-chat-dialog .el-chat-dialog-input .el-chat-dialog-input-send {
  cursor: pointer;
}
