/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Takeover {
  /* 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;
  display: flex;
  flex-direction: column;
  position: fixed;
  max-height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--colorsSurfaceDefault, white);
  text-align: left;
  z-index: 1100;
}
.Takeover:focus {
  outline: none;
}
.Takeover:focus-visible {
  outline: none;
}

.TakeoverHeader__back-link {
  flex: 0 auto;
}

.TakeoverContent {
  flex-grow: 1;
  overflow-y: auto;
}

.Takeover--is-open {
  overflow: hidden;
}

.TakeoverHeader {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  align-items: center;
  background: var(--colorsSurfaceInvertedStrong, #141414);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  color: var(--colorsTextInverted, white);
  display: flex;
  flex: 0 0 auto;
  font-size: 20px;
  justify-content: space-between;
  min-height: 64px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.TakeoverHeader--light {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  background: var(--colorsSurfaceGreySubdued, #f7f7f7);
  box-shadow: 0 1px 0 var(--colorsBorderGrey, #dfe0e1);
  color: var(--colorsTextDefault, #141414);
}

.TakeoverHeader__title {
  flex: 2;
  text-align: center;
  color: inherit;
  margin: 0;
}

.TakeoverHeader__left,
.TakeoverHeader__right {
  display: flex;
  flex: 1;
  align-items: center;
}

.TakeoverHeader__left {
  justify-content: flex-start;
}

.TakeoverHeader__right {
  justify-content: flex-end;
}

.TakeoverHeader__back-link {
  color: inherit;
}

.TakeoverHeader__actions + .TakeoverHeader__close {
  margin-left: 8px;
}

.TakeoverHeader__close.Button {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity cubic-bezier(0.4, 0, 0.2, 1) 200ms 0ms;
  box-sizing: content-box;
  padding: 4px;
  color: inherit;
}
.TakeoverHeader__close.Button:hover {
  opacity: 1;
}
.TakeoverHeader__close.Button:hover {
  background-color: transparent;
}

.TakeoverSection {
  background: var(--colorsSurfaceDefault, white);
  padding: 24px;
}
.TakeoverSection + .TakeoverSection {
  border-top: 1px solid var(--colorsBorderGrey, #dfe0e1);
}

.TakeoverFooter {
  background: var(--colorsSurfaceDefault, white);
  border-top: 1px solid var(--colorsBorderGrey, #dfe0e1);
  display: flex;
  flex: 0 0 auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.TakeoverFooter--center {
  justify-content: center;
}

.TakeoverFooter--left {
  justify-content: flex-start;
}

.TakeoverFooter--right {
  justify-content: flex-end;
}

.TakeoverFooter--space-between {
  justify-content: space-between;
}

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