* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
  background-color: #000;
}

/*FONTS*/
/***************************************/

@font-face {
  font-family: 'PSG Grotesk 24 Screen VF';
  src: url('assets/fonts/PSGGrotesk24/vFont/PSGGrotesk24Screen-VF.woff2') format('woff2-variations'),
  url('assets/fonts/PSGGrotesk24/vFont/PSGGrotesk24Screen-VF.woff') format('woff-variations');
  font-weight: 30 200;
  font-stretch: 5% 400%;
  text-rendering: optimizeLegibility;
}

/* Variable instances */
.psg-grotesk-24-screen-vf-light {
  font-variation-settings: "wght" 50, "wdth" 230;
}

.psg-grotesk-24-screen-vf-regular {
  font-variation-settings: "wght" 95, "wdth" 230;
}

.psg-grotesk-24-screen-vf-black {
  font-variation-settings: "wght" 200, "wdth" 230;
}

.psg-grotesk-24-screen-vf-wide {
  font-variation-settings: "wght" 83, "wdth" 330;
}

.psg-grotesk-24-screen-vf-narrow {
  font-variation-settings: "wght" 95, "wdth" 60;
}

:root {
  --psg-grotesk-24-screen-vf-light: "wght" 50, "wdth" 230;
  --psg-grotesk-24-screen-vf-regular: "wght" 95, "wdth" 230;
  --psg-grotesk-24-screen-vf-black: "wght" 200, "wdth" 230;
  --psg-grotesk-24-screen-vf-wide: "wght" 83, "wdth" 330;
  --psg-grotesk-24-screen-vf-narrow: "wght" 190, "wdth" 20;
  --psg-grotesk-24-screen-vf-super-narrow: "wght" 140, "wdth" 10;
  --psg-grotesk-24-screen-vf-super-xl-narrow: "wght" 110, "wdth" 10;

  --neongreen: #C7FF18;
}


@font-face {
  font-family: 'PSG Grotesk Regular';
  src: url('assets/fonts/PSGGrotesk24Mono-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PSG Grotesk Narrow office';
  src: url('assets/fonts/PSGGroteskNarrowOfficeBold_1066272553.ttf');
  font-weight: Bold;
  font-style: normal;
}

@font-face {
  font-family: 'PSG Grotesk 24 HeadScreen';
  src: url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Light.woff2') format('woff2'),
  url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Light.woff') format('woff');
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'PSG Grotesk 24 HeadScreen';
  src: url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Regular.woff2') format('woff2'),
  url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Regular.woff') format('woff');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'PSG Grotesk 24 HeadScreen';
  src: url('assets/fonts/PSGGrotesk24/PSGGrotesk24HeadScreen-Black.woff2') format('woff2'),
  url('assets/fonts//PSGGrotesk24/PSGGrotesk24HeadScreen-Black.woff') format('woff');
  font-style: normal;
  font-weight: 600;
  text-rendering: optimizeLegibility;
}

/* ********* Main Definitions *********  */


body {
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  line-height: normal;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-regular);
  overflow-x: hidden;
  /*-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;*/
}

/* Colors */
.neongreen {
  color: #C7FF18;
}

/* Remove Headline bold (Safari VF bug) */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}


.nav {
  font-size: 1em;
  position: fixed;
  top: 6vh;
  right: 2vw;
  z-index: 99999;
}

.nav-item {
  background-color: var(--neongreen);
  font-size: 2.4em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-narrow);
  padding: 0 20px;
  line-height: normal;
  padding-top: .2em;
  padding-bottom: .15em;
  margin-left: .5em;
  transition: .6s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-item:hover {
  background-color: #fff;
}

.flex,
.nav-item label {
  display: flex;
}

.round-img {
  border-radius: 50%;
}

.full-width {
  width: 100%;
}

.half-width {
  width: 50vw;
}

.twotothree-width {
  width: 63vw;
}

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

.pointer {
  cursor: pointer;
}

.bg-trans {
  background-color: transparent !important;
}

/* MOBILE STYLES */

