/*	Author: Sascha Milivojevic (info@hey-sascha.de):
   
		------------------------------------------------------
   
		AMO v1 stylesheet
  
		----------------------------------------------------*/
		
/*	CSS Imports
  
		----------------------------------------------------
*/
@import url('fonts/fonts.css');

/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #000;
    color: #FFF;
    text-shadow: none;
}

::selection {
    color: #FFF;
    background: #000;
    text-shadow: none;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;}
    
div img, figure img {
  max-width: 100%;
  width: auto\9; /* ie8 */} 

 
/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  --font-family-body: 'Grotesk Remix Monospace';
  --magenta: #E379C4;
  --gold: #a08f6c;
  --weiss: #FFF;
  --schwarz: #000;
  --mouseover: #FFF;
  --grau: #808080;
}

.bg-magenta { background-color: var( --magenta); }
.bg-gold { background-color: var( --gold); }
.bg-grey { background-color: var( --grau); }
.bg-weiss { background-color: var( --weiss); }
.bg-schwarz { background-color: var( --schwarz); }
.gold .secondrow, .gold .firstrow { color: var( --gold);}
.weiss .secondrow, .weiss .firstrow { color: var( --weiss);}
.grey .secondrow, .grey .firstrow { color: var( --grau);}
.bg-gold p, .bg-gold div, .bg-gold h2, .bg-gold h3, .bg-schwarz .bg-gold h3 { color: var(--schwarz);}
.bg-schwarz p, .bg-schwarz div, .bg-schwarz h2, .bg-schwarz h3 { color: var(--weiss);}
.bg-schwarz nav ul li a, .bg-schwarz .text a { color: var(--gold);}
.bg-gold nav ul li a, .bg-gold .text a { color: var(--magenta);}
.bg-weiss nav ul li a, .bg-magenta nav ul li a, .bg-weiss .text a, .bg-magenta .text a { color: var(--schwarz);}
.bg-schwarz nav ul li a:hover, .bg-weiss nav ul li a:hover, .bg-schwarz nav ul li.active a, .bg-weiss nav ul li.active a { color: var(--magenta);}
.bg-gold nav ul li a:hover, .bg-gold nav ul li.active a { color: var(--schwarz);}
.bg-magenta nav ul li a:hover, .bg-magenta nav ul li.active a, .bg-magenta nav ul li.parent a { color: var(--weiss);}
.bg-magenta #hamburger-icon span, .bg-weiss #hamburger-icon span, .bg-weiss nav.expanded { background-color: var( --schwarz); }
.bg-gold #hamburger-icon span, .bg-magenta nav.expanded {background-color: var( --magenta);}
.bg-schwarz #hamburger-icon span { background-color: var( --gold); }
.bg-weiss nav.expanded { background-color: var( --weiss); }
.bg-schwarz nav.expanded { background-color: var( --schwarz); }
.bg-gold nav.expanded { background-color: var( --gold); }
/* ==========================================================================
   Flex Layout
   ========================================================================== */
.flex-row, .flex-column, .flex-row-reverse, .flex-column-reverse { display: flex; flex-wrap: wrap;}   
.flex-row { flex-direction: row; }
.flex-row-reverse  { flex-direction: row-reverse; }
.flex-column { flex-direction: column; }


/* 
 justify-content
 This defines the alignment along the main axis. -> horizontal zueinander
 justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right
*/
.j-center { justify-content: center; }
.j-start { justify-content: flex-start; }
.j-end { justify-content: flex-end; }
.j-between { justify-content: space-between; }
.j-evenly { justify-content: space-evenly; }
.j-around { justify-content: space-around; }

/*
This defines the default behavior for how flex items are laid out along the cross axis on the current line. -> zueinander in der gleichen Zeile/Spalte bei unterschiedlicher ContainerhÃƒÆ’Ã‚Â¶he
  align-items: stretch | flex-start | flex-end | center | baseline | first baseline | last baseline 
*/

.ai-stretch { align-items: stretch; }
.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.ai-baseline { align-items: baseline; }

