
/* CSS states get their own files so we can increase their specificity by @importing them last */

.is-Hidden {
	display: none;
}

.is-Shown {
	display: inherit; /* 'inherit' fallback */
	display: initial;
}

.is-Selected,
.is-Selected a {
  background-color: #ddd !important;
}
