<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture, video {
  max-width: 100%;
  display: block;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Fenul Compressed";
  src: url("/assets/FenulCompressed-Medium.woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  font-size: clamp(16px, 1.5vw, 30px);
  overscroll-behavior: none;
  --color: #6300db;
  --bg: #9dffa8;
  --start: #9dffa8;
  --spielplan: #fddebf;
  --team: #ffed00;
  --presse: #f9d9ed;
  --kontakt: #cff7f3;
  --padding: 36px;
}
html:has(.spielplan), html:has(.produktion) {
  --bg: var(--spielplan);
}
html:has(.team) {
  --bg: var(--team);
}
html:has(.presse) {
  --bg: var(--presse);
}
html:has(.kontakt) {
  --bg: var(--kontakt);
}
@media screen and (max-width: 699px) {
  html {
    background-color: var(--bg);
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color);
  font-family: "Fenul Compressed", serif;
  font-feature-settings: "ss04";
  line-height: 1.05;
  --cols: 2;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 0;
}
@media screen and (max-width: 699px) {
  body {
    --cols: 1;
  }
}

a {
  cursor: pointer;
}
a:link, a:visited, a:hover, a:active {
  color: inherit;
}

#skip-to-content-link {
  position: fixed;
  top: 0;
  background: black;
  color: white;
  left: 50%;
  padding: 8px;
  transform: translate(-50%, -150%);
  transition: transform 0.3s;
  z-index: 100;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
#skip-to-content-link:focus {
  transform: translate(-50%, 0);
}

.font-size-30 {
  font-size: 1rem;
  line-height: 1.05;
}

.font-size-40 {
  font-size: 1.25rem;
  line-height: 1;
}

.font-size-60 {
  font-size: 2rem;
  line-height: 0.95;
}
@media screen and (max-width: 699px) {
  .font-size-60 {
    font-size: 2.3rem;
  }
}

.font-size-75 {
  font-size: 2.5rem;
  line-height: 0.85;
}

.font-size-135, .kontakt h1, .kontakt h2 {
  font-size: 4.5rem;
  line-height: 0.85;
}
@media screen and (max-width: 699px) {
  .font-size-135, .kontakt h1, .kontakt h2 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 699px) {
  .sm-font-size-23 {
    font-size: 1.45rem;
    line-height: 1.05;
  }
}

#main-header {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  background-color: white;
}
@media (max-width: 1300px) {
  #main-header {
    grid-template-columns: 1fr 14.5ch;
  }
}
@media screen and (max-width: 699px) {
  #main-header {
    display: none;
    position: fixed;
    background-color: white;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 12vw;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
  }
  .open-nav #main-header {
    display: grid;
  }
}
#main-header .logo {
  grid-row-end: span 2;
  align-self: center;
  max-height: 100dvh;
  overflow: clip;
}
@media screen and (max-width: 699px) {
  #main-header .logo {
    grid-column-start: 1;
    grid-row: 1/span 1;
  }
}
#main-header .logo svg {
  height: 100dvh;
  max-height: 100dvh;
  max-width: 25vw;
  padding: 1rem;
  object-fit: contain;
  width: 100%;
}
@media (max-width: 1300px) {
  #main-header .logo svg {
    height: auto;
  }
}
@media screen and (max-width: 699px) {
  #main-header .logo svg {
    height: 4lh;
    padding-block: 0;
  }
}
#main-header .claim, #main-header nav {
  padding: 1rem;
}
@media screen and (max-width: 699px) {
  #main-header .claim {
    grid-column-start: 2;
    grid-row-start: 1;
  }
}
#main-header nav {
  align-self: end;
  max-height: 100%;
  overflow: auto;
}
@media screen and (max-width: 699px) {
  #main-header nav {
    grid-column: 1/-1;
    grid-row-start: 3;
    font-size: min(20vw, 90px);
  }
}
#main-header ul {
  list-style-type: "";
  padding: 0;
  margin: 0;
}
#main-header a span:nth-of-type(2) {
  left: 1.1ch;
}
#main-header a[href="/"] {
  --link-bg: var(--start);
}
#main-header a[href="/spielplan"] {
  --link-bg: var(--spielplan);
}
#main-header a[href="/team"] {
  --link-bg: var(--team);
}
#main-header a[href="/presse"] {
  --link-bg: var(--presse);
}
#main-header a[href="/tickets-kontakt"] {
  --link-bg: var(--kontakt);
}

