@font-face {
    font-family: "Stubnitz Text";
    src: url("assets/stubnitz_text.woff2") format("woff2"),
         url("assets/stubnitz_text.woff") format("woff"),
         url("assets/stubnitz_text.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Stubnitz Poster";
    src: url("assets/stubnitz_poster.woff2") format("woff2"),
         url("assets/stubnitz_poster.woff") format("woff"),
         url("assets/stubnitz_poster.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-height: 69.5px;
    --gallery-imgHeight: 0;

    --fs-p: clamp(1.25rem, 2vw + 1rem, 1.438rem);
    --fs-h4: clamp(1.25rem, 2vw + 1rem, 1.563rem);
    --fs-h3: clamp(1.563rem, 2vw + 1rem, 1.875rem);
    --fs-h2: clamp(1.75rem, 2vw + 1rem, 2.625rem);
    --fs-h1: clamp(1.875rem, 2vw + 1rem, 3rem);

    --col-anthrazit: #2a373c;
    --col-green: #899977;
    --col-greygreen: #B7B3A8;
    --col-blue: #6093AC;
    --col-orange: #E88C1B;
    --col-magenta: #bc4077;
}

body {
    font-family: "Stubnitz Text", sans-serif;
    color: var(--col-anthrazit);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    margin-top: var(--nav-height);
}

section {
    margin-bottom: 70px;
}

.wrapper {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.wrapper.fullwidth {
    max-width: 100%;
}

.content {
    margin-top: 70px;
    padding: 0 120px;
}

h1,
h2,
h3,
h4,
button,
.crew-liste,
.other-list {
    font-family: "Stubnitz Poster", sans-serif;
    hyphens: auto;
}

h1,
h2 {
    color: var(--col-green);
}

h1 {
    font-size: var(--fs-h1);
    line-height: 1;
    margin-bottom: 3.125rem;
}

h2,
.crew-liste {
    font-size: var(--fs-h2);
    margin-bottom: 3.125rem;
    margin-top: 3.125rem;
}


h2 .arrow-left {
    height: 2.125rem;
    margin-right: 40px;
}

h2 .arrow-right {
    height: 2.125rem;
    margin-left: 40px;
}

h2 .arrow-right:hover {
    content: url(assets/arrow-right-blue.svg);
}

h2 .arrow-left:hover {
    content: url(assets/arrow-left-blue.svg);
}

h3,
button,
.calendar .date,
.recplay-card .date {
    font-size: var(--fs-h3);
    line-height: 1;
    position: relative;
}

h3 {
    margin-bottom: calc(var(--fs-h3) / 2);
}

h4,
.event .date {
    font-size: var(--fs-h4);
    margin-bottom: calc(var(--fs-h4) / 2);
}

p,
ul,
li,
blockquote {
    font-size: var(--fs-p);
    line-height: 1.15;
    margin-bottom: 29px;
}

P:last-child,
li:last-child,
ul:last-child {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

.download:before {
    display: inline-block;
    content: '';
    mask: url('assets/download.svg');
    background: var(--col-anthrazit);
    mask-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin-right: 0.5rem;
}

.download:hover:before {
    background: var(--col-green);
}

p a,
table a,
main li a {
    text-decoration: underline;
    color: inherit;
}

p a:hover,
table a:hover,
main li a:hover {
    color: var(--col-green);
}

ul {
    list-style: disc;
    padding-left: 1.813rem;
    font-size: inherit;
}

/* removes empty ul in eventinfos & tickets */
.price:not(.price:has(li)),
.event-tickets:not(.event-tickets:has(li)) {
    display: none;
}

footer ul,
.calendar,
.event-infos ul,
.event-social,
.event-tickets,
.faq-list,
.card-list,
#dots-container {
    list-style: none;
    padding-left: 0;
}

li {
    padding-left: 0.938rem;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

li:last-child {
    padding-bottom: 0;
}

.event-social li,
.event-tickets li {
    padding-left: 0;
}

footer ul li,
.calendar li,
.event-infos li,
.faq-list li,
.card,
#dots-container li {
    padding-left: 0;
    margin-bottom: 0;
}

img {
    object-fit: cover;
}

.date {
    font-family: "Stubnitz Poster", sans-serif;
    margin-bottom: 0.313rem;
}

.annotation {
    font-size: var(--fs-p);
}

.strikeout {
    text-decoration: line-through;
}

hr {
    border: 0;
    height: 4px;
    background-color: var(--col-green);
    margin: 3rem 0;
}

/* BUTTON */

button {
    margin-bottom: 0;
    border-radius: 0;
    cursor: pointer;
    border-style: none;
    background-color: #fff;
    color: #2a373c;
}
button:after {
    display: inline-block;
    content: '';
    mask: url(assets/arrow-right.svg) no-repeat 50% 50%;
    mask-size: auto;
    width: 8px;
    height: var(--fs-p);
    margin-left: 15px;
    background: var(--col-anthrazit);
}

button:hover {
    text-decoration: underline;
    color: var(--col-green);
}

button:hover:after {
    background: var(--col-green);
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button.more:hover {
    color: var(--col-blue);
}

button.more:hover:after{
    background-color: var(--col-blue);
}

button.tickets {
    color: var(--col-magenta);
    position: sticky;
    position: -webkit-sticky;
    top: calc(var(--nav-height) + 20px);
    height: fit-content;
}

button.tickets:hover {
    color: var(--col-anthrazit);
}

button.tickets::after {
    background: var(--col-magenta);
}

button.tickets:hover:after {
    background: var(--col-anthrazit);
}

/* FLASH BUBBLE */
.f-b-wrapper {
    position:relative;
}

.flash-bubble {
    width: 150px;
    height: 150px;
    background-color: var(--col-magenta);
    color: #fff;
    text-transform: uppercase;
    font-family: "Stubnitz Poster", sans-serif;
    font-size: 1.563rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    transform: rotate(15deg);
    top: var(--nav-height);
    right: 40px;
    float: right;
}

.flash-bubble:hover,
.flash-bubble:active,
.flash-bubble:focus {
    background-color: var(--col-anthrazit);
}

/* HEADER */

header {
    background-color: var(--col-anthrazit);
    padding: 8px 0 6px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    margin-bottom: 0;
    color: #fff;
}

header.nav {
    position: relative;
}

.burger-menu {
    color: var(--col-green);
    display: none;
    cursor: pointer;
    padding-left: 30px;
    padding-top: 7px;
    font-size: 1.5rem;
}
.burger.navscroll {
    padding-top: 0;
}

.header_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}
.header_nav .split {
    display: flex;
    align-items: center;
}

.header_logo {
    margin-right: 36px;
}

.header_logo a{
    font-size: 0;
}

.header_logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.header_logo.navscroll img {
    content: url("/assets/stubnitz-logo.svg");
    height: 25.5px;
    transform: translate(0,-3px);
    margin-left: 0;
}

.header_logo.navscroll {
    margin-right: 66px;
}

.header_categorie_links {
    font-family: "Stubnitz Poster";
    font-size: 1.25rem;
}

.header_links {
        line-height: 1.5;
        padding-top: 13px;
}
.header_links a:active,
.header_links a:focus,
.header_links a:hover {
    color: #fff;
    text-decoration: none;
}

.header_links,
.header_logo {
    display: inline;
}

.header_links a {
    color: var(--col-green);
    margin-right: 0.813rem;
}

.header_links a:last-child {
    margin-right: 0;
}

.header_links img {
    object-fit: contain;
    width: 0.8rem;
    height: 0.8rem;
}

.header_subcategories {
    font-size: 0.813rem;
    margin-right: 0;
    margin-left: auto;
    margin-right: 40px;
}

.header_icons {
    position: relative;
}

.header_icons.navscroll,
.header_subcategories.navscroll,
.header_categorie_links.navscroll {
    padding-top: 5px;
}
.header_icons.navscroll {
    padding-top: 6px;
}
.burger-menu.navscroll {
     padding-top: 0;
}

/* HEADER IMG */
#carousel {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

#carousel img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-position: 50% 50%;
    transform: translateX(100%);
}

#carousel img.on-screen {
    transform: translateX(0);
    transition-property: transform;
    transition-duration: 3s;
}

#carousel img.exit-left {
    transform: translateX(-100%);
    transition-property: transform;
    transition-duration: 3s;
}

