#chatBox{
	overflow-y: scroll;
	min-height: 645px;
	max-height: 645px;
	padding: 16px;
    background-color: #061029;	
}

.chatMessage{
    display: flex;
    margin-bottom: 16px;
    align-items: flex-start;
}

.emoji, .emojiPanel{
	font-family: "Noto Color Emoji", sans-serif; 
	font-size: 3em;
}

.emojiPanel{
	font-size: 1.4em;
	margin-top: 10px;
}

.emojiPanel span{
	
	padding: 0 7px;	
    cursor: pointer;	
}


.msgDetails {
    display: flex;
    flex-direction: column;
}

.chatUser{
	font-size: 12px;
	color: #aaa;
}

.chatText{
    word-wrap: break-word;	
}


.chatMessage blockquote{
	font-style: italic;
	font-size: 12px;
	color: #aaa;
	padding: 0;
	margin: 0;
}


.chatMessage blockquote::before {
  content: "\275D"; /* Unicode-код символа ❝ */
  margin-right: 5px; /* Отступ от текста */
    font-size: 1.2em; /* Optional: adjust size */
}

#cntChatBox{

}

#cntMessageForm{
	display: flex;
	padding: 8px;
}


#cntMessageSent{
	color: #000;
}


#chatTextBoxContainer{
	flex-basis: 100%;
	padding-right: 10px;
}


#chatTextarea{
	height: 70px;
	width: 100%;
	font-family: "Noto Color Emoji", sans-serif;	
	border-radius: 5px;

}



#chatSendBtnContainer{
	flex-grow: 0;     /* do not grow   - initial value: 0 */
	flex-shrink: 0;   /* do not shrink - initial value: 1 */
	flex-basis: 50px; /* width/height  - initial value: auto */
}

#btnSendChat{

}


#btnSendChat:hover{

}




/*AVATAR*/

.avatar {
/*     display: inline-flex;
   align-items: center;
    justify-content: center;
   */
	padding-top: 9px;
	top: -1px;
	text-align: center;
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background-color: #2678EE;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-right: 16px;
	flex-shrink: 0;
}


.avatar img{
	margin-top: -10px;
	width: 100%;
    border-radius: 50%;	
}