.link-with-bg,
#main a:not(:has(svg)) {
  text-decoration: none;
  --current-bg: transparent;
}
.link-with-bg:not(:has(span)),
#main a:not(:has(svg)):not(:has(span)) {
  width: max-content;
}
.link-with-bg:has(span) span, .link-with-bg:not(:has(span)),
#main a:not(:has(svg)):has(span) span,
#main a:not(:has(svg)):not(:has(span)) {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  background: var(--current-bg);
  transition: background-color 0.1s ease-out;
}
.link-with-bg:has(span) span::after, .link-with-bg:has(span) span::before, .link-with-bg:not(:has(span))::after, .link-with-bg:not(:has(span))::before,
#main a:not(:has(svg)):has(span) span::after,
#main a:not(:has(svg)):has(span) span::before,
#main a:not(:has(svg)):not(:has(span))::after,
#main a:not(:has(svg)):not(:has(span))::before {
  content: "";
  position: absolute;
  transition: background-color 0.1s ease-out;
  top: 0;
  bottom: 0;
  z-index: -2;
  aspect-ratio: 1;
  display: block;
  background: var(--current-bg);
  clip-path: polygon(10% -50%, 150% 50%, 10% 150%, 0 50%);
}
.link-with-bg:has(span) span::after, .link-with-bg:not(:has(span))::after,
#main a:not(:has(svg)):has(span) span::after,
#main a:not(:has(svg)):not(:has(span))::after {
  right: -0.1em;
  rotate: 180deg;
}
.link-with-bg:has(span) span::before, .link-with-bg:not(:has(span))::before,
#main a:not(:has(svg)):has(span) span::before,
#main a:not(:has(svg)):not(:has(span))::before {
  left: -0.1em;
}
.link-with-bg[aria-current=page], .link-with-bg:focus, .link-with-bg:hover,
#main a:not(:has(svg))[aria-current=page],
#main a:not(:has(svg)):focus,
#main a:not(:has(svg)):hover {
  --current-bg: var(--link-bg, white);
}

#main {
  background-color: var(--bg);
  padding: 1rem;
}
#main p + p {
  margin-top: 1lh;
}
#main ul, #main ol {
  margin-block: 1lh;
}
#main ul li:not(:first-child), #main ol li:not(:first-child) {
  margin-top: 1em;
}
#main ul:last-child, #main ol:last-child {
  margin-bottom: 0;
}
#main ul {
  list-style-type: "";
}
#main ul li:not(.archiv-li) {
  position: relative;
  text-indent: 0.8em;
}
#main ul li:not(.archiv-li)::before {
  content: "●";
  display: block;
  position: absolute;
  left: -0.8em;
  top: 0;
}
#main ul li:not(.archiv-li) a {
  text-indent: 0;
}

#menu-toggle {
  display: none;
  position: fixed;
  top: 1.25rem;
  right: 1rem;
  z-index: 5;
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
  cursor: pointer;
}
#menu-toggle svg {
  height: 0.7em;
  width: auto;
  display: block;
}
#menu-toggle .close {
  display: none;
}
@media screen and (max-width: 699px) {
  #menu-toggle {
    display: block;
  }
  .open-nav #menu-toggle .close {
    display: block;
  }
  .open-nav #menu-toggle .open {
    display: none;
  }
}

