#form {
  border: none;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
  height: 100%;
}
.c {
  display: table-cell;
  vertical-align: middle;
}

#message-box {
  display: table;
  position: absolute;
  bottom: 0px;
  left: 0px;
  box-sizing: border-box;
  background: #fcfcfc;
  padding: 10px;
  width: 300px;
}
#messages {
  overflow-y: auto;
  height: 280px;
  margin: 0;
  padding: 0;
}

.convMsg {
  margin: 3px;
  padding: 5px;
}
.convOtherMsg {
}
.convMyMsg {
  text-align: right;
}

.myMsgBubble {
  padding: 5px;
  line-height: 20px;
  border-radius: 5px;
  background: #22aef0;
  color: #fff;
}

.otherMsgBubble {
  padding: 5px;
  border-radius: 5px;
  background: #efefef;
}

#chat-header {
  background: #22aef0;
  padding: 10px 20px;
  overflow: hidden;
  height: 85px;
}

#chat-header img {
  margin-top: 10px;
}

#chat-header p {
  font-family: "Conv_SFPRODISPLAYREGULAR";
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #ffffff;
  margin-top: 6px;
}

#input {
  background: transparent;
  border: none;
  color: #000;
  font-size: 16px;
  width: 80%;
}
#input:focus {
  outline: none;
}
#chat-box {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 300px;
  height: 440px;
  background: #ffffff;
  padding: 0px;
  box-shadow: 0px 18px 54px rgba(0, 0, 0, 0.0785213);
  border-radius: 17px;
  overflow: hidden;
}

/* width */
#chat-box ::-webkit-scrollbar {
  width: 7px;
}

/* Track */
#chat-box ::-webkit-scrollbar-track {
  border-radius: 8px;
}

/* Handle */
#chat-box ::-webkit-scrollbar-thumb {
  background: #E8EAEF;
  border-radius: 8px;
}