ul#dots-container {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 1rem;
    width: 100%;
    height: 20px;
    margin-bottom: 0;
}

#dots-container li {
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    border: 0.2rem solid #ffffff82;
    border-radius: 50%;
}
.dot-active {
    background-color: #fff;
}

.bottom_mg {
    margin-bottom: 30px;
}

.header_img{
    width: 100%;
}

.eventhead img {
    aspect-ratio: 16 / 9;
}

/* EVENT CARD */

.events a:hover {
    text-decoration: none;
}

.card {
    /* max-width: 500px; */
    width: 100%;
    background-color: var(--col-blue);
    color: #fff;
    position: relative;
}
.card:hover{
    background-color: var(--col-anthrazit);
    color: #fff;
}

.card .flash-bubble {
    display: none;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
    grid-template-rows: auto;
    gap: 40px;
}

.card a {
    text-decoration: none;
    cursor: pointer;
    font-size: 0;
}
.card a:hover{
    color: #fff;
}
.event-name {
    margin-bottom: 1.5rem;
}

.card img,
.calendar .event-img,
.recplay-img {
    aspect-ratio: 1.72/1;
    width: 100%;
    object-position: 50% 50%;
}

.card-info {
    padding: 20px;
}

.description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    height: fit-content;
}

.more-events a:hover {
    color: var(--col-blue);
}

