[data-tooltip]:before {
  /* needed - do not touch */
  content: attr(data-tooltip);
  position: absolute;
  opacity: 0;
  /* customizable */
  transition: all 0.15s ease;
  padding: 10px;
  color: #333;
  border-radius: 10px;
  box-shadow: 2px 2px 1px silver;
}

[data-tooltip]:hover:before {
  /* needed - do not touch */
  opacity: 1;
  /* customizable */
  background: yellow;
  margin-top: -50px;
  margin-left: 20px;
}

[data-tooltip]:not([data-tooltip-persistent]):before {
  pointer-events: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Roboto, sans-serif;
}

a {
  text-decoration: none;
}

body {
  background-color: #333;
  font-size: 18px;
}

nav {
  display: block;
  width: calc(100vw - 0px);
  position: fixed;
  z-index: 10;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 500px) {
  nav.scroll-active {
    transform: translateY(-55px);
  }
}
nav #info-header {
  background-color: #333;
  color: #f0f0f0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
nav #info-header .title {
  color: inherit;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 200;
}
@media screen and (max-width: 650px) {
  nav #info-header .title {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  nav #info-header .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  nav #info-header .title {
    font-size: 14px;
  }
}
nav #info-header .fill {
  flex-grow: 1;
}
nav #info-header .contact {
  color: #f4f4f4;
  border-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: color 0.25s, border-color 0.25s;
}
nav #info-header .contact:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1150px) {
  nav #info-header .contact:not(:last-child) {
    margin-right: 20px;
  }
  nav #info-header .contact .text {
    display: none;
  }
}
nav #info-header .contact:hover {
  color: #eab840;
  border-color: #eab840;
}
nav #info-header .contact .icon {
  margin-right: 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav #info-header .contact .text {
  margin-left: 5px;
  padding-left: 5px;
  border-color: inherit;
  border-left-width: 1px;
  border-style: solid;
  font-size: 14px;
  font-weight: 200;
}
nav #nav-header {
  border-bottom: 1px solid #333;
  background-color: #f4f4f4;
  color: #333;
  opacity: 0.9;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  nav #nav-header {
    height: initial;
    opacity: 1;
  }
}
nav #nav-header .link {
  display: flex;
  font-size: 18px;
  cursor: pointer;
  margin: 0px 20px;
  transition: border 0.25s linear;
  color: #333;
}
nav #nav-header .link a {
  color: #333;
}
@media screen and (max-width: 500px) {
  nav #nav-header .link {
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin: 0px 0px;
    height: 40px;
  }
  nav #nav-header .link a .text, nav #nav-header .link a .icon {
    color: #222 !important;
  }
  nav #nav-header .link:nth-child(1) {
    background-color: #6abdca;
  }
  nav #nav-header .link:nth-child(2) {
    background-color: #64b986;
  }
  nav #nav-header .link:nth-child(3) {
    background-color: #eab840;
  }
  nav #nav-header .link:nth-child(4) {
    background-color: #ee725d;
  }
}
nav #nav-header .link a.info {
  padding-left: 5px;
  color: #eab840;
}
nav #nav-header .link a.info:hover {
  color: #111;
}
@media screen and (max-width: 650px) {
  nav #nav-header .link {
    font-size: 12px;
  }
  nav #nav-header .link .hide {
    display: none;
  }
}
nav #nav-header .link .icon {
  padding-right: 5px;
}
nav #nav-header .link:nth-child(4) .icon {
  color: #6abdca;
}
nav #nav-header .link:nth-child(3) .icon {
  color: #64b986;
}
nav #nav-header .link:nth-child(2) .icon {
  color: #eab840;
}
nav #nav-header .link:nth-child(1) .icon {
  color: #ee725d;
}
nav #nav-header .link:hover:nth-child(4) .text {
  border-top: 2px solid #6abdca;
  border-bottom: 2px solid #6abdca;
}
nav #nav-header .link:hover:nth-child(3) .text {
  border-top: 2px solid #64b986;
  border-bottom: 2px solid #64b986;
}
nav #nav-header .link:hover:nth-child(2) .text {
  border-top: 2px solid #eab840;
  border-bottom: 2px solid #eab840;
}
nav #nav-header .link:hover:nth-child(1) .text {
  border-top: 2px solid #ee725d;
  border-bottom: 2px solid #ee725d;
}

