.favList .fav--what {
}
.favList .fav--that {
	font-weight: bold;
}

@media all and (min-width: 769px) {
	.favList {
		display: table;
	}
	.favList > .favRow {
		display: table-row;
	}
	.favList > .favRow > * {
		display: table-cell;
		vertical-align: top;
		padding: 5px 10px;
	}
	.favList .fav--what {
		text-align: right;
	}
	.favList > .favRow:not(:last-child) > * {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}
@media all and (max-width: 768px) {
	.favList {
	}
	.favList > .favRow {
		padding: 10px 5px;
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: flex-start;
		align-content: flex-start;
	}
	.favList > .favRow > * {
		padding: 5px;
	}
	.favList .fav--what {
	}
	.favList .fav--that {
		text-align: right;
		margin-left: auto;
	}
	.favList > .favRow:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}