@keyframes zittern {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  5% {
    transform: translate(12px, -8px) rotate(3deg) scale(1.05);
  }
  15% {
    transform: translate(-15px, 10px) rotate(-4deg) scale(0.95);
  }
  25% {
    transform: translate(8px, -14px) rotate(6deg) scale(1.1);
  }
  35% {
    transform: translate(-18px, 6px) rotate(-5deg) scale(1.02);
  }
  45% {
    transform: translate(14px, 18px) rotate(8deg) scale(0.9);
  }
  55% {
    transform: translate(-10px, -12px) rotate(-7deg) scale(1.08);
  }
  65% {
    transform: translate(20px, -6px) rotate(10deg) scale(1.03);
  }
  75% {
    transform: translate(-16px, 14px) rotate(-6deg) scale(0.97);
  }
  85% {
    transform: translate(10px, -20px) rotate(12deg) scale(1.05);
  }
  95% {
    transform: translate(-12px, 8px) rotate(-9deg) scale(1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

.mobile-view {
  background-color: #000;
}

/* Mobile landing file goes here */

#bg-video {
  top: 0;
  left: 0;
  width: 100vw;
  object-fit: cover;
  z-index: -1;
}

article {
  color: #fff;
}

article .block p {
  font-family: 'PSG Grotesk Regular', sans-serif;
  -webkit-font-smoothing: initial;
  -moz-osx-font-smoothing: initial;
}

.m-motion-img.mmi-01 {
  transform: rotate(30deg);
  width: 41vw;
  top: 47vh;
  position: relative;
  left: 8vw;
  opacity: 0;
  transition: opacity 2s;
}

.m-motion-img.mmi-02 {
  transform: rotate(-50deg);
  width: 23vw;
  top: 32vh;
  position: relative;
  left: 33vw;
  opacity: 0;
  transition: opacity 2s;
}

.sml-mobile-img {
  width: 20vw;
  margin-right: 5vw;
}

.md-mobile-img {
  margin-right: 2.5vw;
}

.mobile-v-spacer {
  margin: 3vh 0;
}

.white-box .bouncer {
padding: 1.9em 1.2em;
  background-color: #fff;
  color: #000;
  page-break-inside: avoid;
  break-inside: avoid-column;
  display: inline-block;
}

.info-box .bouncer {
  page-break-inside: avoid;
  break-inside: avoid-column;
  display: inline-block;
}

.info-box .bouncer .white-box {
padding: 1.9em 1.2em;
}


.white-box p {
  font-family: 'PSG Grotesk Regular', sans-serif;
  font-size: 1.25em;
}


.video-box {
  margin-top: 1em;
}

.video-box video {
  width: 100%;
  position: relative;
}

.logo-box {
  padding: 1.9em 1.2em;
  margin: 6em 0;
}

.logo-box img {
  position: relative;
  width: 100%;
}

#el-footer {
  transform: scale(0.5);
}


.boxlink {
  text-decoration: none;
  border: 1px solid black;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  color: black;
  font-size: 1.5em;
  padding: .05em .35em;
  display: inline-block;
}

.sml-label {
  font-size: 1.2em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  padding: .1em .5em;
  background-color: #C7FF18;
  color: #000;
  display: inline-block;
}

.flex.align-center.md-spacer-b .sml-label {
  font-size: 1.5em;
}

.block h1 {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  line-height: .85em;
  font-size: 3em;
}

.date h1 {
	color: #fff;
    font-size: 3.5em;
    text-transform: uppercase;
    font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
    font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
    text-align: left;
    margin: .3em 0;
}

.image-box {
	display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    background: #fff;
}

.image-box > img {
  display: block;
}

.image-box > .block {
  width: 30vw;
  padding-bottom: 30px;
}


.info-box > .block h1,
.image-box > .block h1 {
  font-size: 2.6em;
}

.info-box > .block.timetable h1 {
  font-size: 3em;
}

.block h2 {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: "wght" 80, "wdth" 10;
  text-align: left;
  line-height: .85em;
  font-size: 2.5em;
}

.box-frame {
  margin-top: .7em;
  margin-bottom: 1em;
}

.mobile-border-box {
  border: 1px solid black;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  font-size: 1.5em;
  padding: .05em .35em;
  display: inline-block;
  margin-left: .5em;
}

.mobile-color-box {
  background-color: #C7FF18;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  color: black;
  font-size: 1.5em;
  padding: .05em .35em;
  display: inline-block;
}

.image-box .white-box {
  padding-top: 1.1em;
}

.blue-box {
  background-color: #0000FF;
  color: #fff;
}

/*
.green-box {
  background-color: #C7FF18 !important;
  color: #000 !important;
}

.green-box .mobile-border-box {
  border: 1px solid black !important;
  color: #000 !important;
}
*/

.blue-box .mobile-border-box {
  border: 1px solid white;
  color: #fff;
}

.ticket-block .mobile-color-box {
  width: 100%;
  text-align: center;
  font-size: 4.1em;
  padding: 0;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: "wght" 180, "wdth" 30;
}

.ticket-block h2 {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
  text-align: left;
  font-size: 2.7em;
  margin: .5em 0;
}

/* Mobile Menu toggle */

.toggle-wrapper {
  position: fixed;
  z-index: 10;
}

.toggle-wrapper input[type="checkbox"] {
  display: none;
}

.toggle-label {
  display: inline-block;
  width: 120px;
  height: 24px;
  overflow: hidden;
  background: #C7FF18;
  color: #000;
  font-family: sans-serif;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 16px 0;
  z-index: 20;
  margin-top: 5vh;
}

.toggle-label .text-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.toggle-label .text-container span {
  height: 1em;
  line-height: .5em;
  display: inline-block;
  margin-bottom: .1em;
}

.toggle-wrapper input[type="checkbox"]:checked + .toggle-label .text-container {
  transform: translateY(-50%);
}

.toggle-content {
  overflow: hidden;
  position: absolute;
  width: 100vw;
  transition: opacity 0.3s ease;
  opacity: 0;
  background: #fff;
  color: #000;
  top: 0;
  left: 0;
  z-index: 10;
  height: 1px;
}

.toggle-wrapper input[type="checkbox"]:checked ~ .toggle-content {
  opacity: 1;
  height: 100vh;
}

.toggle-label .text-container {
  font-size: 3em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-xl-narrow);
}

