/* classi look chat */

/* fogny1 */

#chatmsgs {
  background-color: #f1f1f1;
}

.chatevent {
  display: block;
  width: 70%;
  margin: 0.1em auto;
  padding: 0.3em;
  border: 1px solid #c1c1c1;
  border-radius: 0.3em;
  background-color: #e1f2fb;
  font-weight: bold;
  color: #000;
  clear: both;
  text-align: center;
}

.chatmsg {
  position: relative;
  float: left;
  min-width: 30%;
  max-width: 90%;
  margin-bottom: 0.2em;
  margin-left: 0.7em;
  padding: 0.3em;
  padding-bottom: 0.1em;
  background-color: #fff;
  border: 2px solid #afafaf;
  border-radius: 16px;
  clear: both;
}

.chatmsg:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 6px 10px 6px 0;
  border-color: transparent #fff;
  display: block;
  z-index: 1;
  width: 0;
  height: 0;
  left: -9px;
  top: 20px;
}

.chatmsg:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #afafaf;
  display: block;
  width: 0;
  height: 0;
  z-index: 0;
  left: -12px;
  top: 18px;
}

.chatownmsg {
  position: relative;
  clear: both;
  float: right;
  min-width: 30%;
  max-width: 90%;
  margin-bottom: 0.2em;
  margin-right: 0.7em;
  padding: 0.3em;
  padding-bottom: 0.1em;
  background-color: #e0ffd3;
  border: 2px solid #75EF43;
  border-radius: 16px;
}

.chatownmsg:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent #e0ffd3;
  display: block;
  z-index: 1;
  right: -9px;
  top: 20px;
  width: 0;
  height: 0;
}

.chatownmsg:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent #75EF43;
  display: block;
  width: 0;
  height: 0;
  z-index: 0;
  right: -12px;
  top: 18px;
}

.selectedmsg {
  background-color: #c1e9f7 !important;
}

.selectedmsg:before {
  border-color: transparent #75EF43 !important;
}
.selectedmsg:after {
  border-color: transparent #c1e9f7 !important;
}

.quotemsg {
  margin: 0.2em 0 0.1em 0.2em;
  border-left-color: #75EF43;
}

.msgavatar {
  float: left;
  margin: 0.2em;
  padding: 0 0 3px 0;
  text-align: left;
}

.msgnick {
  display: inline;
  padding: 0 0 0.2em;
  color: #e45803;
  font-weight: bold;
}

.msgtext {
  width: 100%;
  margin: 0 0.3em;
  margin-left: 0;
}

.msgmeta {
  padding-top: 8px;
}

.msgtime {
  bottom: 0;
  padding: 0;
  font-size: 70%;
  font-weight: 200;
}

.user-highlight {
  background-color: #fcffc4 !important;
  border-color: red !important;
}

.chatmsg.user-highlight:before {
  border-color: transparent red !important;
}
.chatmsg.user-highlight:after {
  border-color: transparent #fcffc4 !important;
}