/* EVENT CARD MAX */
.card-max {
    max-width: 610px;
}

/* EVENT CARD SMALL */

.card-small {
    max-width: 307px;
}

/* EVENT CARD CANCELLED */

.card.cancelled .card-info {
    text-decoration: line-through;
}

.card.cancelled .flash-bubble {
    width: 150px;
    height: 150px;
    font-size: 1.25rem;
    top: 20px;
    right: 20px;
}

/* INFOBOX */
.infobox {
    color: #fff;
    display: grid;
    grid-template-columns: 57% 40%;
    column-gap: 30px;
    padding-top: 85px;
    padding-bottom: 85px;
}
.infobox-w-bg {
    color: inherit;
    padding-top: 0;
    padding-bottom: 0;
}

.green-grunge {
    background: url("assets/stubnitz-grunge-seamless-green.png") var(--col-green);
    background-size: 20%;
}

.blue-grunge {
    background: url("assets/stubnitz-grunge-seamless-blue.png") var(--col-blue);
    background-size: 20%;
}

.infobox h2 {
    grid-column: 1/-1;
}

.infobox img {
    width: 100%;
    aspect-ratio: 1.42/1;
}

.two_col_infoblock {
    width: 100%;
}

/* REC/PLAY */

.infobox-w-bg h3 {
    margin-bottom: 20px;
}

/* OTHER */

.other-list {
    margin-bottom: 0;
    flex-direction: column;
    font-size: 2.5rem;
}

.other-list-box {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 30px;
}
.other-list li {
    padding-bottom: 10px;
}

/* MIETEN */

.mieten h1,
.mieten h2,
.mieten a:hover,
.mieten button:hover {
    color: var(--col-orange);
}

.mieten .download:hover:before,
.mieten button:hover:after {
    background: #E88C1B;
}

/* SONSTIGES VOM SCHIFF */
.sonstiges_box {
    color: #fff;
    padding-top: 20px;
    padding-bottom: 100px;
    margin-top: 150px;
    margin-bottom: 0;
}
.sonstiges_box h2 {
    color: #fff;
}
.sonstiges .card {
    color: #2a373c;
    background-color: #fff;
}

.sonstiges .card:hover {
    background-color: var(--col-anthrazit);
    color: #fff;
}

/* STORY - PORTSLIST */
.story li {
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
}
table.mobile {
    display: none;
}

table.portslist {
    font-size: 24px;
    border-collapse: collapse;
}
table .portscountry {
    font-weight: 600;
}
table.portslist th, table.portslist td{
    padding: 20px;
    vertical-align: top;
}
table th {
        text-align: left;
}

table.desktop th {
    width: 50vw;
}

table.portslist th {
    font-family: "Stubnitz Poster", sans-serif;
    background-color: var(--col-green);
    color: #fff;
}

table .year {
    width: 170px;
    text-align: end;
}

table .pin {
    height: 18px;
    margin-left: 12px;
}

/* IMAGE SLIDER */
.slider-container {
    margin: 70px auto;
    overflow: hidden;
    display: flex;
}

.slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 11px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;
    aspect-ratio: 15 / 10;
}

.slider figure {
    position: relative;
}
.slider .photographer,
#carousel .photographer {
    transform: rotate(90deg);
    font-size: 0.75rem;
    line-height: 0.5;
    background-color: #00000060;
    color: #fff;
    padding: 5px;
    margin: 0;
}

#carousel .photographer {
    transform-origin: bottom right;
    position: absolute;
    bottom: 0;
    right: 18px;
}