.mobile-spacer {
  display: block;
  margin-top: 6.5em;
}

.x-sml-spacer-t {
  margin-top: .2em;
}

.sml-spacer-t {
  margin-top: .6em;
}

.md-spacer-t {
  margin-top: 1.5em;
}

.xl2-spacer-t {
  margin-top: 7em;
}

.x-sml-spacer-b {
  margin-bottom: .2em;
}

.sml-spacer-b {
  margin-bottom: .6em;
}

.md-spacer-b {
  margin-bottom: 1.5em;
}

.sticky-top {
  position: sticky;
  top: 0;
}

.mobile-navpoints {
  color: #000;
  font-size: 4.3em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-xl-narrow);
  text-decoration: none;
  margin-left: 2.1em;
  line-height: 1.2em;
}

.mobile-nav-logo-img-frame {
  position: absolute;
  bottom: 3vh;
  display: flex;
  justify-content: center;
  width: 100vw;
}

.mobile-nav-logo-img {
  width: 30vw;
}

.mobile-nav-fp-img {
  width: 100vw;
  position: absolute;
  bottom: 3em;
  left: 0;
}

/* DESKTOP STYLES */

.fp-logo {
  height: 130px;
  display: inline-block;
  z-index: 1;
  mix-blend-mode: difference;
}

.fp-logo img {
	height: 140px;
    margin-top: 20px;
    margin-left: 40px;
}

.sp-width-img01 {
  width: 170px;
}

/* GENERAL STYLES */

.visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

h1 {
  text-align: center;
}

h1, h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.hamburger {
  margin: 0 auto;
  margin-top: 12px;
  width: 30px;
  height: 24px;
  position: relative;
  margin-left: .5em;
}

.hamburger .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: #000;
  display: block;
  transition: all 0.4s ease-in-out;
  position: absolute;
}

.bar1 {
  top: 0;
}

.bar2,
.bar3 {
  top: 10px;
}

.bar3 {
  right: 0;
}

.bar4 {
  bottom: 0;
}

.pre-headline {
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-narrow);
}

