.sms {
  font-family: "Helvetica Neue";
  font-size: 20px;
  font-weight: normal;
  opacity: 0;
  transition: opacity 1.0s;
  max-width: 60%;
  word-wrap: break-word;
  margin-bottom: 12px;
  line-height: 24px;
}
.sms p {
  margin: 0;
}
.sms.show {
  opacity: 1.0;
}
.sms div {
}
.sms div:after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
}

.text-me {
  position: relative;
  padding: 10px 20px;
  background: #0B93F6;
  border-radius: 25px;
  float: right;
}
.text-me p {
  color: white;
}
.text-me:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -2px;
  right: -7px;
  height: 20px;
  border-right: 20px solid #0B93F6;
  border-bottom-left-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
}
.text-me:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -2px;
  right: -56px;
  width: 26px;
  height: 20px;
  background: white;
  border-bottom-left-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
}

.text-them {
  position: relative;
  padding: 10px 20px;
  background: #E5E5EA;
  border-radius: 25px;
  float: left;
}
.text-them p {
  color: black;
}
.text-them:before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -2px;
  left: -7px;
  height: 20px;
  border-left: 20px solid #E5E5EA;
  border-bottom-right-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
}
.text-them:after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: -2px;
  left: 4px;
  width: 26px;
  height: 20px;
  background: white;
  border-bottom-right-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
}

