:root {
	--color-500: #607d8b;
}

.date-bar { display: none; margin-top: -48px; position: fixed; top: 56px; left: 0; }

content .card {
	width: 100%;
	height: 72px;
	border-bottom: 1px solid rgba(0,0,0,0.12);
	overflow: hidden;
	position: relative;
	transition: transform 0.375s, background-color 0.375s;
	-webkit-transition: -webkit-transform 0.375s, background-color 0.375s;
}

.fadeOut { transform: translateX(-100%); -webkit-transform: translateX(-100%); }

content .card figure {
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	color: rgba(0,0,0,0.54);
	font-family: "Roboto Mono";
	border-radius: 50%;
	margin: 16px;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	transition: background-color 0.375s;
}

content .card .title {
	display: inline-block;
	vertical-align: top;
	height: 72px;
	font-family: "Roboto", sans-serif;
	padding: 16px 0;
	text-transform: capitalize;
	margin-right: 16px;
}

content .card .title div:first-of-type {
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	color: #FFFFFF;
}

content .card .title div:nth-of-type(2) {
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

content .card .actions {
	height: 72px;
	width: 56px;
	padding: 12px 4px;
	position: absolute;
	top: 0;
	right: 0;
}

content .card .actions i {
	display: block;
	width: 48px;
	height: 48px;
	padding: 12px;
	color: #FFFFFF;
	border-radius: 2px;
}

@media (min-width: 768px) {
	.card-wrapper { margin: 4px -4px; }

	.fadeOut { transform: translateY(100vh); -webkit-transform: translateY(100vh); }

	content .card { 
		margin: 4px; 
		width: Calc(50% - 8px);
		float: left;
		border-bottom: none;
		height: auto;
	}

	content .card figure { 
		width: 100%;
		height: Calc(((100vw - 160px) * 0.50 - 8px) * 9 / 16);
		line-height: Calc(((100vw - 160px) * 0.50 - 8px) * 9 / 16);
		border-radius: 0;
		display: block;
		margin: 0;
		font-size: 28px;
	}

	content .card .title {
		height: 68px;
		padding: 18px 16px;
	}

	content .card .title div:first-of-type {
		font-size: 16px;
		height: auto;
		line-height: 100%;
		margin-bottom: 4px;
	}

	content .card .title div:nth-of-type(2) {
		font-size: 12px;
		height: auto;
		line-height: 100%;
	}

	content .card .actions { top: auto; bottom: 0px; height: 68px; padding: 10px 4px; }
}

@media (min-width: 992px) {
	content .card { width: Calc(33.33% - 8px); }
	content .card figure { 
		height: Calc(((100vw - 160px) * 0.3333 - 8px) * 9 / 16); 
		line-height: Calc(((100vw - 160px) * 0.3333 - 8px) * 9 / 16); 
	}
}
@media (min-width: 1200px) {
	content .card { width: Calc(25% - 8px); }
	content .card figure { 
		height: Calc(((100vw - 160px) * 0.25 - 8px) * 9 / 16); 
		line-height: Calc(((100vw - 160px) * 0.25 - 8px) * 9 / 16); 
	}
}