[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;
}

html, body {
  background-color: #6abdca;
}

nav {
  background-color: #6abdca;
  padding: 10px;
  color: #f0f0f0;
  border-bottom: 1px solid #404040;
}
nav a {
  color: inherit;
}

header {
  height: 30vh;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #404040;
  background-color: #f0f0f0;
}
header .logo {
  width: 100%;
  height: 100%;
  background: url(/user/themes/gse-theme/images/foerderverein_logo.svg) no-repeat center;
  background-size: contain;
}

main {
  background-color: #f4f4f4;
}
main section h1 {
  font-size: 24px;
}
main section .center-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
main section .center-content img {
  width: 300px;
  max-width: 75vw;
}
main section .card-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-around;
}
main section .card-container .card {
  max-width: 350px;
  background-color: #ffffff;
  border: 1px solid #404040;
  border-radius: 5px;
  padding: 20px;
  border-top-width: 8px;
}
main section .card-container .card:nth-child(4n+1) {
  border-top-color: #ee725d;
}
main section .card-container .card:nth-child(4n+2) {
  border-top-color: #eab840;
}
main section .card-container .card:nth-child(4n+3) {
  border-top-color: #64b986;
}
main section .card-container .card:nth-child(4n+4) {
  border-top-color: #6abdca;
}
main section .card-container .card h1 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.5lh;
}

section {
  background-color: inherit;
  background-color: #f4f4f4;
  color: #333;
  padding: 40px 80px;
}
@media screen and (max-width: 800px) {
  section {
    padding: 20px 10px;
  }
}
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 .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=ff_default.css.map */
