.table-wrapper {
    overflow: visible!important; /* oder: overflow-x: auto; */
}
.auftritte td:last-child {
    word-break: break-word;
}

.auftritt-zeit {
    color: #888;
    font-size: 0.9em;
}

.auftritte a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

.auftritte a:hover {
    color: #222;
    border-bottom-color: #888;
}

.auftritte {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
    color: #444;
}

.auftritte thead tr {
    border-bottom: 1px solid #ddd;
}

.auftritte thead th {
    padding: 0 12px 10px 0;
    color: #aaa;
    font-weight: normal;
    text-align: left;
}

.auftritte tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.auftritte tbody td {
    padding: 10px 12px 10px 8px;
    vertical-align: top;
    line-height: 1.5;
}

/* Ort: kompakt, leicht gedimmt */
.auftritte tbody td:first-child {
    white-space: nowrap;
    color: #777;
}

/* Datum: kompakt, no-wrap */
.auftritte tbody td:nth-child(2) {
    white-space: nowrap;
    color: #555;
}





/* Variablen für konsistente Farben und Abstände */
:root {
  --primary-color: #cd4f4f;
  --text-color: #000;
  --heading-color: #616161;
  --light-gray: #a7a7a7;
  --border-color: rgba(144, 144, 144, 0.25);
  --bg-light-gray: rgba(144, 144, 144, 0.075);
  --footer-bg: #292929;
  --footer-text: #a7a7a7;
  --footer-color: #ffffff;
  --standard-padding: 2em;
  --small-padding: 1em;
  --tiny-padding: 0.5em;
  --grid-gutter: 2em;
}

.margin-bottom-0 {
   margin-bottom:0
}

/* Schriftarten */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}

/* Basis-Reset und Box-Modell */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background: #fff;
  color: var(--text-color);
  font-family: "Plus Jakarta Sans", serif;
  font-size: 14pt;
  font-weight: 400;
  line-height: 2em;
  padding-top: 4.5em;
}

body.is-loading *, 
body.is-loading *:before, 
body.is-loading *:after {
  animation: none !important;
  transition: none !important;
}

html, body {
  overflow-x: hidden;
}

/* Typografie-Grundstile */
a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

a:hover {
  text-decoration: none;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1em;
  margin: 0 0 1em 0;
  text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

h1 .icon, h2 .icon, h3 .icon, h4 .icon, h5 .icon, h6 .icon {
  margin-right: 0.65em;
}

h2 {
  font-size: 1.75em;
  line-height: 1.5em;
}

h2.name {
  letter-spacing: 5px;
  font-size: 5em;
  color: white;
  font-weight: 600;
  margin-bottom: -0.5em;
}

h3 {
  font-size: 1.35em;
  line-height: 1.5em;
}

h4 {
  font-size: 1.1em;
  line-height: 1.5em;
}

h5 {
  font-size: 0.9em;
  line-height: 1.5em;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  border-bottom: solid 1px var(--border-color);
  margin: 3em 0;
}

hr.major {
  margin: 5em 0;
}


/* Image Frame */


 .image-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 20px 0;
}


.image-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 10px solid #ffffff;
    box-sizing: border-box;
    z-index: 1;
}

.overlay-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #000000;
    top: 15px;
    left: 15px;
    z-index: -1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ausrichtungsklassen */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Container-System */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1em;
}

/* Korrigiertes Grid-System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em;
}

/* Spaltenabstand */
.row > * {
  padding: 0 1em;
  box-sizing: border-box;
}

/* Standard-Spaltenbreiten mit besserer Nomenklatur */
.col-1 { width: 8.33333%; }
.col-2 { width: 16.66666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333%; }
.col-5 { width: 41.66666%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333%; }
.col-8 { width: 66.66666%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333%; }
.col-11 { width: 91.66666%; }
.col-12 { width: 100%; }


@media screen and (max-width: 1280px) {
  .container {
    max-width: 960px;
  }
  
  /* Neue Klassen für large-Breakpoint */
  .large-col-1 { width: 8.33333%; }
  .large-col-2 { width: 16.66666%; }
  .large-col-3 { width: 25%; }
  .large-col-4 { width: 33.33333%; }
  .large-col-5 { width: 41.66666%; }
  .large-col-6 { width: 50%; }
  .large-col-7 { width: 58.33333%; }
  .large-col-8 { width: 66.66666%; }
  .large-col-9 { width: 75%; }
  .large-col-10 { width: 83.33333%; }
  .large-col-11 { width: 91.66666%; }
  .large-col-12 { width: 100%; }
}