/* 
 align-content
This aligns a flex container's lines within when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis.
  align-content: flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline 
*/
.ac-stretch { align-content: stretch; }
.ac-center { align-content: center; }
.ac-start { align-content: flex-start; }
.ac-end { align-content: flex-end; }
.ac-baseline { align-content: baseline; }
.ac-between { align-content: space-between; }
.ac-evenly { align-content: space-evenly; }
.ac-around { align-content: space-around; }
.wrapper { width: 80vw; max-width: 1940px; padding: 0;}
.textWrap { width: 100%; max-width: 980px; margin-bottom: 30px; }
.wrapper.abstand { padding: 80px 40px 0 40px;}
.w100 { width: 100%;}
.w100.grid-4columns { padding-bottom: 40px; }
.w80 { width: 80%;}
.w50 { width: calc(50% - 5px); }
.left, .right { width: 50%; padding: 5px;}
.left { padding-left: 5px;}
.w60 { width: calc(60% - 40px);   }
.w70 { width: calc(70% - 40px);   }
.w40 { width: calc(40% - 40px); }
.w30 { width: calc(30% - 40px);  }
.centerborder { width: 1px; background-color: var(--schwarz);}
.borderTop { width: 100%; border-top: 1px solid var(--schwarz); margin: 0 0 40px 0;}
figure { padding: 0; margin: 0 0 20px 0;}
figcaption { padding-top: 5px; margin: 0; }
@media screen and (max-width: 1380px) {

}
@media screen and (max-width: 1200px) {
.timetables .w50 { width: 100%; }
}

@media screen and (max-width: 820px) {
.w50 { width: 100%; }
}
@media screen and (max-width: 680px) {
.wrapper { width: calc(100% - 24px); padding: 0;}
.w50, .w60, .w40, .w30, .w80, .w70 { width: 100%; }
}

/* ==========================================================================
    GRID LAYOUT
   ========================================================================== */
.grid-2columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 2;}    
.grid-3columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 2;}
.wrapper.grid-3columns, .wrapper.grid-2columns { margin-bottom: 10px;}
.grid-4columns { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;}
.grid-4columns-masonry { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: masonry; 
    grid-column-gap: 40px;
    grid-row-gap: 60px;}
.grid-6columns { 
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;} 
.grid-3columns .grid-item.wide { grid-column: 2 / 4;  }
.grid-3columns .grid-item.high img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;}

