// JavaScript-managed hidden elements
// govuk_template_jinja uses its js-hidden class slightly differently to CASA;
// it adds the class using JavaScript vs CASA's method of showing it and only
// hiding if the `.js-enabled` root class is set.
.js-hidden {
  display: block;
}

.js-enabled .js-hidden {
  display: none;
}