@media screen and (max-width: 980px) {
  .container {
    max-width: 90%;
  }
  
  /* Neue Klassen für medium-Breakpoint */
  .medium-col-1 { width: 8.33333%; }
  .medium-col-2 { width: 16.66666%; }
  .medium-col-3 { width: 25%; }
  .medium-col-4 { width: 33.33333%; }
  .medium-col-5 { width: 41.66666%; }
  .medium-col-6 { width: 50%; }
  .medium-col-7 { width: 58.33333%; }
  .medium-col-8 { width: 66.66666%; }
  .medium-col-9 { width: 75%; }
  .medium-col-10 { width: 83.33333%; }
  .medium-col-11 { width: 91.66666%; }
  .medium-col-12 { width: 100%; }
  
}

@media screen and (max-width: 736px) {
  /* Neue Klassen für small-Breakpoint */
  .small-col-1 { width: 8.33333%; }
  .small-col-2 { width: 16.66666%; }
  .small-col-3 { width: 25%; }
  .small-col-4 { width: 33.33333%; }
  .small-col-5 { width: 41.66666%; }
  .small-col-6 { width: 50%; }
  .small-col-7 { width: 58.33333%; }
  .small-col-8 { width: 66.66666%; }
  .small-col-9 { width: 75%; }
  .small-col-10 { width: 83.33333%; }
  .small-col-11 { width: 91.66666%; }
  .small-col-12 { width: 100%; }
}


/* Sektionsformatierung */
section.special, 
header.special, 
article.special {
  text-align: center;
}

header p {
  color: var(--light-gray);
  letter-spacing: 0.11em;
  position: relative;
  margin: 0 0 1.5em 0;
}

header h2 + p {
  font-size: 1.25em;
  margin-top: -1em;
  line-height: 1.75em;
}

header h3 + p {
  font-size: 1.1em;
  margin-top: -0.8em;
  line-height: 1.75em;
}

header h4 + p,
header h5 + p,
header h6 + p {
  font-size: 0.9em;
  margin-top: -0.6em;
  line-height: 1.5em;
}

header.major {
  margin: 0 0 1.5em 0;
  text-transform: uppercase;
}

header.major h2, 
header.major h3, 
header.major h4, 
header.major h5, 
header.major h6 {
  margin: 0;
}

header.major p {
  color: var(--heading-color);
  margin: 0.5em 0 0 0;
}

header.major:after {
  background-color: #888;
  content: '';
  display: inline-block;
  height: 1px;
  margin: 2em 0 0 0;
  position: relative;
  width: 5em;
}

/* Box-Stile */
.box {
  border-radius: 4px;
  border: solid 1px var(--border-color);
  margin-bottom: 2em;
  padding: 1.5em;
}

.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}

.box.alt {
  border: 0;
  border-radius: 0;
  padding: 0;
}

/* Icon-Stile */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.icon > .label {
  display: none;
}

/* Bild-Stile */
.image {
  border-radius: 4px;
  border: 0;
  display: inline-block;
  position: relative;
}

.image img {
  border-radius: 4px;
  display: block;
}

.image.left {
  float: left;
  padding: 0 1.5em 1em 0;
  max-width: 40%;
}

.image.right {
  float: right;
  padding: 0 0 1em 1.5em;
  top: 0.25em;
  max-width: 40%;
}

.image.left img, 
.image.right img {
  width: 100%;
}

.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}

.image.fit img {
  width: 100%;
}

.image.rounded img {
  border-radius: 100%;
}

/* Listen-Stile */
ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.alt {
  list-style: none;
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px var(--border-color);
  padding: 0.5em 0;
}

ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0 1em 0 0;
}

ul.icons li:last-child {
  padding-right: 0;
}

ul.icons li .icon:before {
  font-size: 2em;
}

ul.labeled-icons {
  list-style: none !important;
  padding-left: 0;
}

ul.labeled-icons li {
  margin-bottom: 0.5em;
  padding-left: 2em;
  position: relative;
}

ul.labeled-icons .icon {
  cursor: default;
  display: block;
  font-size: 1.2em;
  left: 0;
  line-height: 1.8em;
  position: absolute;
  top: 0;
}

