/**
 * @file
 * utility classes to assist with javascript functionality.
 */

/**
 * for anything you want to hide on page load when js is enabled, so
 * that you can use the js to control visibility and avoid flicker.
 */
.js .js-hide {
  display: none;
}

/**
 * for anything you want to show on page load only when js is enabled.
 */
.js-show {
  display: none;
}
.js .js-show {
  display: block;
}

