/* Make top level of DOM expanded to full height. Our app is not scrollable,
   only its sections can be.
*/

html,
body,
#__next {
  height: 100%;
}

/* Fix position and size of snackbars.
*/

.virbe-snackbar-root-container > div {
  /* Snackbars should appear in position related to container, not to the whole viewport.
  */
  position: absolute;
  /* Snackbars on wide screen should have same 14px margin on the left as on the right.
     Small screen have its own padding-based styling which looks OK and "wins" with
     `left`/`right` due to `!important` modifier.
  */
  left: 14px;
}

