/* **************************************** */
/*          COLLAPSIBLE TABLES              */
/* **************************************** */

table.collapsible {
  border-collapse: collapse;
}
table.collapsible, 
table.collapsible thead, 
table.collapsible tbody, 
table.collapsible th, 
table.collapsible td, 
table.collapsible tr { 
  display: block; 
}
table.collapsible thead {
  display: none;
} 
table.collapsible, 
article table.collapsible th, 
article table.collapsible td {
  border: none;
}
article table.collapsible th, 
article table.collapsible td {
  padding-left: 0;
  padding-right: 0;
}

table.collapsible td:before { font-weight: bold; }

table.collapsible td:nth-of-type(1):before { content: "Date of leaving: "; }
table.collapsible td:nth-of-type(2):before { content: "Increases: "; }


/* The text of an article was appearing on top of the cookie-panel. Only on mobile */
/* ... adding position:relative fixes this, but will it cause other problems? */
xxdiv.wrapper.cookie-panel {
  position: relative;
  z-index: 4;
}



