there's an extra comma in the section starting at line 1592
article section table:not(.woocommerce) tbody tr:nth-child(2n), {
background: #f5f5f5;
}
so the right one is
article section table:not(.woocommerce) tbody tr:nth-child(2n) {
background: #f5f5f5;
}