.thread {

}

.thread .user-thumbnail {
	width: 35px;
    height: 35px;
    background-size: 35px 35px;
    border-radius: 50%
}

.thread .message {
	margin: 20px auto;
}

.thread .message.me .content {
	background-color: #dcf8c6;
}

.thread .message.other .content {
	float: right;
	background-color: #dfdfdf;
}

.thread .message .content {
	width: fit-content;
    font-size: 14px;
    padding: 10px 13px;
    border-radius: 5px;
}

.thread .message .date {
	font-size: 12px;
	display: none;
}

.thread .message:hover .date {
	display: block;
}


.thread .new-message-container{
    border-top: 1px solid #ececec;
}

.thread .message .content.new-message {
	border: none;
    width: 100%;
}