.event-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  min-width: 250px;
  flex: 1 1 0;
}
.event-container .title {
  font-family: "Playfair Display", serif;
  color: #888;
  font-size: 20px;
  padding: 10px;
}
.event-container .events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .event-container .title {
    font-size: 14px;
  }
  .event-container .events {
    display: block;
    width: 100vw;
    white-space: nowrap;
    overflow-x: auto;
  }
}

.event {
  flex-grow: 1;
  margin: 5px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  overflow: hidden;
  min-width: 150px;
  min-height: 200px;
  max-width: 200px;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .event {
    padding: 5px;
    font-size: 14px;
    min-width: 125px;
    display: inline-flex;
  }
}
.event .date {
  display: flex;
  flex-direction: row;
}
.event .date .part {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event .date .part.dash {
  align-self: center;
  padding: 5px;
}
.event .date .part .day {
  font-size: 40px;
  font-weight: 600;
}
.event .date .part .month, .event .date .part .weekday {
  font-size: 14px;
}
.event .divider {
  width: 100%;
  height: 1px;
  background-color: #6abdca;
  margin: 5px 0;
}
.event .time {
  font-size: 14px;
}
.event .title {
  color: #333;
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  word-break: break-word;
}
.event:hover .title {
  text-decoration: underline;
}

@keyframes swing {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}
section.nav-groups .groups .link.leseclub {
  border: 10px solid rgba(0, 0, 0, 0);
  max-width: 175px;
  background-image: url("/user/themes/gse-theme/images/erna_leseturm.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column-reverse;
}
@media screen and (max-width: 850px) {
  section.nav-groups .groups .link.leseclub {
    max-width: unset;
    justify-content: center;
    min-height: 70px;
    background-position: 20px;
  }
}
section.nav-groups .groups .link.leseclub .description {
  font-family: "Playfair Display", serif;
  text-shadow: 1px 1px 2px black;
  font-size: 20px;
  display: block;
}
section.nav-groups .groups .link.leseclub .title {
  display: none;
}
section.nav-groups .groups .link.leseclub .icon {
  display: none;
  border: none;
}

body.document-default.category-leseclub .page-content {
  background-image: url("/user/themes/gse-theme/images/paper_texture.png");
  background-repeat: repeat;
  padding: 20px;
  box-shadow: 5px 5px 20px #323232;
  border-radius: 10px;
  min-height: 50vh;
}
body.document-default.category-leseclub .page-content video {
  max-width: 75vw;
  background-color: lightblue;
  border: 1px solid white;
}

main {
  max-height: 100%;
  overflow-x: hidden;
  perspective: 1px;
  perspective-origin: center top;
  transform-style: preserve-3d;
  background-color: #f4f4f4;
}

section {
  overflow: hidden;
  transform: translateZ(0);
  background-color: inherit;
  margin-top: 120px;
  background-color: #f4f4f4;
  color: #333;
  padding: 40px 80px;
}
@media screen and (max-width: 800px) {
  section {
    padding: 20px 10px;
  }
}
section img.avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100px;
  border: 1px solid #f8f8f8;
  box-shadow: 3px 3px 10px 0px #333;
}
@media screen and (max-width: 500px) {
  section img.avatar {
    width: 50px;
    height: 50px;
  }
}
section img.avatar.ootb {
  position: relative;
  left: -25px;
}
@media screen and (max-width: 500px) {
  section img.avatar.ootb {
    left: -7px;
  }
}
section table {
  margin: 10px 0;
  border-collapse: collapse;
  border-radius: 3px;
}
@media screen and (max-width: 500px) {
  section table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
section table th, section table td {
  padding: 15px;
}
@media screen and (max-width: 500px) {
  section table th, section table td {
    padding: 5px;
    font-size: 14px;
  }
}
section table thead {
  color: #f4f4f4;
  background-color: #eab840;
}
section table thead th {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 200;
}
@media screen and (max-width: 500px) {
  section table thead th {
    font-size: 14px;
  }
}
section table tbody tr {
  background-color: #bce1cb;
}
section table tbody tr:nth-child(odd) {
  background-color: #c8e7eb;
}
section table tbody tr td {
  color: #333;
}
section table tbody tr.newline {
  border-top: 3px solid white;
}
section h1, section h2, section h3, section h4, section h5 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 200;
  margin-top: 20px;
  margin-bottom: 5px;
}
section h1:first-child {
  margin-top: 5px;
}
section h2 {
  font-size: 27px;
  margin-top: 15px;
  margin-bottom: 5px;
}
section h3, section h4, section h5 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
}
section ol, section ul {
  list-style-position: inside;
}
section ol li, section ul li {
  padding-bottom: 9px;
}
section p {
  margin-bottom: 1em;
  font-spacing: 2px;
  line-height: 1.5;
}
section b {
  color: #000000;
}
section a {
  color: #888;
}
section a:hover {
  color: #333;
  text-decoration: underline;
}
section .metadata {
  color: #888;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  section .metadata {
    flex-direction: column;
  }
}
section .metadata > *:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 600px) {
  section .metadata > *:first-child {
    margin-right: 0;
  }
}
section .metadata .fill {
  flex-grow: 1;
}
section .metadata .breadcrumb {
  padding: 5px;
}
section .metadata .date {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 200;
  position: relative;
  top: -8px;
}
section .metadata a {
  color: inherit;
}
section .metadata a:hover {
  text-decoration: underline;
}
section .metadata .categories {
  padding: 5px;
}
section .metadata .categories > * {
  margin: 3px;
  padding: 3px 10px;
  border-radius: 3px;
  color: #f4f4f4;
}
section .metadata .categories > *:nth-child(1) {
  background-color: #ee725d;
}
section .metadata .categories > *:nth-child(2) {
  background-color: #eab840;
}
section .metadata .categories > *:nth-child(3) {
  background-color: #64b986;
}
section .metadata .categories > *:nth-child(4) {
  background-color: #6abdca;
}
section .divider {
  height: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
}
section .divider div {
  height: 100%;
  flex-grow: 1;
  background-color: red;
}
section .divider div:nth-child(1) {
  background-color: #6abdca;
}
section .divider div:nth-child(2) {
  background-color: #64b986;
}
section .divider div:nth-child(3) {
  background-color: #eab840;
}
section .divider div:nth-child(4) {
  background-color: #ee725d;
}
section .content-container {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  section .content-container {
    flex-direction: column-reverse;
  }
}
section .content-container.wide-documents {
  flex-direction: column-reverse;
}
section .content-container img {
  max-width: 100%;
}
section .document-container {
  background-color: #ddd;
  color: #333;
  padding: 20px;
  margin: 0 20px 0 0;
  min-width: 145px;
  max-width: 145px;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
section .document-container.wide {
  flex-direction: row;
  min-width: initial;
  max-width: initial;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
}
section .document-container.wide .pdf-element {
  margin: 0 5px;
}
section .document-container.wide .title {
  display: none;
}
@media screen and (max-width: 800px) {
  section .document-container {
    flex-direction: row;
    min-width: initial;
    max-width: initial;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0;
  }
  section .document-container .pdf-element {
    margin: 0 5px;
  }
}
section .document-container .title {
  font-size: 20px;
  color: #888;
}
@media screen and (max-width: 800px) {
  section .document-container .title {
    display: none;
  }
}
section .document-container .pdf-element {
  padding: 15px 0;
  max-width: 145px;
}
section .document-container .pdf-element .download-link {
  word-break: break-word;
  font-size: 14px;
  color: #333;
}
section .document-container .pdf-element .download-link:hover {
  text-decoration: underline;
}
section .document-container .pdf-item {
  cursor: pointer;
  border: 1px solid black;
  box-shadow: 3px 3px 5px #333;
  width: 105px;
  height: 150px;
  background-color: #ffffff;
  color: #ee725d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
section .document-container .pdf-item .default {
  font-size: 48px;
}
section .document-container .pdf-item > * {
  display: block;
}
section .document-container .pdf-item:hover .hover {
  display: initial;
}
section .document-container .pdf-item:hover .default {
  display: none;
}
section .document-container .pdf-item .hover {
  display: none;
}

footer {
  background-color: #333;
  color: #f4f4f4;
  font-size: 14px;
  display: flex;
  padding: 60px 30px 30px 30px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
}
footer .block {
  display: flex;
  flex-direction: column;
}

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