/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/**
 * project colors
 */
/**
 * base color definitions
 */
/**
 * error color
 */
/**
 * interaction color definitions
 */
/**
 * accessibility
 */
/**
 * project colors
 */
/**
 * base color definitions
 */
/**
 * error color
 */
/**
 * interaction color definitions
 */
/**
 * accessibility
 */
/**
 * common colors for form elements
 * these elements are a little bit detached
 * maybe this has to be discussed
 */
/**
 * gaps, defined in styleguide
 * use in future these gaps
 */
/**
 * @file
 * Float clearing.
 *
 */
.clearfix::after {
  clear: both;
  content: "";
  display: block;
}

/**
 * @file
 * Utility classes to hide elements in different ways.
 */
/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be collapsible details that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen readers.
 *
 * Used for information required for screen reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 */
.visually-hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /**
   * The .focusable class extends the .visually-hidden class to allow
   * the element to be focusable when navigated to via the keyboard.
   */
}
.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
  position: static !important;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout.
 */
.invisible {
  visibility: hidden;
}

.content-section {
  padding-bottom: 6.25rem;
}
.content-section > *:not(:last-child) {
  margin-bottom: 1.875rem;
}
.content-section__content-after > *:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .content-section__content-after > *:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}
.content-section__button-wrapper {
  margin-top: 1.875rem;
}
.content-section__heading {
  max-width: 45rem;
}
.content-section--content-wrapped .content-section__content {
  max-width: 45rem;
}
@media only screen and (min-width: 768px) {
  .content-section--half-wrapped .content-section__content {
    max-width: 50%;
  }
}
.content-section--vertical-gutter .content-section__content > *:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .content-section--vertical-gutter .content-section__content > *:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}

.field-group--vertical-gap:not(:last-child) {
  margin-bottom: 0.875rem;
}
.field-group--vertical-gap-big:not(:last-child) {
  margin-bottom: 3.75rem;
}
.field-group--background {
  background-color: #F4F1ED;
  padding: 1.25rem;
}
.field-group--error {
  background-color: #FFDCE2;
}
.field-group--indented {
  padding-left: 1.25rem;
}
.field-group--indented-big {
  padding-left: 3.75rem;
}
.field-group__item--select select {
  width: 100%;
}
.field-group__description {
  padding-right: 1.25rem;
  margin-bottom: 0.875rem;
}
.field-group__heading:not(.field-group__heading--first) {
  margin-top: 1.2rem !important;
}
.field-group__item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.field-group__content-after {
  margin-top: 0.875rem;
}

.flex-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-preferred-size: var(--flex-bar-basis, auto);
  flex-basis: var(--flex-bar-basis, auto);
  margin-right: calc(-1 * var(--flex-bar-h-spacing, 0.875rem));
  margin-bottom: calc(-1 * var(--flex-bar-v-spacing, 0.875rem));
}
.flex-bar > * {
  margin-right: var(--flex-bar-h-spacing, 0.875rem);
  margin-bottom: var(--flex-bar-v-spacing, 0.875rem);
}
.flex-bar > *.flex-bar {
  margin: 0;
}
.flex-bar--align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-bar--align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-bar--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-bar--justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-bar--justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-bar--justify-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-left: calc(-1*var(--gutter));
  margin-right: calc(-1*var(--gutter));
  width: calc(100% + 2*var(--gutter));
}
.flex-grid > * {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flex-grid--vertical-gutter > *:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .flex-grid--vertical-gutter > *:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}
.flex-grid__column {
  width: calc(100% - 2*var(--gutter));
  float: left;
  margin-left: var(--gutter);
}
@media only screen and (min-width: 768px) {
  .flex-grid__column--1-of-2 {
    width: calc(50% - 1.5*var(--gutter));
    float: left;
    margin-left: var(--gutter);
  }
}
@media only screen and (min-width: 768px) {
  .flex-grid__column--1-of-3 {
    width: calc(33.3333333333% - 1.3333333333*var(--gutter));
    float: left;
    margin-left: var(--gutter);
  }
}
.flex-grid__column--1-of-4 {
  width: calc(50% - 1.5*var(--gutter));
  float: left;
  margin-left: var(--gutter);
}
@media only screen and (min-width: 768px) {
  .flex-grid__column--1-of-4 {
    width: calc(25% - 1.25*var(--gutter));
    float: left;
    margin-left: var(--gutter);
  }
}
@media only screen and (min-width: 768px) {
  .flex-grid__column--2-of-3 {
    width: calc(66.6666666667% - 1.6666666667*var(--gutter));
    float: left;
    margin-left: var(--gutter);
  }
}
@media only screen and (min-width: 768px) {
  .flex-grid__column--2-of-3-center {
    width: calc(66.6666666667% - 1.6666666667*var(--gutter));
    float: left;
    margin-left: var(--gutter);
    margin-left: calc(16.6666666667% - 1.1666666667*var(--gutter) + 2*var(--gutter));
  }
}