@media screen and (max-width: 780px) {
.grid-3columns {grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wann.grid-3columns {grid-template-columns: repeat(3, 1fr); }
} 
@media screen and (max-width: 680px) {
.grid-2columns {grid-template-columns: repeat(1, 1fr); }
}
@media screen and (max-width: 580px) {
.artists .grid-3columns {grid-template-columns: repeat(1, 1fr); }    
} 
/* ==========================================================================
   HTML BODY BASICS
   ========================================================================== */
html, body {
    margin: 0 !important;
    padding: 0 !important;}
/* 
@media screen and (max-width: 780px) {
html, body {
  position: relative;
  overflow-x:hidden;}
}

@supports (-webkit-overflow-scrolling: touch) {
html, body {
  position: relative;
  overflow-x:hidden;} 
}
*/  
body {
    overflow-x: hidden; 
    font-family: var(--font-family-body);
    font-weight: normal;
    background-color: var( --weiss);
    color: var(--schwarz); } 
input {  font-family: var(--font-family-body);}
h1, h3, h4, h5, h6, strong { font-family: var(--font-family-body);}
i, em, q, blockquote, cite { font-family: var(--font-family-body);}
/* ==========================================================================
   FONT COLORS
   ========================================================================== */
p, h1, h2, h3, h4, h5, h6 { color: var( --schwarz); }
a { color: var(--schwarz); cursor: pointer;}

/* ==========================================================================
   LINK BASICS
   ========================================================================== */    
p a, ul li a { color: var(--schwarz); text-decoration: none; position: relative;}
a { text-decoration: none; }
nav ul li a { color: var(--schwarz);}
a:hover { color:var(--mouseover)}

/* ==========================================================================
   FONT SIZES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family-body); font-weight: 500; }   
h1 h3, h4, h5, h6, p { margin-top: 0;}
h1 { font-size: 3.6vw; line-height: 1.1em;  margin: 20px 0px;   text-align: left; font-weight: 400;}
h2 { font-size: 3.6vw; margin: 0em; line-height: 1.05em; text-align: left; }
h3  { font-size: 3vw; line-height: 1.1em;  margin: 0; width: 100%;}
.glueckskeks h3 { font-family: 'Kaligari'; color: var(--magenta); border-bottom: 8px solid var(--magenta); margin-bottom: 20px; }
blockquote  { font-size: 2.75vw; line-height: 1.1em;  margin: 0; width: 100%;}
.wrapper ul { padding: 0; margin: 0 0 30px 30px; }

.date-octagon div, .day-octagon div.firstrow, .day-octagon div.secondrow, .floor-name .firstrow, .floor-name .secondrow { font-size: 4vw;}
ul li {
    padding: 0;
    margin: 0;
    list-style: none; }
ul li::marker { color: var(--con1)}
p, label, .wrapper li, .wrapper div { font-size: 2.8vw; line-height: 1.25em; }
.extrawurst { font-family: 'Kaligari'; font-size: 4.6vw !important; }
.text3 {font-size: 4.6vw !important;}
figcaption { font-size: 12px; line-height: 14px;}

@media screen and (min-width: 1200px) { 
p, label, .wrapper li, .wrapper div { font-size: 1.75vw; line-height: 1.25em; }
.date-octagon div, .day-octagon div.firstrow, .day-octagon div.secondrow, .floor-name .firstrow, .floor-name .secondrow { font-size: 2.5vw;}
.extrawurst { font-family: 'Kaligari'; font-size: 3.6vw !important; }
.text3 {font-size: 3.6vw !important;}
}
@media screen and (min-width: 1940px) {

}

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

}
@media screen and (max-width: 1024px) { 
p, label, .wrapper li, .wrapper div { font-size: 18px; line-height: 1.25em; }
.date-octagon div, .day-octagon div.firstrow, .day-octagon div.secondrow, .floor-name .firstrow, .floor-name .secondrow { font-size: 30px !important;}
h1, h2 { font-size: 40px; }
h3, blockquote { font-size: 35px;}
.glueckskeks h3 { font-size: 40px; }
}
@media screen and (max-width: 780px) { 
h1, h2 { font-size: 32px; }
h3, blockquote { font-size: 30px;}
.glueckskeks h3 { font-size: 35px; }
}
@media screen and (max-width: 480px) { 
h1, h2 { font-size: 28px; }
h3, blockquote{ font-size: 25px;}
.glueckskeks h3 { font-size: 30px; }
}
.floor-name .firstrow, .floor-name .secondrow { max-width: 50%; }
/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.mobilebar { height: 0;}
nav ul, nav ul ul { 
    width: auto; 
    padding: 0 !important; 
    margin: 0 !important;
} 
nav .wrapper > ul { width: 100% !important; padding-top: 20px !important; }
@media screen and (min-width: 1024px) {
nav .wrapper > ul { width: 100% !important; padding: 20px 0 !important; }
}
@media screen and (max-width: 1023px) {
nav .wrapper > ul { width: 100% !important; padding: 20px 0 20px 0 !important; }
}

nav ul > li { 
    font-family: var(--font-family-bold);
    font-size: 3.6vw !important; 
    line-height: 1.25em !important;
    list-style: none !important;
    margin: 0;
    padding: 0 7px; } 

@media screen and (max-width: 680px) { 
.mobilebar { height: 60px; width: 100%; }
nav.main { 
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: transform .25s .1s ease-in-out;
}

nav.expanded {
    display: flex;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-top: 60px;
    padding: 60px 5px 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
 }
nav.expanded ul > li { 
    width: 100%;
    font-size: 40px !important;}
}

/* ==========================================================================
    HEADER
   ========================================================================== */

    
/* ==========================================================================
   SECTIONS
   ========================================================================== */
section  { width: calc(100% - 10px); margin: 0 auto; padding: 10px 0 20px 0;}

.video-announcement-border {
clip-path: polygon(0 58px,58px 0,calc(100% - 58px) 0,100% 58px,100% calc(100% - 58px),calc(100% - 58px) 100%,58px 100%,0 calc(100% - 58px));
padding: 8px;
  aspect-ratio: 2/1;

}
.video-border {
clip-path: polygon(0 58px,58px 0,calc(100% - 58px) 0,100% 58px,100% calc(100% - 58px),calc(100% - 58px) 100%,58px 100%,0 calc(100% - 58px));
padding: 8px;
  aspect-ratio: 1;

}
.video-announcement-wrapper {
width: 100%;
clip-path: polygon(0 50px,50px 0,calc(100% - 50px) 0,100% 50px,100% calc(100% - 50px),calc(100% - 50px) 100%,50px 100%,0 calc(100% - 50px)); 
  aspect-ratio: 2/1;
  overflow:hidden;
}

.video-announcement-wrapper video{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
 } 
.octagon-border { width: 336px; padding: 16px; background-color: #000; clip-path: polygon(0 58px,58px 0,calc(100% - 58px) 0,100% 58px,100% calc(100% - 58px),calc(100% - 58px) 100%,58px 100%,0 calc(100% - 58px)); position: relative;}
.octagon { 
padding: 20px; 
clip-path: polygon(0 50px,50px 0,calc(100% - 50px) 0,100% 50px,100% calc(100% - 50px),calc(100% - 50px) 100%,50px 100%,0 calc(100% - 50px));
}
.octagon p.date {text-align: center; font-size: 26px; line-height: 1.5em;  margin: 0; font-weight: 500; -moz-font-feature-settings: "ss01"; -webkit-font-feature-settings: "ss01"; font-feature-settings: "ss01";}
.octagon p.date span { 
    display: inline-block; padding-left: 25px; font-size:100px; line-height: 110px; letter-spacing: -0.1em;}
.video{    
  aspect-ratio: 1;
  overflow: hidden;
  clip-path: polygon(0 50px,50px 0,calc(100% - 50px) 0,100% 50px,100% calc(100% - 50px),calc(100% - 50px) 100%,50px 100%,0 calc(100% - 50px));  
}
.video video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.day-octagon-border, .date-octagon-border, .icon-octagon-border, .artist-box-border {  padding: 6px; clip-path: polygon(0 45px,45px 0,calc(100% - 45px) 0,100% 45px,100% calc(100% - 45px),calc(100% - 45px) 100%,45px 100%,0 calc(100% - 45px)); }
.day-octagon, .date-octagon, .icon-octagon { height: 260px; clip-path: polygon(0 42px,42px 0,calc(100% - 42px) 0,100% 42px,100% calc(100% - 42px),calc(100% - 42px) 100%,42px 100%,0 calc(100% - 42px)); }
.floor-timetable-octagon-border {padding: 6px; clip-path: polygon(0 45px,45px 0,calc(100% - 45px) 0,100% 45px,100% calc(100% - 45px),calc(100% - 45px) 100%,45px 100%,0 calc(100% - 45px));}
.floor-timetable-octagon { clip-path: polygon(0 42px,42px 0,calc(100% - 42px) 0,100% 42px,100% calc(100% - 42px),calc(100% - 42px) 100%,42px 100%,0 calc(100% - 42px)); }
.floor-timetable-octagon { padding: 20px 30px 0px 30px;}
.day-octagon { padding: 0px 0 20px 5px;}
.date-octagon { padding: 0px 0 20px 15px; }
/*.day-octagon-border { width: 190px; }
.date-octagon-border { width: 140px;  }
.icon-octagon-border { width: 225px;} */
.icon-octagon-border img { width: 70%; max-width: 155px;}
.floor-name { width: 90px;}
.logo-weiss { width: 50px;}
.floor-timetable-octagon-border { width: calc(100% - 97px);}
.date-octagon div { width: 100%; text-align: center; line-height: 1em;}
.firstrow, .secondrow { writing-mode: vertical-rl; text-orientation: upright; letter-spacing: -0.3em;} 
.day-octagon .firstrow, .day-octagon .secondrow { width: auto; letter-spacing: -0.34em;}
.date-octagon div, .day-octagon div.firstrow, .day-octagon div.secondrow { color: var(--weiss); } 
.artists-list .wrapper, .timetables .wrapper{ border-bottom: 8px solid #000; padding-bottom: 20px;}
.wann { margin-bottom: 10px;}
.grey-floor-wrapper, .green-floor-wrapper, .pink-floor-wrapper { margin-bottom: 1px;}
.timetable-wrapper { width: calc(100% - 60px);}
.image1, .image3 { width: 105px; }
.text-image-wrapper { width: calc(100% - 230px);}
.image2 { width: 45%; margin-bottom: 20px;}
.circle { width: 100%; aspect-ratio: 1; border-radius:50%; overflow:hidden; border: 8px solid var(--schwarz);}
.fisch { background: url("img/8-fischfgraete.svg") repeat-y; height: 1974px; width: 945px; animation: slide 25s linear infinite;}
.text1, .text2 { width:22%; text-align: center;}

.text3 .extrawurst { color: var(--weiss); }
footer .wrapper { border-top: 8px solid #000;}
.bg-schwarz footer .wrapper { border-top: 8px solid var(--gold);}
.artist-image, .artist-name, .artist-image-detail, .artist-image-big, .location-name { clip-path: polygon(0 45px,45px 0,calc(100% - 45px) 0,100% 45px,100% calc(100% - 45px),calc(100% - 45px) 100%,45px 100%,0 calc(100% - 45px));  }
.artist-image { aspect-ratio: 1/1.5; overflow:hidden; transition: all 0.5 ease-in-out;}
.artist-name:hover { transform: rotate(10deg); }
.artist-image:hover { transform: rotate(-10deg); }
.artist-name { padding: 30px; margin-top: 10px; transition: all 0.5 cubic-bezier(.17,.67,.83,.67); min-height: 140px;}
.grid-item .text a { text-decoration: underline;}
.location-name { padding: 30px; margin-bottom: 10px;}
.artist-image-detail { aspect-ratio: 1/1.25; position:relative;}
.artist-image-big { aspect-ratio: 2.2/1; width: 100%; margin-top: 10px; overflow: hidden;}
.artist-image img, .artist-image-detail img { 
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
     object-fit: cover;   
}
.artist-box {clip-path: polygon(0 42px,42px 0,calc(100% - 42px) 0,100% 42px,100% calc(100% - 42px),calc(100% - 42px) 100%,42px 100%,0 calc(100% - 42px)); position: abolute; top: 6px; left: 6px; height:100%; aspect-ratio: 1/1.25; padding: 40px 10px;}

@media screen and (max-width: 1200px) { 
.image1, .image3 { width: 80px; }
.text-image-wrapper { width: calc(100% - 160px);}
.wann { max-width: 600px;}
.green-floor-wrapper, .pink-floor-wrapper, .grey-floor-wrapper { width: 100%;}
}
@media screen and (max-width: 780px) { 
.image1, .image3 { width: 55px; }
.text-image-wrapper { width: calc(100% - 110px);}
.text1, .text2 { width: 100%;}
.image2 { width: 95%; }
.day-octagon, .date-octagon, .icon-octagon { height: 180px; }
.day-octagon { padding: 0px 0 20px 5px;}
.floor-name { width: 65px;}
.floor-timetable-octagon-border { width: calc(100% -70px);}
.video-announcement-wrapper { aspect-ratio: 1/1.5; }
}
@media screen and (max-width: 680px) {
.floor-timetable-octagon { padding: 20px 10px 0px 10px;}
.timetable-wrapper { width: 100%;}
.logo-weiss { display: none;}
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -658px, 0); /* The image height */
  }
}
.stoerer { 
    width: 10vw;
    position: fixed;
    z-index: 9999;
    top: 65px;
    right: 0;
    cursor: move;
    -webkit-animation: rotating 3s linear infinite;
    -moz-animation: rotating 3s linear infinite;
    -ms-animation: rotating 3s linear infinite;
    -o-animation: rotating 3s linear infinite;
    animation: rotating 3s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo { 
    width: 10vw;
    position: fixed;
    left: 0;
    top: 15px;
    z-index:9999;}
.logo a { display:block; margin: 0 auto; width: 50%;}
.logo img {  }
.stoerer img { width: 80%; }
@keyframes rotating {
    from {transform:translate(0, 0px);}
    50% {transform:translate(0, -25px);}
    to {transform: translate(0, -0px);}
}

@media screen and (max-width: 680px) {
.logo { width: 60px; left: 35px; top: 10px;  } 
.logo img { width: 60px;}
.stoerer {width: 100px; right: -1px; bottom: -10px; top: auto; pointer-events: none;}
.stoerer img { width: 100px; }
.logo a { display:block; margin: 0 auto; width: 100%;}
}
/*
.date-announcement {
background-color: }
.octagonWrap {
  background: black;
  width: 200px;
  height: 600px;
  position: absolute;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.octagon {
  position: relative;
  background: #a08f6c;
  width: 190px;
  height: 190px;
  top: 5px;
  left: 5px;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.octo {
width: 200px;  
  aspect-ratio: 1;
  --o:calc(50%*tan(-22.5deg));
  clip-path: polygon(
    var(--o) 50%,50% var(--o),
    calc(100% - var(--o)) 50%,
    50% calc(100% - var(--o))
  );
  background: linear-gradient(-45deg,#CD8C52,#5E9FA3);}
*/
/* ==========================================================================
   TABS
   ========================================================================== */


/* ==========================================================================
   LOGO TICKER
   ========================================================================== */
.ticker-left-wrapper {
    position:fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 10vw;
    overflow:hidden;} 
.ticker-right-wrapper {
    position:fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 10vw;
    overflow:hidden;} 
    
@media screen and (max-width: 680px) { 
.ticker-left-wrapper, .ticker-right-wrapper { width: 30px; pointer-events: none; z-index: -1;}
}  

.ticker {
  height: 100vh;
  width: 100%;
  -webkit-animation-iteration-count: infinite; 
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: ticker;
          animation-name: ticker;
  -webkit-animation-duration: 20s;}
.ticker2 {
  height: 100vh;
  width: 100%;
  -webkit-animation-iteration-count: infinite; 
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: tickerright;
          animation-name: tickerright;
  -webkit-animation-duration: 20s;}
.ticker:hover {
    animation-play-state: paused;
  }         
.ticker-item {
width: auto;
border-top: 1px solid #FFF;
}
  
.ticker-item img { margin-bottom: 30px; /*margin: 0 15px; */}
.ticker-item a { }
@media screen and (max-width: 1023px) { 
.ticker { 
	 -webkit-animation-duration: 17s;
          animation-duration: 17s;
	}
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, -300vh, 0);
    transform: translate3d(0, -300vh, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, -300vh, 0);
    transform: translate3d(0, -300vh, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
} 
@-webkit-keyframes tickerright {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, -300vh, 0);
    transform: translate3d(0, -300vh, 0);
  }
}
@keyframes tickerright {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, -300vh, 0);
    transform: translate3d(0, -300vh, 0);
  }
} 
/* ==========================================================================
    Footer
   ========================================================================== */