ul.actions {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.actions li {
  display: inline-block;
  padding: 0 1em 0 0;
  vertical-align: middle;
}

ul.actions li:last-child {
  padding-right: 0;
}

ul.updates {
  list-style: none;
  padding-left: 0;
}

ul.updates li {
  margin-top: 2em;
  padding-left: 0;
}

ul.updates li:first-child {
  margin-top: 0;
}

ul.updates p {
  margin: 0;
}

ul.updates a {
  display: block;
}

ul.updates .timestamp {
  color: rgba(255, 255, 255, 0.25);
  display: block;
  font-size: 0.9em;
  margin-top: 0.25em;
}

/* Timeline-Komponente */
.timeline {
  max-width: 800px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 75px 20px 1fr;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-item-first {
  display: grid;
  grid-template-columns: 75px 20px 1fr;
  gap: 16px;
  margin-bottom: 8px;
  position: relative;
}

.year-tag {
  color: #371;
  padding-bottom: 30px;
  margin-top: 2px;
  border-radius: 14px;
  font-size: 12px;
  display: inline-block;
  text-align: right;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.timeline-line {
  position: absolute;
  left: 96px;
  top: 23px;
  bottom: -44px;
  width: 2px;
  background-color: #000;
}

.timeline-line-first {
  position: absolute;
  left: 96px;
  top: 23px;
  bottom: -20px;
  width: 2px;
  background-color: #000;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content {
  padding-top: 2px;
}

.timeline-title {
  font-weight: 500;
  margin: 0 0 8px 0;
}

.timeline-description {
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Wrapper-Stile */
.wrapper {
  padding: 8em 0 6em 0;
}

.wrapper.style1 + .wrapper.style1 {
  border-top: 1px solid var(--border-color);
}

/* Header-Komponente */
#header {
  background-color: #fff;
  border-bottom: solid 1px var(--border-color);
  box-shadow: 0px 0.0375em 0.125em 0px rgba(0, 0, 0, 0.05);
  color: #fff;
  cursor: default;
  height: 4.5em;
  letter-spacing: 0.11em;
  line-height: 4.6em;
  position: fixed;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  z-index: 10000;
}

#header h2 {
  color: var(--heading-color);
  height: inherit;
  left: 1.25em;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
}

#header h2 a {
  font-size: 1.25em;
}

#header p {
  display: none;
}

#header nav {
  height: inherit;
  line-height: inherit;
  position: absolute;
  right: 1.25em;
  top: 0;
  vertical-align: middle;
}

#header nav > ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#header nav > ul > li {
  border-radius: 4px;
  display: inline-block;
  margin-left: 1.75em;
  padding-left: 0;
}

#header nav > ul > li a {
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  color: var(--heading-color);
  text-decoration: none;
}

#header nav > ul > li:first-child {
  margin-left: 0;
}

#header nav > ul > li .button {
  height: 2.9em;
  line-height: 2.9em;
  margin-bottom: 0;
  padding: 0 1.4em;
  position: relative;
  top: -0.075em;
  vertical-align: middle;
}

#header nav > ul > li > ul {
  display: none;
}

#header .container {
  position: relative;
}

#header .container h1 {
  left: 0;
}

#header .container nav {
  right: 0;
}

#header.alt {
  border-bottom: 0;
  box-shadow: none;
  height: auto;
  padding: 1.5em 0 5em 0;
  position: static;
  text-align: center;
}

#header.alt h1 {
  font-size: 1.75em;
  left: 0;
  letter-spacing: 0.11em;
  line-height: 1.5em;
  margin: 0;
  position: relative;
}

#header.alt h1 a {
  font-size: 1em;
}

#header.alt p {
  color: var(--heading-color);
  display: block;
  line-height: 1.5em;
  margin: 1em 0 0 0;
}

#header.alt nav {
  left: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

#header.alt nav li {
  margin: 0 1.25em;
}

#header.alt nav li:first-child {
  margin-left: 2em;
}

/* Dropdown-Menü */
.dropotron {
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px var(--border-color);
  box-shadow: 0px 0.0375em 0.125em 0px rgba(0, 0, 0, 0.05);
  list-style: none;
  margin: -0.75em 0 0 0;
  min-width: 12em;
  padding: 0.75em 1em;
}

.dropotron > li {
  border-top: solid 1px var(--border-color);
  padding: 0;
}

.dropotron > li a {
  color: var(--heading-color);
  display: block;
  font-size: 0.8em;
  letter-spacing: 0.11em;
  line-height: 2.75em;
  text-decoration: none;
  text-transform: uppercase;
}

.dropotron > li:first-child {
  border-top: 0;
}

.dropotron.level-0 {
  margin: 1.5em 0 0 0;
}

.dropotron.level-0:before {
  transform: rotate(45deg);
  background: #fff;
  border-color: var(--border-color);
  border-style: solid;
  border-width: 0;
  border-left-width: 1px;
  border-top-width: 1px;
  content: '';
  display: block;
  height: 1em;
  position: absolute;
  right: 2em;
  top: -0.5em;
  width: 1em;
}