.slider .photographer {
    transform-origin: top left;
    position: absolute;
    top: 0;
    left: 16px;
}

.slider::-webkit-scrollbar {
    display: none;
}
.slider.no-transition {
    scroll-behavior: auto;
}

/* ARROW SLIDER */

.arrow {
    height: 40px;
    cursor: pointer;
}
.slider-container .arrow {
    margin-top: calc((var(--gallery-imgHeight) / 2) - 20px);
}

.arrow.previous {
    margin-right: 20px;
}
.arrow.next  {
    margin-left: 20px;
}

.previous.disabled,
.next.disabled {
    opacity: 0;
    pointer-events: none;
}

/* LIGHTBOX */

#lightboxOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

#lightboxContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#lightboxImage {
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

/* PARTNER */

.partner {
    background-color:var(--col-greygreen);
    padding: 31px 0;
    margin-bottom: 0;
}

.partner-container {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    gap: 50px;
    margin-bottom: 0;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    transition: transform 0.5s ease-in-out;
}

.partner-list a {
    font-size: 0;

}
.partner .logo {
    height: 50px;
    filter: grayscale(100%);
}
.partner .arrow {
    height: 50px;
}

/* CALENDAR */
.calendar-switch {
    display: flex;
    justify-content: space-between;
    width: 400px;
}

.filter {
    display: flex;
    column-gap: 2rem;
    margin-bottom: 40px;
}

.calendar > li,
.recplay-card {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 1fr 195px;
    grid-template-rows: auto;
    gap: 20px 45px;
    margin-bottom: 85px;
    align-self: self-start;
}
.calendar > li:last-child {
    margin-bottom: 0;
}
.calendar .event-type,
.episode {
    margin: 0;
    align-self: end;
    text-transform: capitalize;
}
.calendar .date,
.recplay-card .date {
    margin: 0;
    grid-column: 2/4;
    align-self: end;
}
.calendar li a:not(.date a) {
    font-size: 0;
}
.calendar li a {
    text-decoration: none;
}
.calendar li a:hover {
    color: inherit;
}

.links a {
    display: block;
}

/* RECPLAY */
.recplay-card:last-child {
    margin-bottom: 100px;
}

.recplay-info {
    grid-column: 2/4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recplay-info .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.recplay-info .playbutton {
    width: 52px;
    height: 52px;
}

/* EVENT PAGE */

section.eventhead {
    margin-bottom: 2rem;
    position: relative;
}
section.event {
    margin-top:0;
}

.eventhead .flash-bubble {
    display: none;
}

.event h1 {
    margin-bottom: 10px;
}
.event h2 {
    font-size: var(--fs-h1);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: normal;
}
.event h3 {
    font-family: "Stubnitz Text";
    font-size: var(--fs-h3);
    margin-bottom: 40px;
}

.event-col,
.event h1,
.event h2,
.event h3,
.event a:hover {
    color: var(--col-blue);
}
.event hr {
    background-color: var(--col-blue);
}

.event .back {
    color: var(--col-greygreen);
    margin-bottom: 2rem;
}
.event .back a {
    text-decoration: none;
}

.event .back span {
    margin-right: 2rem;
}

.event-social a{
    text-decoration: none;
}

.event-social a:before {
    display: inline-block;
    mask-repeat: no-repeat;
    background: var(--col-blue);
}

.stager img{
    width: 5.5rem;
    margin-left: 0.5rem;
}

.tixforgigs img {
    width: 5.5rem;
    margin-left: 0.5rem;
}

.eventim img {
    width: 4rem;
    margin-left: 0.5rem;
}

.ticketmaster img{
    width: 6.5rem;
    margin-left: 0.5rem;
}

.fb:before {
    content: '';
    mask: url('assets/facebook.svg');
    width: 0.5rem;
    height: 17px;
    margin-left: 0.5rem;
    margin-right: 1.6rem;
}

.web:before {
    content: '';
    mask: url('assets/website.svg');
    width: 1rem;
    height: 16px;
    margin-left: 0.3rem;
    margin-right: 1.3rem;
}

.insta:before {
    content: '';
    mask: url('assets/instagram.svg');
    width: 1rem;
    height: 16px;
    margin-left: 0.3rem;
    margin-right: 1.3rem;
}

.x:before {
    content: '';
    mask: url('assets/x.svg');
    width: 1rem;
    height: 15px;
    margin-left: 0.3rem;
    margin-right: 1.3rem;
}

.bandcamp:before {
    content: '';
    mask: url('assets/bandcamp.svg');
    width: 1.4rem;
    height: 14px;
    margin-left: 0.1rem;
    margin-right: 1.1rem;
}

.soundcloud:before {
    content: '';
    mask: url('assets/soundcloud.svg');
    width: 1.6rem;
    height: 12px;
    margin-left: 0.0;
    margin-right: 1rem;
}

.event-infos {
    min-width: fit-content;
}

.event-infos ul:last-of-type {
    margin-bottom: 1.25rem;
}

.event-infos ul li {
    margin-right: auto;
    margin-bottom: 0;
}

.event-infos ul li:last-child {
    padding-bottom: 0;
}

.event-section {
    position: relative;
}

.event-section :where(h1, h2, h3) {
    margin-bottom: 1.5rem;
}

.main-content {
    display: flex;
    flex-direction: row-reverse;
}

.event-infos {
    margin: 0 0 20px 40px;
}


/* EVENT CANCELLED */

.cancelled h1,
.cancelled h2,
.cancelled h3,
.cancelled .date {
    text-decoration: line-through;
}

.cancelled .event-infos,
.cancelled .event-tickets {
    display: none;
}

.cancelled .flash-bubble {
    width: 200px;
    height: 200px;
    display: flex;
}

/* VIDEO */
video {
    width: 100%;
}

/* IMG GALLERY */

.img-gallery,
.eventbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}