footer, footer nav { 
    position: relative; 
    width: 100%;  }
    

/* ==========================================================================
   Image Ticker
   ========================================================================== */




  
/* ==========================================================================
   Animated Hamburger Icon Version 1
   ========================================================================== */


#hamburger-icon {
    z-index: 9999;
  position: fixed;
  top: 15px;
  right: 35px;
  width: 35px;
  height: 30px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  visibility: none;
  opacity: 0;
  pointer-events: none;}


@media screen and (max-width: 680px) { 
#hamburger-icon {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;}
}

 
#hamburger-icon span {  
  display: block;
  height: 5px;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;}

#hamburger-icon span { 
  background-color: var(--schwarz);  
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;}

#hamburger-icon span:nth-child(1) { top: 2px; width: 35px;}
#hamburger-icon span:nth-child(2),#hamburger-icon span:nth-child(3) { top:12px; width: 35px;}
#hamburger-icon span:nth-child(4) { top: 22px; width: 35px;}
#hamburger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%; }
  
#hamburger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;  }  

      


/* ==========================================================================
   Position
   ========================================================================== */

.relative, .wrapper.relative { position: relative; }
.sticky { position: -webkit-sticky; position: sticky; top: 180px; }
.fixed { position: fixed; }
.absolute { position: absolute;}
img.alignleft { margin: 10px 30px 10px 0; }
img.alignright { margin: 10px 0 10px 30px; }