body.landing .dropotron.level-0 {
  margin: 0;
}

body.landing .dropotron.level-0:before {
  left: 50%;
  margin-left: -0.5em;
}

/* Banner-Komponente */
#banner {
  min-height: 40em;
  margin-top: -6.5em;
  padding: 11em 0 8em 0;
  background-attachment: scroll;
  background-image: url("../../images/banner.webp");
  background-position: center center;
  background-size: cover;
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#banner img {
  width: 20%;
  height: auto;
}

.headlines {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 1em;
}

/* Main-Bereich */
#main {
  padding: 6em 0 6em 0;
}

#main header.major {
  text-align: center;
  margin: 0 0 4em 0;
}

/* Footer-Bereich */
#footer {
  padding: 6em 0 2em 0;
  background-color: var(--footer-bg);
  color: var(--footer-text);
}

#footer h2, 
#footer h3, 
#footer h4, 
#footer h5, 
#footer h6 {
  color: var(--footer-color);
}

#footer header.major:after {
  background-color: rgba(255, 255, 255, 0.25);
}

#footer a:not(.button) {
  transition: color 0.2s ease-in-out;
  color: var(--footer-text);
  text-decoration: none;
}

#footer a:not(.button):active, 
#footer a:not(.button):hover {
  color: var(--footer-color);
}

#footer .button {
  color: var(--footer-color) !important;
}

#footer .icon {
  color: var(--footer-color);
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9em;
  margin: 5em 0 0 0;
  padding: 0;
  text-align: center;
}

#footer .copyright li {
  border-left: solid 1px var(--border-color);
  display: inline-block;
  list-style: none;
  margin-left: 1.5em;
  padding-left: 1.5em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

/* Sonstige Hilfsklassen */
.archiv {
  font-size: small;
}

.archiv td {
  padding: 0.25em 0.25em;
}

iframe.soundcloud {
  width: 100%;
  height: 510px;
}

span.smaller {
  font-size: smaller;
}

span.green {
  color: #336600;
}

a.friends {
  color: #888;
  text-decoration: none;
  border-bottom: 1px dotted;
}

a.friends:hover {
  color: #888;
  text-decoration: none;
  border: none;
}

section#two {
  margin-bottom: -5em;
}

/* Responsive Anpassungen */
@media screen and (max-width: 1680px) {
  body, select, textarea {
    font-size: 11pt;
  }
  
  #header.alt {
    padding: 2.5em 0 3.5em 0;
  }
  
  #header.alt p {
    margin: 0.75em 0 0 0;
  }
  
  #banner {
    padding: 8em 0 5em 0;
  }
}

@media screen and (max-width: 1280px) {
  h2 {
    font-size: 1.5em;
  }
  
  h3 {
    font-size: 1.25em;
  }
  
  h4 {
    font-size: 1em;
  }
  
  header h2 + p {
    font-size: 1em;
  }
  
  header h3 + p {
    font-size: 1em;
  }
  
  .feature {
    margin-top: 4em;
    padding-top: 6em;
  }
  
  .wrapper {
    padding: 6em 0 4em 0;
  }
  
  #header {
    height: 3.85em;
    line-height: 3.85em;
  }
  
  #header h1 a {
    font-size: 1em;
  }
  
  #header nav > ul > li a {
    font-size: 0.8em;
  }
  
  #header.alt h1 {
    font-size: 1.5em;
  }
  
  #banner {
    padding: 7em 0 4em 0;
  }
  
  #banner h2 {
    font-size: 2.5em;
  }
  
  #banner p {
    font-size: 1em;
  }
  
  #main {
    padding: 4em 0 4em 0;
  }
  
  #footer {
    padding: 6em 0 4em 0;
  }
}

@media screen and (max-width: 980px) {
  .feature {
    text-align: left;
  }
  
  .feature .image {
    margin: 0 auto 4em auto;
    max-width: 100%;
    width: 22em;
  }
  
  #main {
    padding: 4em 0 4em 0;
  }
  
  .mobile_display_none {display:none!important}

}