.footer {
  display: flex;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  justify-content: space-between;
  max-width: 1360px;
  padding: 0 20px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-left a {
  color: white;
  text-transform: uppercase;
  font-family: 'PSG Grotesk Regular', sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.footer-right {
  width: 400px;
  display: flex;
  justify-content: space-between;
}

.footer-right .logo-1 {
  width: 150px;
}

.footer-right .logo-2 {
  width: 200px;
}

/* Das Menü oben */

#mainNav {
opacity: 0;
}

.wrap-menu {
  transition: transform 0.8s ease, width 0.8s ease;
}

/* Menü sichtbar */
.slideDown {
  transform: translateY(0);
  width: 286px;
}

/* Menü nach unten raus */
.slideUp {
  transform:translateY(100vh) rotate(45deg);
  width: 1px;
  margin-left: 0;
}



.nav-ticket {
  transition: transform .8s ease;
}

/* Menü sichtbar 2 */
.slideDown-Ticket {
  transform: translateY(0);
}

/* Menü nach unten raus 2 */
.slideUp-Ticket {
  transform:translateY(120vh) rotate(-45deg);
}



/* HAMBURGER def */

.hamburger3 .bar1 {
  transform-origin: 5%;
}

.hamburger3 .bar4 {
  transform-origin: 5%;
}

.checkbox3:checked + label > .hamburger3 > .bar1 {
  transform: rotate(45deg);
  height: 5px;
  width: 31px;
}

.checkbox3:checked + label > .hamburger3 > .bar3 {
  transform: rotate(45deg);
  height: 5px;
  background-color: transparent;
}

.checkbox3:checked + label > .hamburger3 > .bar2 {
  transform: rotate(-45deg);
  height: 5px;
  background-color: transparent;
}

.checkbox3:checked + label > .hamburger3 > .bar4 {
  transform: rotate(-45deg);
  height: 5px;
  width: 31px;
}


/* Chrome, Safari, Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  /*display: none;*/
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-size: 20rem;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-narrow);
  opacity: 1;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

#loading-screen.hide {
  opacity: 0;
}

#loading-screen p {
  animation: smallRotate 4s ease-out alternate;
}


@keyframes smallRotate {
  0% {
    transform: translateY(-100px) rotate(15deg);
  }
  100% {
    transform: translateY(700px) rotate(-25deg);
  }
}

.menu {
  width: 325px;
  font-size: 1rem;
  position: fixed;
  top: calc(6vh + 60px);
  right: 2vw;
  background: white;
  color: black;
  z-index: 99999;
}

#dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .8s ease, transform .8s ease;
}

#dropdown-menu.open {
  max-height: 550px;
}

.white {
  background-color: #fff;
}

.controls {
  margin: 20px;
}

.controls-subheadline {
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-narrow);
  font-size: 2.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.parameter {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
}

.parameter label {
  font-family: "PSG Grotesk Regular", sans-serif;
  font-size: 1.25rem;
}

canvas {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

.ticket {
  width: 90vw;
  margin: auto;
  display: inherit;
}

.ticket-text {
  color: white;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-size: 2.5em;
  line-height: .9;
  font-variation-settings: "wght" 180, "wdth" 20;
  text-align: center;
  width: 640px;
  margin: 1em auto;
}

.ticket-button-bottom {
  float: initial !important;
  margin: auto;
  width: 5.2em;
  font-variation-settings: "wght" 2000, "wdth" 10;
}


.white-box-frame.timetable-frame {
column-width: unset;
}

.block.white-box.timetable {
	max-width: unset;
    width: auto;
    display: block;
}

.timetable {
padding: 1.9em 1.2em;
}
  
.block.white-box.timetable:not(.blue-box) {
background-color: #fff;
color: #000;

}

/* temporary hidden start */
#change-mode {
  display: none;
}
/* temporary hidden end */

#ticketNav,
#control-center {
float: left;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: black;
  border-radius: 10px;
  outline: none;
  margin: 10px 0;

}

/* Track hover effect */
.slider:hover {
  background: black;
}

/* Chrome, Safari, Opera - Thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C7FF18;
  cursor: pointer;
  border: black 1px solid;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Firefox - Thumb */
