/* "Disable" first ticket link 
.partial--ticketing__match:first-of-type a.button { 
	background: rgb(200,200,200);
    pointer-events: none; 
} 

/* "Disable" nth ticket link (eg. third) 
.partial--ticketing__match:nth-of-type(3) a.button { 
	background: rgb(200,200,200);
    pointer-events: none; 
}

/* "Disable" last ticket link 
.partial--ticketing__match:last-of-type a.button { 
	background: rgb(200,200,200);
    pointer-events: none; 
}*/