.card-container {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	/* padding: 16px; */
	box-sizing: border-box;
	/* align-items: center; */
    /* justify-content: flex-start; */
}

.card-container-h-scroll {
	flex-wrap: nowrap;
	overflow: auto;
	padding: 16px;
}

.card {
	/* flex: 1 300px; */
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	/* padding: 4px; */
	margin: 6px !important;
	border-radius: 4px;
	box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0,0,0,.12);
	box-sizing: border-box;
	background-color: white;
	border: 1px solid #ebebeb;
}
.card-h-scroll {
	min-width: 240px;
}

.card-header {
	display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
	max-height: 48px;
	padding: 4px;
	align-items: center;
	background-image: linear-gradient(180deg, rgb(252,252,252), rgb(244,244,244));
}

.card-thumbnail {
	width: 40px;
	height: 40px;
	padding: 4px;
	border-radius: 50%;
    object-fit: cover;
}

.card-thumbnail-small {
	width: 24px;
	height: 24px;
	padding: 2px 6px;
	border-radius: 50%;
    object-fit: cover;
}

.card-title {
	margin: 4px;
	margin-left: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	max-height: 46px;
    white-space: normal;
    overflow: auto;
}

.card-title-small {
	margin: 4px;
	margin-left: 8px;
	/* font-weight: 600; */
	font-size: 0.8rem;
	max-height: 46px;
    white-space: normal;
    overflow: auto;
}

.card-message {
	padding: 12px;
	font-size: 0.8rem;
	color: #626262;
	min-height: 28px;
}

.card-message-preview {
	padding: 12px;
	font-size: 0.8rem;
	color: #626262;
	height: 56px;
	overflow: hidden;
	overflow-wrap: anywhere;
}

.card-first-message {
	min-height: 40px;
}

.card-regarding {
	margin-top: 16px;
    text-transform: uppercase;
    color: #7a7a7a;
}

.card-author {
    color: #7a7a7a;
	text-align: right;
	margin: 6px 12px;
    font-size: 0.8rem;
	display: flex;
    align-items: center;
    justify-content: flex-end;
}

.card-date {
    color: #7a7a7a;
	text-align: left;
	margin: 6px 12px;
    font-size: 0.8rem;
}

.card-actions {
	display: flex;
    padding: 4px 12px;
    align-items: center;
    justify-content: space-evenly;
	height: 50px;
}

.card-actions form {
	width: 100%;
}

.card-actions button {
	margin: 0px;
	width: 48%;
    box-sizing: border-box;
	padding: 0px;
	height: 30px;
}

#contacts td {
	font-size: 1rem;
}

