.mention-textarea {
  width: 100%;
  height: auto;
  outline: none;
  font-family: Roboto;
  font-size: 14px;
  line-height: 20px;
  overflow: auto;
  cursor: text;
  display: block;
}
.mention-textarea:empty:before {
  content: attr(placeholder);
  display: inline;
  color: #cdcdcd;
}
.mention-textarea::placeholder {
  color: #cdcdcd;   
}
.float-right {
  float: right;
}
.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-height: 300px;
  overflow: auto;
  display: block;
  z-index: 999999;
  border-radius: var(--rounded);
  border: 1px solid #d3d3d3;
}
.tribute-container ul {
  margin: 0;
  margin-top: 0px;
  padding: 0;
  list-style: none;
  background: #fff;
}
.tribute-container li {
  padding: 3px 8px;
  cursor: pointer;
}
.tribute-container li.highlight {
  background: var(--primary-bg-color);
}
.tribute-container li.no-match {
  visibility: hidden;
  cursor: default;
}
.tribute-container .menu-highlighted {
  font-weight: bold;
}
.mention-tag {
  padding: 0px 5px;
  background-color: var(--primary-bg-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--rounded);
  display: inline-block;
  vertical-align: top;
  cursor: default;
}
.mention-tag-text {
  color: #555;
  font: 400 14px/18px Roboto;
}
.mention-delete {
  width: 12px;
  height: 12px;
  color: #959595;
  font: 14px/1 FontAwesome;
  cursor: pointer;
  display: inherit;
}
.mention-delete::before {
  content: "\f00d";
}