div[data-toggle="messages"] {
	height: 400px;
	overflow-y: scroll;
}

div[data-toggle="messages"] .card-body {
	display: flex;
	padding: 22px;
}

div[data-toggle="messages"] .card-body .cont {
	width: 80%;
}

div[data-toggle="messages-profile"] .card-body {
	display: flex;
	width: 100%;
}

div[data-toggle="messages-profile"] .card-body .avatar {
	width: 40%;
	margin-right: 8px;
}

div[data-toggle="messages-profile"] .card-body .info {
	width: calc(60% - 8px);
}

div[data-toggle="messages-profile"] .card-body .info table.table tr td {
	font-size: 12px;
}

div[data-toggle="messages-profile"] .card-body .info .name {
	font-size: 16px;
	font-weight: 600;
}

div[data-toggle="messages-profile"] .card-body .avatar img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

div[data-toggle="messages"] .card-body img {
	width: 48px;
	height: 48px;
	border-radius: 15px;
}

div[data-toggle="messages"] .card-body .name {
	font-size: 16px;
	font-weight: 600;
}

div[data-toggle="messages"] .card-body .text {
	color: #7c7c7c;
}

.dialogs .card-body {
	padding: 15px;
	border-radius: 15px;
}

.dialogs .card-body:hover {
	background: rgba(0,0,0,.10);
}

.dialogs .avatar img {
	width: 48px;
	height: 48px;
	border-radius: 15px;
}

.dialogs .card-body {
	display: flex;
}

.dialogs .card-body .info {
	display: grid;
	margin-left: 8px;
}

.dialogs .card-body .info .name {
	font-size: 16px;
}

.dialogs .card-body .info .last_message {
	font-size: 14px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	width: 130px;
}

.dialogs > * {
	cursor: pointer;
}