/* Products */
img {
	max-width: 100vw;
	height: auto;
}

.card-archive {
	display: flex;
	flex-flow: wrap;
	justify-content: center;
}
.card {
	flex-basis: 300px;
	flex-shrink: 1;
	flex-grow: 0;
	border: solid 1px #ddd;
	background: #ffffff;
	margin: 1em;
}
.card-thumbnail {
	width: 100%;
	height: auto;
}
.card-heading {
	padding: 0 1em;
}
.card-body {
	padding: 1em;
	color: #333;
}
.card-selected {
	background: linear-gradient(
		to left bottom,
		#63aeb5,
		#56a1a8,
		#4a949b,
		#3d878e,
		#307b82
	);
	color: #fff;
}
.data-table-filter-wrap {
	border: solid 1px;
	border-radius: 0.5em;
	padding: 1em;
}
.data-table-filters .data-table-filter:last-of-type {
	padding-right: 0;
}
.alert {
	background-color: lightgrey;
	padding: 1em;
	border-radius: 0.5em;
}

.dataTables_wrapper {
	overflow-x: auto;
}

#data-table {
	background: #fff;
}
#data-table tbody td {
	cursor: pointer;
}
#data-table th {
	white-space: nowrap;
}
#data-table td {
	vertical-align: top;
}
#data-table th.description {
	min-width: 300px;
}
article.entry.type-product {
	display: none;
}
@media (min-width: 640px) {
	.data-table-filters {
		display: flex;
	}
	.data-table-filters .data-table-filter {
		flex: 1 1 auto;
		padding-right: 1.5em;
	}
}