.uppercase {
  text-transform: uppercase;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.textBilderBlock:not(:first-child) {
  margin-top: 1lh;
}
.textBilderBlock .images {
  width: 50%;
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
}
.textBilderBlock .images.right {
  float: right;
  margin-right: 0;
  margin-left: 1rem;
}
@media screen and (max-width: 699px) {
  .textBilderBlock .images {
    float: none;
    width: 100%;
    margin-bottom: 1lh;
  }
  .textBilderBlock .images img.portrait {
    max-width: 80%;
  }
}
.textBilderBlock .text {
  text-box: trim-start cap alphabetic;
}
.textBilderBlock + p {
  margin-top: 1lh;
}

.bilderBlock:not(:first-child) {
  margin-top: 1lh;
}
.bilderBlock:not(:last-child) {
  margin-bottom: 1lh;
}
.bilderBlock .images {
  overflow: hidden;
}

.start h1 {
  margin-bottom: 1.5rem;
}

.termine {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1em;
}
@media screen and (max-width: 699px) {
  .termine {
    grid-template-columns: auto 1fr;
  }
}
.termine h2 {
  grid-column: 1/-1;
}
.termine h2:not(:first-child) {
  margin-top: 1rem;
}
.termine h2 .linie {
  width: 100%;
  display: block;
  margin-top: 0.2em;
}
.termine .termin {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
}
.termine .termin time span {
  display: block;
}
@media screen and (max-width: 699px) {
  .termine .termin time, .termine .termin .title {
    grid-column: 1/-1;
  }
  .termine .termin time {
    display: grid;
    grid-template-columns: subgrid;
  }
}
.termine .termin a {
  position: relative;
  display: block;
}
.termine .termin .status {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  background: var(--color);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75em;
  rotate: -12deg;
  padding-inline: 0.8em;
}
@media screen and (max-width: 699px) {
  .termine .termin .status {
    translate: -50% -100%;
  }
}
.termine .termin .status::after, .termine .termin .status::before {
  content: "";
  position: absolute;
  transition: background-color 0.1s ease-out;
  top: 0;
  bottom: 0;
  z-index: -2;
  aspect-ratio: 1;
  display: block;
  background: var(--color);
  clip-path: polygon(10% -50%, 150% 50%, 10% 150%, 0 50%);
}
.termine .termin .status::after {
  right: -0.1em;
  rotate: 180deg;
}
.termine .termin .status::before {
  left: -0.1em;
}
.termine .archiv-wrapper {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
}
.termine .archiv-wrapper svg {
  grid-column: 1/-1;
  margin-top: 2rem;
  margin-bottom: 1em;
}
.termine .archiv-wrapper a {
  grid-column-start: 2;
}

.archiv #main ul li {
  margin-top: 0.2em;
}

.produktion #main {
  position: relative;
}
.produktion #main header {
  margin-bottom: 1lh;
  padding-right: 2em;
}
.produktion #main h1 {
  font-size: 1em;
}
.produktion #main .stoerer {
  width: max-content;
  padding: 0.05em 0.5em;
  font-size: 0.65em;
  letter-spacing: 0.15em;
  margin-top: 0.25em;
  color: white;
  background: var(--color);
  position: relative;
  z-index: 1;
}
.produktion #main .stoerer::after, .produktion #main .stoerer::before {
  content: "";
  position: absolute;
  transition: background-color 0.1s ease-out;
  top: 0;
  bottom: 0;
  z-index: -2;
  aspect-ratio: 1;
  display: block;
  background: var(--color);
  clip-path: polygon(10% -50%, 150% 50%, 10% 150%, 0 50%);
}
.produktion #main .stoerer::after {
  right: -0.1em;
  rotate: 180deg;
}
.produktion #main .stoerer::before {
  left: -0.1em;
}
.produktion #main .close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 4;
}
.produktion #main .close svg {
  width: 0.8em;
}
@media screen and (max-width: 699px) {
  .produktion #main .close {
    display: none;
  }
}
.produktion #main aside {
  float: right;
  width: 25ch;
  padding-left: 1em;
  padding-bottom: 1lh;
}
.produktion #main .zusammenfassung + .infos {
  margin-top: 1lh;
}
.produktion #main .ticket-infos,
.produktion #main .reservierung {
  margin-top: 1lh;
}
@media screen and (max-width: 1023px) {
  .produktion #main {
    display: flex;
    flex-direction: column;
  }
  .produktion #main aside {
    float: none;
    width: 100%;
    padding-left: 0;
    order: 3;
    margin-top: 2lh;
    margin-bottom: 0;
  }
  .produktion #main aside .ticket-infos ul {
    column-count: 2;
  }
}
@media screen and (max-width: 699px) {
  .produktion #main aside {
    font-size: 1.25rem;
  }
}

