* {
  font-weight: normal;
  box-sizing: border-box;
}
.display {
  margin-bottom: 10px;
  display: flex;
  justify-content: start;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
}
.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mess {
  width: 22px;
}
.mesg {
  background-color: #DBDBDB;
  padding: 7px;
  border-radius: 7px;
  font-family: robo;
  font-size: 12px;
  color: black;
  margin-left: 6px;
  width: 60%;
  max-width: fit-content;
  border-bottom-left-radius: 0px;
}
.repl {
  background-color: #4C54D7;
  color: white;
  font-family: robo;
  font-size: 12px;
  padding: 8px;
  border-radius: 7px;
  border-bottom-right-radius: 0px;
  margin-right: 6px;
  width: 60%;
  max-width: fit-content;
}
.choose {
  display: flex;
  gap: 5px;
  justify-content: center;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease-out;
}
.choose.show {
  opacity: 1;
  transform: translateY(0);
}
.cho {
  background-color: white;
  margin-bottom: 7px;
  color: #888;
  font-family: robo;
  font-size: 14px;
  text-align: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.2) 2.4px 2.4px 3.2px;
  transition: all 0.3s ease;
}
.cho:hover {
  background-color: #f0f0f0;
}
.cho.active {
  background-color: #4C54D7;
  color: white;
}
.message {
  background-color: #C4C4C4;
  border: none;
  width: 100%;
  padding: 9px;
  border-radius: 5px;
  color: black;
  font-family: robo;
  font-size: 13px;
  resize: none;
  outline: none;
}
.message::placeholder {
  color: grey;
  opacity: 1;
}
.querybox {
  padding: 7px 10px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  display: none;
}
.querybox.show {
  display: flex;
  opacity: 1;
}
.bk {
  width: 12px;
  height: 11px;
  margin: 0 5px 0;
}