.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C7FF18;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Mediaqueries */
@media screen and (max-width: 640px) {
  .mobile-hidden,
  main,
  #p5-canvas-container,
  .custom-cursor,
  .nav {
    display: none;
  }

.the-venue-txt p br {
display: block !important;
}


  /* mobile styling */
  .pre-headline {
    margin-top: 4vh;
    margin-bottom: 1vh;
    font-size: 3em;
    line-height: 0.8;
  }
  
  .block h1 {
    font-size: 2.8em;
  }
  
  .effekt-text p br:not(.mobile-break) {
    display: none;
  }
  
  .md-mobile-img {
    margin-right: 3.5vw;
  }
  
  .image-box.white-box-frame {
    flex-direction: column;
    padding: 0;
    margin: 10px;
    align-items: self-start;
  }
  
  .image-box > img {
    width: 100%;
  }
  
  .image-box .white-box {
 	width: auto;
  }
  
  .image-box .white-box.venue-box {
    padding: 20px;
  }

  .white-box p {
  	font-size: 1em;
  }

  .intro-text {
    margin-bottom: 10vh;
  }
  .desktop-break {
    content: " ";
    display: none;
  }

  .mobile-view article {
    margin: 0 3vw;
  }
  .white-box-frame {
    padding: 0 10px;
  }
  .md-mobile-img {
    width: 30vw;
  }
  .sp-width-img01 {

  }
  .sp-width-img02 {
   width: 27vw !important;
  }
  .footer-right {
    width: 200px;
  }
  .footer-right .logo-1 {
    width: 80px;
  }
  .footer-right .logo-2 {
    width: 100px;
  }
 .ticket-text {
	width: 80%;
  	font-size: 2em;
 }
 .half-width.zittern {
 	width: 80vw;
 }
 .twotothree-width.zittern {
  	width: 90vw;
 }
 .mobile-margin-top {
  margin-top: 7em !important;
 }
 .mobile-margin-bottom {
  margin-bottom: 10em !important;
 } 
 margin-bottom: 10em;
  .sp-width-img01 {
  width: 120px;
 }
 .white-box .bouncer,
 .info-box .bouncer {
    margin-bottom: 20px;
 }
 .video-box-frame {
  position: static !important;
  width: 100%;
 }
 .the-venue-txt p {
  font-size: 2.2em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-narrow);
  text-align: left;
  line-height: .82em;
 }
}

.the-venue-txt p .char {
  font-size: 2.2em;
  text-transform: uppercase;
  font-family: 'PSG Grotesk 24 Screen VF', sans-serif;
  font-variation-settings: var(--psg-grotesk-24-screen-vf-super-narrow);
  text-align: left;
  line-height: .82em;
}