.swiper {
  --swiper-theme-color: currentColor;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-width: 0.6rem;
  --swiper-pagination-bullet-height: 0.8rem;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  font-size: 4rem;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper-pagination-bullet {
  border: 1.5px solid currentColor;
}

.team article + article {
  margin-top: 4rem;
}
.team .person h2 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 699px) {
  .team .person h2 {
    padding-right: 1em;
  }
}
.team .person .text {
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
  text-box: trim-start cap alphabetic;
}
.team .person .text:has(.credits) p:last-of-type {
  display: inline;
}
.team .person picture {
  float: left;
  padding-right: 1rem;
}
@media screen and (max-width: 699px) {
  .team .person picture {
    float: none;
    padding-right: 0;
  }
}
.team .person picture img {
  height: 5.5lh;
  width: auto;
}
@media screen and (max-width: 699px) {
  .team .person picture img {
    width: 50%;
    height: auto;
    margin-bottom: 0.6em;
  }
}
.team .person picture img.portrait {
  height: 6.5lh;
}
@media screen and (max-width: 699px) {
  .team .person picture img.portrait {
    width: 40%;
    height: auto;
  }
}

.presse h1 {
  margin-bottom: 2rem;
  hyphens: auto;
}
.presse .presse-liste {
  column-count: 2;
  column-gap: 1em;
}
@media screen and (max-width: 1023px) {
  .presse .presse-liste {
    column-count: 1;
  }
}
.presse .presse-liste .zitat {
  display: block;
}
.presse .presse-liste .zitat:not(:first-child) {
  margin-top: 1lh;
}
.presse .presse-liste .zitat q {
  quotes: "»" "«";
  display: block;
  break-inside: avoid;
  text-wrap: balance;
  text-wrap: pretty;
}
.presse .presse-liste .zitat cite {
  font-style: normal;
  padding-left: 1.25em;
}
.presse .presse-email {
  margin-top: 2lh;
}

.kontakt .tickets .preise {
  float: right;
  width: 25ch;
  padding-left: 1em;
}
@media screen and (max-width: 699px) {
  .kontakt .tickets .preise {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}
.kontakt h1, .kontakt h2 {
  margin-bottom: 2rem;
}
.kontakt section + section {
  margin-top: 4rem;
}
.kontakt section p + h2 {
  margin-top: 4rem;
}
.kontakt .logos {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 285fr 108fr 168fr 198fr;
  align-items: end;
  gap: 1.5rem;
}
.kontakt .logos img {
  width: 100%;
}
.kontakt .logos .wien-kultur,
.kontakt .logos .landstrasse,
.kontakt .logos .hunger {
  grid-row-end: span 2;
}
.kontakt .logos .wien-ticket {
  margin-left: auto;
  width: 60%;
}

.splash-screen {
  display: none;
  background-color: var(--color);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 10;
}
.splash-screen svg {
  padding: 1rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 699px) {
  .splash-screen {
    display: grid;
    animation-name: splash-screen-animation;
    animation-duration: 0.2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
}
@media screen and (max-width: 699px) {
  .no-splash-screen .splash-screen {
    display: none;
  }
}

@keyframes splash-screen-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
.credits {
  display: inline-block;
}

/*# sourceMappingURL=leo.css.map */
</pre></body></html>