.chat-conversation-true {
	display: flex;
	justify-content:flex-start;
	align-items: center;
}
.chat-conversation-false {
	display: flex;
	justify-content:flex-end;
	align-items: center;
}

.chat-conversation-username, 
.chat-conversation-username a,
.chat-conversation-username a:link,
.chat-conversation-username a:visited {
	background-color: #f0f0f0;
	border-radius: 10px;
	padding: 2px 20px;
	margin-left: 5px;
	text-decoration: none;
}

.chat-conversation-patentscope {
	background-color: #67d1f1;
	border-radius: 10px;
	padding: 2px 20px;
	margin-left: 5px;
}

.chat-active-master {
	display:flex;
	align-items:center;
	justify-content:flex-end;
	width:100%;
	height:100%;
 }
 
.chat-active-masters--list {
    font-style: italic;
	padding-left: 10px; 
	padding-right: 10px; 
}

.chat-new-message {
   /*
   border: 2px solid !important;
   border-color: #52a7c0 !important; 
   */
   animation: BLINK5 1s 5; 
}

@keyframes BLINK5 {
  0%, 49% {
	background-color: #edf9fc;
  }
  50%, 100% {
	background-color: #ffffff;
  }
}