.chatbox {
  position: relative;
  width: 100%;
  text-align: center;
  /* border: dotted #e97a52 1px; */
  border-radius: 8px;
}

.chatbox h3, .profilebox h3 {
  padding: 0.4em 0;
  text-align: center;
  color: #e97a52;
  font-weight: bold;
  border-bottom: dotted #e97a52 1px;
  border-radius: 4px;
  filter: brightness(125%);
  text-transform: capitalize;
  /* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); */
}

.profilebox h3 { font-size: 20px; }

.chatbox p {
  padding: 0.2em 0 0.4em 0;
  font-size: 16px;
  color: white;
}

.current_data { padding: 0.4em 0; }

.chatbox i {
  font-size: 10px;
  color: #fff;
  filter: invert(20%);
}
.chatbox span {
  line-height: 2;
  /* margin: 0 2em; */
  /* border: solid 1px black; */
}

#loader_chat {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* #message in style.css */

.send_message,
.gousers {
  position: fixed;
  bottom: 0.35em;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9d9d9;
  border-radius: 50%;
  font-size: 24px;
  color: #000;
  border: none;
  transition: all 0.5s ease;
  cursor: pointer;
  z-index: 2;
}

.send_message { 
  right: 0.80em; 
  padding-left: 0.1em;
}

.gousers {
  /* bottom: 0.1em; */
  left: 0.80em;
  padding-right: 0.1em;
}

.gousers:hover,
.send_message:hover {
  transform: scale(1.1);
  filter: brightness(110%);
}