/**
 * @file
 * Disable features that need JS if JS is not available.
 */

/** Hide show preference panel **/
html:not(.js) .flc-prefsEditor-separatedPanel {
  display: none;
}

html:not(.js) .site-header__inner__container {
  flex-wrap: wrap;
  justify-content: flex-end;
}

/** Display when no JS, even if mobile, because there is no mobile menu functional **/
html:not(.js) .header-nav {
  display: block;
}

html:not(.js) .mobile-buttons {
  display: none;
}

/** Hide the toggle with no JS when the toggle won't work anyway **/
html:not(.js) .primary-nav__button-toggle {
  display: none;
}