@media screen and (max-width: 736px) {

  body {
    padding-top: 44px;
    font-size: 14pt; /* statt 12pt für bessere Lesbarkeit */
    line-height: 1.6;
  }  
  
  h2 {
    font-size: 1.25em;
  }
  
  h3 {
    font-size: 1em;
  }
  
  h2.name {
    font-size: 3em;
  }
  
  h2.first {
    margin-top: 2.5em;
  }
  
  .feature {
    margin-top: 2em;
    padding-top: 3em;
  }
  
  .feature .image {
    margin: 0 auto 3em auto;
    width: 16em;
  }
  
  .wrapper {
    padding: 4em 0 2em 0; /* etwas mehr Abstand */
  }
  
  #navPanel, #titleBar {
    display: block;
  }
  
  #header {
    display: none;
  }
  
  #banner {
    padding: 5em 3em 2em 3em;
    background-attachment: scroll;
  }
  
  #banner h2 {
    display: none;
  }
  
  #banner img {
    display: none;
  }
  
  #banner br {
    display: none;
  }
  
  #main {
    padding: 3em 0 1em 0;
  }
  
  #main header.major {
    margin: 0 0 2em 0;
  }
  
  #footer {
    padding: 3em 0 1em 0;
  }
  
  #footer .copyright li {
    border-left: 0;
    display: block;
    margin-left: 0;
    padding-left: 0;
  }
}

/* Off-Canvas Navigation */

#titleBar {
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: -moz-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  transition: transform 0.5s ease;
  display: block;
  height: 44px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
  background-color: #fff;
  border-bottom: solid 1px rgba(144, 144, 144, 0.25);
  box-shadow: 0 0.0375em 0.125em 0 rgba(0, 0, 0, 0.05);
  line-height: 44px;
}

  #titleBar .toggle {
    text-decoration: none;
    height: 4em;
    left: 0;
    position: absolute;
    top: 0;
    width: 6em;
    z-index: 1;
    color: inherit;
    text-decoration: none;
    outline: 0;
    border: 0;
  }

    #titleBar .toggle:before {
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-transform: none !important;
    }

    #titleBar .toggle:before {
      border-right: solid 1px rgba(144, 144, 144, 0.25);
      content: '\f0c9';
      display: block;
      height: 44px;
      left: 0;
      position: absolute;
      text-align: center;
      top: 0;
      width: 44px;
    }

  #titleBar .title {
    color: #616161;
    font-weight: 700;
    left: 0;
    letter-spacing: 0.11em;
    line-height: inherit;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 100%;
  }

    #titleBar .title a {
      color: inherit;
      text-decoration: none;
    }

#navPanel {
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform: translateX(-275px);
  -webkit-transform: translateX(-275px);
  -ms-transform: translateX(-275px);
  transform: translateX(-275px);
  -moz-transition: -moz-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  transition: transform 0.5s ease;
  display: block;
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 275px;
  z-index: 10002;
  background-color: rgba(255, 255, 255, 0.975);
  border-right: solid 1px rgba(144, 144, 144, 0.25);
  box-shadow: 0.0375em 0 0.5em 0px rgba(0, 0, 0, 0.075);
  padding: 0.5em 1.5em;
}

  #navPanel .link {
    border: 0;
    border-top: solid 1px rgba(144, 144, 144, 0.2);
    color: #616161 !important;
    display: block;
    font-size: 0.8em;
    height: 4em;
    letter-spacing: 0.11em;
    line-height: 4em;
    text-decoration: none;
    text-transform: uppercase;
  }

    #navPanel .link:first-child {
      border-top: 0;
    }

    #navPanel .link.depth-0 {
      font-weight: 700;
    }

    #navPanel .link .indent-1 {
      display: inline-block;
      width: 1.25em;
    }

    #navPanel .link .indent-2 {
      display: inline-block;
      width: 2.5em;
    }

    #navPanel .link .indent-3 {
      display: inline-block;
      width: 3.75em;
    }

    #navPanel .link .indent-4 {
      display: inline-block;
      width: 5em;
    }

    #navPanel .link .indent-5 {
      display: inline-block;
      width: 6.25em;
    }

body.navPanel-visible #navPanel {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* Mobile Navigation für kleine Bildschirme anzeigen */
@media screen and (max-width: 736px) {
  #navPanel, #titleBar {
    display: block;
  }
}

/* Mobile Navigation für größere Bildschirme ausblenden */
@media screen and (min-width: 737px) {
  #navPanel, #titleBar {
    display: none;
  }
}


@media screen and (max-width: 480px) {
  html, body {
    min-width: 320px;
  }
  
  body, select, textarea {
    font-size: 12pt;
  }
  
  ul li {
    list-style-type: none !important;
  }
  
  ul.actions {
    margin: 0 0 2em 0;
  }
  
  ul.actions li {
    display: block;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }
  
  ul.actions li:first-child {
    padding-top: 0;
  }
  
  ul.actions li > * {
    margin: 0 !important;
    width: 100%;
  }
  
  .feature .image {
    width: 14em;
  }

}

/* Keyframe Animationen */
@keyframes spinner-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}