body {
  min-height: calc(100vh - var(--drupal-displace-offset-top, 0px));
  display: flex;
  flex-direction: column;
  background: var(--color-background);
  color: var(--color-text-light);
  /*overflow: hidden;*/
  /*touch-action: none;*/
}
.wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.top-navigation {
  display: flex;
  position: sticky;
  top: calc(var(--drupal-displace-offset-top, 0px));
  left: 0;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--color-background);
  z-index: 10;
}
.layout-menu {
  width: 100%;
  display: flex;
}

.navigation-main {
  flex: 0;
  align-items: center;
}
.main {
  flex: 1;
  z-index: 1;
  position: relative;
}
.layout-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sidebar {
  min-width: 400px;
}
.page-content {
  width: 100%;
  margin: 0;
}

a {
  color: var(--color-text-light);
}

.section {
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 80px - var(--drupal-displace-offset-top, 0px));
  min-height: 480px;
}

.section-content {
  padding: 1rem 0;
}

.section-content .content {
  max-width: 1200px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .section-content {
    padding: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .navigation-main {
    flex: 1;
    align-items: center;
  }
}
.
