/* A container that only displays its children and does not affect the DOM. */
/* This is useful for when a group of elements requires a parent with an ID, but has no semantic parent block to be united by. */
.display-contents {
  display: contents;
}