.cookie {
  display: block;
  width: 200px;
  cursor: pointer;
  /* Animation to spin and move the sphere */
  -webkit-animation: spin 1000ms linear infinite, moveLeftToRight 11s linear infinite;
  -moz-animation: spin 1000ms linear infinite, moveLeftToRight 11s linear infinite;
  -ms-animation: spin 1000ms linear infinite, moveLeftToRight 11s linear infinite;
  animation: spin 1000ms linear infinite, moveLeftToRight 11s linear infinite;
  
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  
  position: absolute;
  left: 0;
  bottom: 120px;
}
@media screen and (max-width: 1280px) { 
.cookie { width: 160px;}
}
@media screen and (max-width: 1023px) { 
.cookie { width: 120px;
  -webkit-animation: spin 1000ms linear infinite, moveLeftToRight 8s linear infinite;
  -moz-animation: spin 1000ms linear infinite, moveLeftToRight 8s linear infinite;
  -ms-animation: spin 1000ms linear infinite, moveLeftToRight 8s linear infinite;
  animation: spin 1000ms linear infinite, moveLeftToRight 8s linear infinite;
}
}
@media screen and (max-width: 623px) { 
.cookie { width: 80px;
  -webkit-animation: spin 1000ms linear infinite, moveLeftToRight 6s linear infinite;
  -moz-animation: spin 1000ms linear infinite, moveLeftToRight 6s linear infinite;
  -ms-animation: spin 1000ms linear infinite, moveLeftToRight 6s linear infinite;
  animation: spin 1000ms linear infinite, moveLeftToRight 6s linear infinite;
}
}


