/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Page {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  background-color: var(--colorsAppBackground, #fcfcfc);
  display: flex;
  flex-grow: 1;
  position: relative;
  max-width: 100%;
  height: 100%;
}

.Content__wrapper,
.Panel__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  flex: auto;
  overflow: hidden;
}

.Content__wrapper {
  flex-direction: column;
  min-width: 0;
}

.Panel__wrapper {
  flex-direction: row;
  height: 100%;
}

.Page__page {
  position: relative;
  flex-grow: 1;
  overflow: auto;
}

.Page__sidebar {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  overflow: visible;
  z-index: 799;
}

.Page--no-padding .Page__page {
  padding: 0 !important;
}

.Page--relaxed .Page__page {
  padding: 16px;
}
@media (min-width: 480px) {
  .Page--relaxed .Page__page {
    padding: 32px 24px;
  }
  .Page--relaxed .Page__page .Page__header {
    margin-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .Page--relaxed .Page__page {
    padding: 32px 48px;
  }
}

.Page__content,
.Page__header {
  max-width: 1280px;
}
.Page--wide .Page__content,
.Page--wide .Page__header {
  max-width: none;
}
.Page--narrow .Page__content,
.Page--narrow .Page__header {
  max-width: 768px;
}
.Page--align-center .Page__content,
.Page--align-center .Page__header {
  margin-left: auto;
  margin-right: auto;
}
.Page--min-width .Page__content,
.Page--min-width .Page__header {
  min-width: 1280px;
  overflow-x: scroll;
}
.Page--narrow.Page--min-width .Page__content,
.Page--narrow.Page--min-width .Page__header {
  min-width: 768px;
}

.Page__header {
  margin-bottom: 16px;
}

.Page__actionToolbar {
  min-height: 56px;
  padding: 12px 24px;
  background-color: var(--colorsSurfaceDefault, white);
  border-bottom: 1px solid var(--colorsBorderGrey, #dfe0e1);
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  z-index: 798;
}
@media (min-width: 480px) {
  .Page__actionToolbar {
    padding: 12px 48px;
  }
}
.Page__actionToolbar.Page__actionToolbar--sticky {
  position: sticky;
  top: 0;
}

.Panel {
  background-color: var(--colorsSurfaceDefault, white);
  width: 0;
  border-left: 1px solid var(--colorsBorderGrey, #dfe0e1);
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  position: sticky;
  transition: width cubic-bezier(0.4, 0, 0.6, 1) 300ms 0ms;
  overflow: hidden;
}
.Panel.Panel--open .Panel__content {
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 300ms 0ms;
  opacity: 1;
}
.Panel--left {
  border-right: 1px solid var(--colorsBorderGrey, #dfe0e1);
  border-left: none;
}
.Panel .Panel__content {
  flex-direction: column;
  top: 0;
  padding: 24px;
  display: flex;
  overflow: auto;
  width: 100%;
  opacity: 0;
  transition: opacity cubic-bezier(0.4, 0, 0.6, 1) 100ms 0ms;
  box-sizing: border-box;
  flex-shrink: 0;
}
.Panel .Panel__content.Panel__content--noPadding {
  padding: 0;
}

.Page__footer {
  min-height: 56px;
  padding: 16px 24px;
  background-color: var(--colorsSurfaceDefault, white);
  border-top: 1px solid var(--colorsBorderGrey, #dfe0e1);
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  position: sticky;
  bottom: 0;
  flex-shrink: 0;
  z-index: 798;
}
@media (min-width: 480px) {
  .Page__footer {
    padding: 24px 48px;
  }
}

/*# sourceMappingURL=index.css.map */
