/*
 * Firefox has a supported non-composited rendering configuration. Keep that
 * path free of compositor filters: depending on the graphics driver, Firefox
 * may otherwise render these effects in a software or unstable GPU path.
 * Other browsers retain the glass treatment from their regular stylesheets.
 */
@supports (-moz-appearance: none) {
  *,
  *::before,
  *::after,
  *::backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
  }
}
