/*
Used with server-side rendering to "undo" some of the hacks that were required
to make browser-side wrapper rendering look good.

- Linear gradient background on page to avoid white flicker before header is added.
- Hidden footer to avoid footer appearing immediately below header while content is loaded and moved.
- Content hidden until moved by wrapper JS to avoid it moving down when header is added.
*/

html, body {
  background: none !important;
}

#esw-footer {
  display: block;
}

@media (max-width: 768px) {
  html, body {
    background: none !important;
  }
}

#esw-content {
  display: block !important;
}