.form-page {
  padding-bottom: 3.75rem;
}
.form-page--vertical-gap-after-form-before .form-page__form-before {
  margin-bottom: 2.5rem;
}
.form-page__form-before {
  margin-bottom: 0.875rem;
}
.form-page__form-after {
  margin-top: 1.875rem;
}
.form-page__form-after > *:not(:last-child) {
  margin-bottom: 3.125rem;
}

.grid {
  display: -ms-grid;
  display: grid;
  /**
   * used for claim on mood image
   */
}
.grid--2-cols {
  /* autoprefixer grid: autoplace */
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: auto var(--gutter) auto;
  grid-template-rows: repeat(2, auto);
  grid-gap: var(--gutter);
}
.grid--2-cols > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid--2-cols > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
@media only screen and (min-width: 768px) {
  .grid--2-cols {
    /* autoprefixer grid: autoplace */
    -ms-grid-columns: 1fr var(--gutter) 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: repeat(1, auto);
    grid-gap: var(--gutter);
  }
  .grid--2-cols > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--2-cols > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
@media only screen and (min-width: 768px) {
  .grid--2-cols.grid--1-to-2 {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr var(--gutter) 1fr var(--gutter) 1fr;
    grid-template: "first second second"/1fr 1fr 1fr;
  }
  .grid--2-cols.grid--1-to-2 > *:nth-child(1) {
    grid-area: first;
  }
  .grid--2-cols.grid--1-to-2 > *:nth-child(2) {
    grid-area: second;
  }
}
@media only screen and (min-width: 768px) {
  .grid--2-cols.grid--2-to-1 {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr var(--gutter) 1fr var(--gutter) 1fr;
    grid-template: "first first second"/1fr 1fr 1fr;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(1) {
    grid-area: first;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(2) {
    grid-area: second;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
  }
}
@media only screen and (min-width: 768px) {
  .grid--2-cols.grid--1-to-3 {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr var(--gutter) 1fr var(--gutter) 1fr var(--gutter) 1fr;
    grid-template: "first second second second"/1fr 1fr 1fr 1fr;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(1) {
    grid-area: first;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(2),
  .grid--2-cols.grid--1-to-3 > *:nth-child(3),
  .grid--2-cols.grid--1-to-3 > *:nth-child(4) {
    grid-area: second;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
  }
}
.grid--3-cols {
  /* autoprefixer grid: autoplace */
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: auto var(--gutter) auto var(--gutter) auto;
  grid-template-rows: repeat(3, auto);
  grid-gap: var(--gutter);
}
.grid--3-cols > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid--3-cols > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.grid--3-cols > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
@media only screen and (min-width: 768px) {
  .grid--3-cols {
    /* autoprefixer grid: autoplace */
    -ms-grid-columns: 1fr var(--gutter) 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: repeat(1, auto);
    grid-gap: var(--gutter);
  }
  .grid--3-cols > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--3-cols > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
@media only screen and (min-width: 1024px) {
  .grid--3-cols {
    /* autoprefixer grid: autoplace */
    -ms-grid-columns: 1fr var(--gutter) 1fr var(--gutter) 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: repeat(1, auto);
    grid-gap: var(--gutter);
  }
  .grid--3-cols > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--3-cols > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid--3-cols > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}
@media only screen and (min-width: 768px) {
  .grid--8-of-12-centered {
    -ms-grid-rows: auto;
    -ms-grid-columns: 2fr 8fr 2fr;
    grid-template: ". content ."/2fr 8fr 2fr;
  }
  .grid--8-of-12-centered > *:nth-child(1) {
    grid-area: content;
  }
}
@media only screen and (min-width: 1200px) {
  .grid--survey-reply-sociodemographics {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template: "first first second"/1fr 1fr 1fr;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(1) {
    grid-area: first;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(2) {
    grid-area: second;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(2),
  .grid--survey-reply-sociodemographics > *:nth-child(3),
  .grid--survey-reply-sociodemographics > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
}
@media only screen and (min-width: 768px) {
  .grid--2-cols.grid--1-to-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--2-cols.grid--1-to-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(2),
  .grid--2-cols.grid--1-to-3 > *:nth-child(3),
  .grid--2-cols.grid--1-to-3 > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(2),
  .grid--2-cols.grid--2-to-1 > *:nth-child(3),
  .grid--2-cols.grid--2-to-1 > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(2),
  .grid--2-cols.grid--1-to-3 > *:nth-child(3),
  .grid--2-cols.grid--1-to-3 > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }
  .grid--2-cols.grid--2-to-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
  }
  .grid--2-cols.grid--1-to-3 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
  }
}
@media only screen and (min-width: 1200px) {
  .grid--survey-reply-sociodemographics > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .grid--survey-reply-sociodemographics > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
}

.homepage__content {
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .homepage__content {
    padding-bottom: 5rem;
  }
}

.inline > *,
.inline > * > * {
  display: inline;
}

.intermediate-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.125rem;
  margin: 3.125rem 0;
}
.intermediate-page__header--federal-state-logo > img, .intermediate-page__header--institute-logo > img {
  max-height: 80px;
}
.intermediate-page__content {
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
  background-color: #F4F1ED;
}
@media only screen and (min-width: 768px) {
  .intermediate-page__content {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
.intermediate-page__button {
  margin-top: 1.5rem;
}

.outer-wrapper:not(.outer-wrapper--large) {
  padding-right: var(--outer-padding);
  padding-left: var(--outer-padding);
  max-width: calc(var(--max-width) + 2 * var(--outer-padding));
  margin-left: auto;
  margin-right: auto;
}
.outer-wrapper--large {
  --max-width: 98.75rem;
}
@media only screen and (min-width: 1024px) {
  .outer-wrapper--large {
    padding-right: var(--outer-padding);
    padding-left: var(--outer-padding);
    max-width: calc(var(--max-width) + 2 * var(--outer-padding));
    margin-left: auto;
    margin-right: auto;
  }
}

.overlay-container {
  position: fixed;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: white;
}
.overlay-container__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1000;
  color: #A81815 !important;
}

.page-layout {
  display: -ms-grid;
  display: grid;
  grid-column-gap: var(--gutter);
  -ms-grid-rows: auto auto auto;
  -ms-grid-columns: 1fr;
  grid-template: "sidebar-first" "content" "sidebar-second"/1fr;
}
.page-layout__content {
  grid-area: content;
  min-width: 0;
}
.page-layout > .page-layout__content {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.questionnaire-edit > .page-layout__content {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}
.page-layout__sidebar > *:not(:last-child) {
  margin-bottom: 1.875rem;
}
.page-layout__sidebar--first {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidebar-first;
}
.page-layout__sidebar--second {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: sidebar-second;
}
@media only screen and (min-width: 1024px) {
  .page-layout--center {
    -ms-grid-rows: auto;
    -ms-grid-columns: 2fr 8fr 2fr;
    grid-template: ". content ." auto/2fr 8fr 2fr;
  }
  .page-layout--center > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .page-layout--center > .page-layout__content {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 1200px) {
  .page-layout--sidebar-right {
    -ms-grid-rows: auto 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template: "content content sidebar-first" auto "content content sidebar-second" 1fr/1fr 1fr 1fr;
  }
  .page-layout--sidebar-left {
    -ms-grid-rows: auto 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template: "sidebar-first content content" auto "sidebar-second content content" 1fr/1fr 1fr 1fr;
  }
  .page-layout--sidebar-right > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .page-layout--sidebar-left > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
  }
  .page-layout--sidebar-right > .page-layout__content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .page-layout--sidebar-left > .page-layout__content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
  }
  .page-layout--sidebar-right > .page-layout__sidebar--first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .page-layout--sidebar-left > .page-layout__sidebar--first {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .page-layout--sidebar-right > .page-layout__sidebar--second {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .page-layout--sidebar-left > .page-layout__sidebar--second {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}

.page-title-section {
  padding-top: 1.875rem;
  padding-bottom: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .page-title-section {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }
}
.page-title-section__wrapper > *:not(last-child) {
  margin-bottom: 0.875rem;
}
.page-title-section__mood-image {
  position: relative;
  max-width: 105rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-bottom: 1.875rem;
}
.page-title-section__mood-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 8.75rem;
}
@media only screen and (min-width: 540px) {
  .page-title-section__mood-image img {
    height: 15rem;
  }
}
@media only screen and (min-width: 1024px) {
  .page-title-section__mood-image img {
    height: 22.5rem;
  }
}

.questionnaire-edit {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto var(--gutter) auto;
  -ms-grid-columns: 2fr var(--gutter) 5fr;
  grid-template: "questionnaire-detail questionnaire-detail" "sidebar content"/2fr 5fr;
  grid-column-gap: var(--gutter);
  grid-row-gap: var(--gutter);
}
.questionnaire-edit__questionnaire-detail {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: questionnaire-detail;
  -ms-grid-row-align: start;
  align-self: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.questionnaire-edit__questionnaire-detail > form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.questionnaire-edit__questionnaire-detail > *:not(:last-child) {
  margin-right: 0.875rem;
}
.questionnaire-edit__content-wrapper {
  grid-area: content;
}
.page-layout > .questionnaire-edit__content-wrapper {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.questionnaire-edit > .questionnaire-edit__content-wrapper {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}
.questionnaire-edit__content-wrapper > *:not(:last-child) {
  margin-bottom: var(--gutter);
}
.questionnaire-edit__component-sidebar {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: sidebar;
}
@media only screen and (min-width: 768px) {
  .grid--8-of-12-centered > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .page-layout__content {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .questionnaire-edit__content-wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 1024px) {
  .page-layout--center > .questionnaire-edit__content-wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 1200px) {
  .page-layout--sidebar-right > .questionnaire-edit__content-wrapper {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .page-layout--sidebar-left > .questionnaire-edit__content-wrapper {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
  }
}
.questionnaire-edit__component-sidebar > *:not(:last-child) {
  margin-bottom: 0.875rem;
}
.questionnaire-edit__component-detail {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.questionnaire-edit__component-detail > form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.questionnaire-edit__component-detail > *:not(:last-child) {
  margin-right: 0.875rem;
}
.questionnaire-edit__component-statements > *:last-child {
  margin-top: 0.875rem;
}
.questionnaire-edit__description {
  margin-top: 0.875rem;
  color: #808080;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.questionnaire-edit__accordion-content {
  padding-right: 0.875rem;
  padding-left: 0.875rem;
}

@-webkit-keyframes v-dash {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes v-dash {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes h-dash {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-3%);
    transform: translateX(-3%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(1%);
    transform: translateX(1%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes h-dash {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-3%);
    transform: translateX(-3%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(1%);
    transform: translateX(1%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.section-container--animation-v-dash > * {
  opacity: 0.01;
}
.section-container--animation-v-dash .section-container__item--appeared {
  -webkit-animation: v-dash 0.75s ease-in 0.25s forwards;
  animation: v-dash 0.75s ease-in 0.25s forwards;
}
.section-container--animation-h-dash > * {
  opacity: 0.01;
}
.section-container--animation-h-dash .section-container__item--appeared {
  -webkit-animation: h-dash 1s ease-in 0.25s forwards;
  animation: h-dash 1s ease-in 0.25s forwards;
}

.section--background-default {
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
  background-color: #F4F1ED;
  color: black;
}
@media only screen and (min-width: 768px) {
  .section--background-default {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
.section--background-teaser {
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
  background-color: #F4F1ED;
}
@media only screen and (min-width: 768px) {
  .section--background-teaser {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
.section--survey-type {
  padding: 0;
}
.section--survey-type:not(:last-child) {
  margin-bottom: 3.75rem;
}
.section__content--multiple > *:not(last-child) {
  margin-bottom: var(--gutter);
}
.section--padding-small {
  padding-top: 3.125rem;
  padding-bottom: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .section--center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.section__actions {
  margin-top: 0.875rem;
}
.section__heading {
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section__description {
  padding-bottom: 1.5rem;
}

.sidebar--background-default {
  padding: 1.875rem;
  background-color: #F4F1ED;
}
.sidebar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.sidebar__items > *:not(:last-child) {
  margin-bottom: var(--gutter);
}

.simple-content-page:not(.simple-content-page--mood-image) {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}
.simple-content-page__mood-image {
  padding-bottom: 3.75rem;
}
.simple-content-page__content {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .simple-content-page__content {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.survey-complete-page__context {
  background: rgba(168, 24, 21, 0.05);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .survey-complete-page__context {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.survey-complete-page__content {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.survey-complete-page__title {
  margin-bottom: 3.125rem;
}

.survey-user-statement-group-form__row-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 1.3rem;
}

.view__header, .view__filter, .view__attachment-before {
  margin-bottom: 1.875rem;
}
.view__row:not(:last-child) {
  margin-bottom: 0.875rem;
}
.view__pager, .view__attachment-after {
  margin-top: 1.875rem;
}
/*# sourceMappingURL=layout.css.map */
