/**
 * @file
 * Component Layout CSS and some Page layout overrides
 */
/* Fonts */
/* AFSC Branding Guideline Colours */
/* Breakpoints */
.l-header-wrapper .l-header {
  margin: 0;
  width: 100%;
}

@media all and (min-width: 48em) {
  .l-header-wrapper {
    position: relative;
  }
  .l-header-wrapper .l-header {
    position: absolute;
    z-index: 10;
    margin: 0;
    top: 3rem;
    width: 100%;
  }
}

/* Push the footer down to the bottom of the page. */
.layout {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.layout .l-messages {
  margin: 0 0 2rem;
}

.admin-bar body .layout {
  padding-top: 33px;
  margin-top: -33px;
}

.l-wrapper {
  -ms-flex: 1 0 auto;
  -webkit-box-flex: 1;
          flex: 1 0 auto;
}

.l-header-wrapper,
.l-footer {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
}
/*# sourceMappingURL=layout.css.map */