@media screen and (min-width: 640px) {
  .mobile-view:not(.desktop-view),
  .desktop-hidden {
    display: none;
  }
  /* desktop styling */
  
  .sp-width-img01 {
    margin-right: 2vw;
  }
  
  .venue-img {
  	display: none !important;
  }
  
  .venue-bg-img {
    background-image: url('assets/mobile/fp_venue-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 3 / 2;
    max-width: 100% !important;
    background-image: none;
    background-color: transparent;
  }
  
  .venue-box {
  background-color: white;
    margin-bottom: 10vh !important;
    margin-right: 7vw;
    padding-left: 3em;
    padding-right: 5em;
    padding-top: 1.5em !important;
  }
  
  .venue-box img {
    margin-bottom: 1em;
  }

  .mobile-break {
    content: " ";
    display: none;
  }
  article {
    margin-top: 14em;
    padding: 0 10px;
  }
  
  .half-margin-top {
    margin-top: 7em;
  }
  
  .full-margin-top {
    margin-top: 14em;
  }
  
  .half-margin-bottom {
    margin-bottom: 7em !important;
  }

  .full-margin-bottom {
    margin-bottom: 14em !important;
  }

  .pre-headline {
    font-size: 4.5em;
    line-height: .73;
    font-variation-settings: "wght" 180, "wdth" 20;
  }

  .textbox {
    max-width: 910px;
    margin: auto;
  }

  .ticket {
    margin-top: 20vh;
    max-width: 1280px;
  }
  
  .zittern:hover {
    animation: zittern 1.5s infinite linear;
  }

  .white-box {
    /*max-width: 400px;*/
    margin-bottom: 20px;
  }

  .white-box-frame {
    max-width: 1360px;
    margin: auto;
    column-width: 400px;
    column-gap: 1em;
  }

  .desktop-view article .block p {
    font-size: 1.25em;
    margin-top: 1.3em;
  }
  /* liquid-morph-element 1 */

.liquid-morph-element {
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.liquid-morph-element::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-70deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 600% 600%;
  opacity: 0;
  transform: scale(0);
  animation: gradient .4s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.liquid-morph-element:hover {
  border-radius: 50px;
  transform: rotate(15deg);
}

.liquid-morph-element:hover::before {
  opacity: 0.5;
  transform: scale(2);
}

/* liquid-morph-element 2 */

.liquid-morph-element-2 {
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.liquid-morph-element-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-70deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 600% 600%;
  opacity: 0;
  transform: scale(0);
  animation: gradient .4s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.liquid-morph-element-2:hover {
  border-radius: 50px;
  transform: rotate(-15deg);
}

.liquid-morph-element-2:hover::before {
  opacity: 0.5;
  transform: scale(2);
}
}

@media screen and (max-width: 1360px) and (min-width: 640px)  {
  .white-box-frame,
  .video-box-frame {
    max-width: unset;
    width: 1024px;
  }
}

@media screen and (min-width: 640px) {
    .white-box-frame.timetable-frame {
        max-width: unset;
        width: 1024px;
    }
}


@media screen and (max-width: 940px) {
  .desktop-xl-break {
    content: " ";
    display: none !important;
  }
}


/* ugly break-in-between setting start */
.desktop-md-break {
 content: " ";
 display: none !important;
}
  
@media screen and (max-width: 940px) and (min-width: 640px)  {
  .desktop-md-break {
    content: " ";
    display: inline !important;
  }
}
/* ugly break-in-between setting end */


.Teaser::before {  
  transform: scaleX(0);
  transform-origin: bottom right;
}

.Teaser:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.Teaser::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0 0 0 0;
  background: hsl(200 100% 80%);
  background: black;
  z-index: 0;
  transition: transform .3s ease;
  margin-bottom: -1px;
  margin-right: -1px;
}

.Teaser {
 position: relative;
}


.Teaser .box-frame,
.Teaser h1,
.Teaser h2,
.Teaser p {
  position: relative;
}


.glitch-frame {
  position: relative;
  height: 25vw;
}

.glitch-frame-2 {
  position: relative;
  height: 55vw;
  display: flex;
  justify-content: center;
}

.glitch {
  position: absolute;
  /*Animation*/
  animation: glitch1 2.5s infinite;
}


.glitch:nth-child(2) {
  color: #67f3da;
  animation: glitch2 2.5s infinite;
}

.glitch:nth-child(3) {
  color: #f16f6f;
  animation: glitch3 2.5s infinite;
}
/*Keyframes*/

@keyframes glitch1 {
  0% {
    transform: none;
    opacity: 1;
  }
  7% {
    transform: skew(-0.5deg, -0.9deg);
    opacity: 0.75;
  }
  10% {
    transform: none;
    opacity: 1;
  }
  27% {
    transform: none;
    opacity: 1;
  }
  30% {
    transform: skew(0.8deg, -0.1deg);
    opacity: 0.75;
  }
  35% {
    transform: none;
    opacity: 1;
  }
  52% {
    transform: none;
    opacity: 1;
  }
  55% {
    transform: skew(-1deg, 0.2deg);
    opacity: 0.75;
  }
  50% {
    transform: none;
    opacity: 1;
  }
  72% {
    transform: none;
    opacity: 1;
  }
  75% {
    transform: skew(0.4deg, 1deg);
    opacity: 0.75;
  }
  80% {
    transform: none;
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes glitch2 {
  0% {
    transform: none;
    opacity: 0.25;
  }
  7% {
    transform: translate(-2px, -3px);
    opacity: 0.5;
  }
  10% {
    transform: none;
    opacity: 0.25;
  }
  27% {
    transform: none;
    opacity: 0.25;
  }
  30% {
    transform: translate(-5px, -2px);
    opacity: 0.5;
  }
  35% {
    transform: none;
    opacity: 0.25;
  }
  52% {
    transform: none;
    opacity: 0.25;
  }
  55% {
    transform: translate(-5px, -1px);
    opacity: 0.5;
  }
  50% {
    transform: none;
    opacity: 0.25;
  }
  72% {
    transform: none;
    opacity: 0.25;
  }
  75% {
    transform: translate(-2px, -6px);
    opacity: 0.5;
  }
  80% {
    transform: none;
    opacity: 0.25;
  }
  100% {
    transform: none;
    opacity: 0.25;
  }
}

@keyframes glitch3 {
  0% {
    transform: none;
    opacity: 0.25;
  }
  7% {
    transform: translate(2px, 3px);
    opacity: 0.5;
  }
  10% {
    transform: none;
    opacity: 0.25;
  }
  27% {
    transform: none;
    opacity: 0.25;
  }
  30% {
    transform: translate(5px, 2px);
    opacity: 0.5;
  }
  35% {
    transform: none;
    opacity: 0.25;
  }
  52% {
    transform: none;
    opacity: 0.25;
  }
  55% {
    transform: translate(5px, 1px);
    opacity: 0.5;
  }
  50% {
    transform: none;
    opacity: 0.25;
  }
  72% {
    transform: none;
    opacity: 0.25;
  }
  75% {
    transform: translate(2px, 6px);
    opacity: 0.5;
  }
  80% {
    transform: none;
    opacity: 0.25;
  }
  100% {
    transform: none;
    opacity: 0.25;
  }
}
