

.woocommerce-cart-form-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
	background-color: transparent !important;
}

@media only screen and (max-width: 600px) {
	.woocommerce-cart-form-container {
		flex-direction: column;
	}

	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
		content: attr(data-title);
		font-family: var(--font-family);
		font-weight: normal;
	}

	.woocommerce-page table.shop_table_responsive tr.order-total td::before {
		font-family: var(--font-family-bold);
	}
}