/**
 * Reverse Column Order
 *
 * Reverses the visual stacking order of a row's columns on small screens
 * using flexbox. Only applies below WPBakery's default column-stacking
 * breakpoint (767px) and only to rows with the "Reverse column order"
 * checkbox enabled. Desktop layout is untouched.
 */
@media (max-width: 767px) {
	.brco-reverse {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
}