.img-gallery img {
    width: 100%;
}

/* MUSEUM */
.museum-more {
    margin-top: 45px;
}

/* INFO */
.info-split {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* FAQ */
.faq-list li {
    margin-bottom: 30px;
}

/* NEWSLETTER */

.newsletter {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.newsletter label {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    color: rgb(241, 236, 225);
    background-color: var(--col-anthrazit);
    font-size: 0.875rem;
}
.footer-flex {
    padding: 45px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-logo {
    width: 200px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-block {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
.footer-block ul {
    align-self: flex-start;
    margin-bottom: 0;
}

.footer-block ul li {
    margin: 0;
    padding-bottom: 0.5rem;
    font-size: 14px;
}
.footer-block ul li:last-child {
    padding-bottom: 0;
}
.footer-block img {
    width: 100%;
    max-height: 200px;
    max-width: 200px;
}

.footer-block li img {
    width: 16px;
    height: 14px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: -2px;
}

.footer-block .copyright {
    font-size: 0.625rem;
    padding-left: 30px;
}

footer .wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-adresse ul {
    font-size: 12px;
}
/* MEDIA QUERIES */

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

    /* CALENDAR */
    .calendar {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .calendar > li {
        max-width: 48% ;
    }

    .calendar > li,
    .event-grid,
    .recplay-card {
        grid-template-columns: 100%;
        grid-template-rows: auto;
        margin-bottom: 60px;
        gap: 0.5rem 0;
    }

    .event-grid ul {
        margin-top: 40px;
    }
    .calendar .date,
    .recplay-card .date,
    .recplay-info {
        grid-column: 1/-1;
    }

    .calendar .description {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1023px) {
    .content {
        padding: 0 20px;
    }

    /* HEADER */
    .burger-menu {
        display: inline-block;
    }

    .header_subcategories {
        display: none;
        position: absolute;
        right: 0;
        top: var(--nav-height);
        padding: 20px;
        background-color: var(--col-anthrazit);
        flex-direction: column;
        margin-right: 0;
    }

    .header_subcategories.show {
        display: flex;
    }
    .header_subcategories a {
        margin-right: 0;
    }

    /* INFOBOX */

    .infobox {
        grid-template-columns: 48% 48%;
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .infobox-w-bg {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* FOOTER */
    .footer-flex {
        row-gap: 35px;
    }
    .footer-block {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 780px) {
    /* BUTTON */
    button.tickets{
        margin-top: 0.5rem;
    }
     /* IMG SLIDER */
    .slider {
        grid-auto-columns: calc((100% / 2) - 11px);
    }

    /* FLASH BUBBLE */
    .flash-bubble {
        width: 100px;
        height: 100px;
        font-size: 1.25rem;
        top: 20px;
        right: 20px;
    }

    .cancelled .flash-bubble {
        width: 150px;
        height: 150px;
    }

    /* HEADER */
    .no-scroll {
        overflow-y: hidden;
    }

    .header_nav {
        overflow-y:hidden;
    }

    .header_subcategories {
        top: calc(210px + var(--nav-height));
        padding: 0;
    }

    .header_categorie_links {
        display: none;
        position: absolute;
        right: 0;
        top: var(--nav-height);
        background-color: var(--col-anthrazit);
        flex-direction: column;
        padding-top: 13px;
        height: 100vh;
        font-size: 1.625rem;
    }

    .header_categorie_links.show {
        display: flex;
    }
    .header_categorie_links a  {
        margin-right: 0;
    }

    .header_categorie_links,
    .header_subcategories {
        width: 100%;
        text-align: center;
        padding-top: 13px;
    }

    .header_subcategories {
        font-size: 1.125rem;
    }

    .header_links {
        line-height: 1.5;
    }

    .header_icons.navscroll,
    .header_subcategories.navscroll,
    .header_categorie_links.navscroll {
        padding-top: 13px;
    }

    .other-list,
    .infobox,
    .other-list-box,
    .eventbox,
    .sonstiges_box {
        grid-template-columns: 100%;
    }

    .infobox img {
        margin-bottom: 40px;
    }
    /* HEADER IMG */
    #carousel {
        height: 40vh;
    }

    /* CALENDAR */
    .calendar-switch {
        width: 100%;
    }
    .calendar {
        flex-direction: column;
    }
    .calendar > li {
        max-width: 100% ;
    }

    /* PORTSLIST */
    table.desktop {
        display: none;
    }
    table.mobile {
        display: block;
    }
    table.mobile th {
        width: 100vw;
    }

    table.portslist {
        margin-bottom: 50px;
    }

    /* FOOTER */
    .footer-block {
        gap: 0;
        row-gap: 35px;
    }
    .footer-block ul {
        width: 50%;
    }

    .info-split {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    h2 {
        margin-bottom: 49px;
    }

    h2 .arrow-left,
    h2 .arrow-right {
        height: 1.75rem;
    }

    /* TICKET BUTTON */

    button:after {
        height: 18px;
    }
    .event-infos button.tickets {
        text-align: center;
        height: fit-content;
        padding: 10px 20px;
        width: 100%;;
        position: fixed;
        bottom: 0;
        left: 0;
        top: auto;
        margin: 0 0;
        z-index: 2;
    }

    /* IMG SLIDER */
    .slider-container {
        margin: 35px auto;
    }
    .slider {
        grid-auto-columns: 100%;
    }

    /* FLASH BUBBLE */
    .flash-bubble {
        width: 75px;
        height: 75px;
        font-size: 0.875rem;
        top: 20px;
        right: 20px;
    }
    .cancelled .flash-bubble,
    .card.cancelled .flash-bubble {
        width: 100px;
        height: 100px;
        font-size: 0.875rem;
    }

    /* HEADER */
    .header_icons {
        display: none;
        position: absolute;
        right: 0;
        top: calc(340px + var(--nav-height));
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        width: 100%;
        height: fit-content;
    }

    .header_links img {
        width: 1.25rem;
        height: 1.25rem;
    }

    .header_icons a {
        margin-right: 0;
        font-size: 0;
    }
    .header_icons.show  {
        display: flex;
    }

    /* HEADER IMG */
    #carousel {
        height: 30vh;
    }

    ul#dots-container {
        bottom: 0.25rem;
    }

    #dots-container li {
        width: 0.5rem;
        height: 0.5rem;
        margin: 0 0.25rem;
        border: 0.1rem solid #ffffff82;
    }

    /* NEWS BOX */
    .sonstiges_box .content {
        margin-top: 25px;
    }

    /* CREW */
    .crew-liste {
        hyphens: auto;
    }

    /* KALENDER */
    .calendar .description {
        margin-bottom: 6px;
    }

    .calendar .event-name {
        margin-bottom: 0.75rem;
    }
    .calendar li{
        margin-bottom: 40px;
    }
    
    /* EVENT PAGE */
    section.eventhead {
        margin-bottom: 1rem;
    }

    .event.headlines {
        margin-bottom: 20px;
    }
    .event.main-content {
        flex-direction: column;
    }
    .event-infos {
        width: 100%;
        margin-left: 0;
    }
    .event-infos ul li {
        padding-bottom: 0.5rem;
    }

    .card-list {
        grid-template-columns: 1fr;
    }
}