.glueckskeks-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    background-color:rgba(0, 0, 0, 0.75); }
img.lkh { display: inline-block; margin-right: 10px; width: 150px;}
.glueckskeks-wrapper.offen {
    z-index: 10;
    visibility: visible; }
.glueckskeks-wrapper.offen:hover{ cursor: url('img/cursor.svg'), auto;}
.glueckskeks { clip-path: polygon(0 50px,50px 0,calc(100% - 50px) 0,100% 50px,100% calc(100% - 50px),calc(100% - 50px) 100%,50px 100%,0 calc(100% - 50px)); padding: 50px; width: 90%; max-width: 1000px;}
.cookie:hover { animation-play-state: paused;}

/* Spinning the sphere using key frames */
@-ms-keyframes spin {
  from { -ms-transform: rotate(0deg); }
  to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
  from { -moz-transform: rotate(0deg); }
  to { -moz-transform: rotate(360deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  from { -webkit-transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); }
}

/* Move sphere from left to right */
@-moz-keyframes moveLeftToRight {
  0%   { left: -100px; }
  100% { left: 100%; }
}
@-ms-keyframes moveLeftToRight {
  0%   { left: -100px; }
  100% { left: 100%; }
}
@keyframes moveLeftToRight {
  0%   { left: -100px; }
  100% { left: 100%; }
}
@-webkit-keyframes moveLeftToRight {
  0%   { left: -100px; }
  100% { left: 100%; }
}