/* =============================================================== *\ 
   Variables
\* =============================================================== */
:root {
    --grey: #eeeeee;
    --highlight_color_01: #8F6cd9;
    --dark_mulberry: #730337;
}

/* =============================================================== *\ 
   Basic-HTML
   - basic HTML-Tags
   - font-families
   - font-sizes
   - line-height
   - Background-color
\* =============================================================== */

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

body {
    color: black;

}

iframe {
    width: 100%;
}

p,
li {
    line-height: 1.35em;
} 

body, 
input, 
button {
    font-family: 'Lato';
}

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

html,
body {
    scroll-behavior: smooth;
}

header {
    padding-bottom: 9vh;
}

@media screen and (max-width: 800px) {
    header {
        padding-bottom: 9vh;
    }
}

input:not([type=checkbox]) {
    /*all: unset;*/
    padding: 5px;
    background-color: white;
    box-sizing: border-box;
    }

/* Remove Arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }

input[type=number] {
    -moz-appearance: textfield;
    }

/* =============================================================== *\ 
   Basic-Wordpress
\* =============================================================== */

.entry-content {
    font-size: 20px;
    letter-spacing: 1px;
    transition: all .2s;
    opacity: 1;
    scroll-behavior: smooth;
    }

@media screen and (max-width: 400px) {
    .entry-content {
        font-size: 18px;
    }
}

.entry-content h1,
.entry-content h2,
.single-post h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 1em;
    }

.single-post h3{
    font-size: 40px;
    font-weight: 900;
    line-height: 1em;
}

.single-post .entry-content a{
text-decoration: underline;
}


@media screen and (max-width: 1500px) {
    .entry-content h1,
    .entry-content h2,
    .single-post h2 {
        hyphens: auto;
        }
    }

@media screen and (max-width: 800px) {
    .entry-content h1,
    .entry-content h2,
    .single-post h2 {
        font-size: 50px;
        }
    }

@media screen and (max-width: 600px) {
    .entry-content h1,
    .entry-content h2,
    .single-post h2 {
        font-size: 40px;
        }
    }

@media screen and (max-width: 500px) {
    .entry-content h1,
    .entry-content h2,
    .single-post h2 {
        font-size: 30px;
        }
    }

.entry-content ul {
    list-style: disc;
    list-style-position: outside;
    margin-left: 30px;
    }

.entry-content a {
    text-decoration: none;
    }

.entry-content a:not(.has-text-color) {
    color: inherit;
}

.single-post h2 {
    margin-top: 0.25em;
    margin-bottom: 0.75em;
    }

.single-post .entry-content > * + * {
    margin-top: 1em;
    }

.alignwide{
    width: 1200px;
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 600px) {
    .alignwide {
        max-width: calc(100% - 40px);
    }
}


/* 
Block: Buttons 
*/
.wp-block-buttons.is-content-justification-center {
    justify-content: center;
    }

.wp-block-buttons.is-layout-flex {
    display: flex;
    }


/* 
Block: Button 
*/
.wp-block-button {
    scroll-behavior: smooth;
    }

.wp-block-button a {
    letter-spacing: 1px;
    }

.wp-block-button .has-background {
    border-radius: 100px;
    display: inline-block;
    padding: 0.4em 0.9em;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all .2s;
    }

.wp-block-button .has-grey-background-color {
    background-color: var(--grey);
    }

.wp-block-button .has-white-background-color {
    background-color: white;
    }

.wp-block-button .has-black-color {
    color: black;
    }

.wp-block-button a.wp-block-button__link.has-background:after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    font-weight: 500;
    transition: all 0.2s;
    margin-left: -1em;
    opacity: 0;
}

.wp-block-button a.wp-block-button__link.has-background:hover::after {
    margin-left: 10px;
    opacity: 1;
}


/* 
Block: Query 
*/
.wp-block-query.hidden {
    display: none;
}


/* 
Block: Group 
*/
.wp-block-group.is-layout-flex {
    display: flex;
    width: 100%;
    margin: auto;
    }

.wp-block-group.is-content-justification-center {
    justify-content: center;
    align-items: center;
    }




/* 
Block: Column 
*/
.wp-block-column > * + * {
    margin-top: 1em;
}


/* 
Block: Image 
*/
.wp-block-image.aligncenter {
    display: flex;
    justify-content: center;
}


/* 
Block: Media-Text 
*/
.wp-block-media-text,
.wp-block-media-text.has-media-on-the-right {
    width: calc(100% - 80px);
    margin: auto;
    }

.wp-block-media-text__content > * + * {
    margin-top: 1em;
}

.wp-block-media-text h2 {
    font-size: 60px;
    }

@media screen and (max-width: 1200px) {
    .wp-block-media-text.is-stacked-on-mobile {
        grid-template-columns: 100%;
    }

    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
        grid-column: 1;
        grid-row: 1;
    }

    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
        grid-column: 1;
        grid-row: 2;
        padding: 2em 0;
    }
}

@media screen and (max-width: 600px) {
    .wp-block-media-text,
    .wp-block-media-text.alignwide,
    .wp-block-media-text.has-media-on-the-right {
        width: calc(100% - 40px);
        }
    }


/* =============================================================== *\ 
   Theme-Styling
\* =============================================================== */
/* 
Block: Sticky Column
*/
.is-style-sticky > * {
    position: sticky;
    top: 10px;
}


/*
Colors
*/
.has-dark-mulberry-background-color {
    background-color: #730337;
    }

.has-white-color {
    color: white;
    }


/* 
Font: Hoefler-Text 
*/
.has-hoeflertext-font-family {
    font-family: 'Hoefler Text';
    font-size: 46px;
    line-height: 1.35em;
    }

@media screen and (max-width: 1200px) {
 .has-hoeflertext-font-family {
        font-size: 36px;
    }
}

@media screen and (max-width: 450px) {
    .has-hoeflertext-font-family {
        font-size: 26px;
    }
}


/* 
Block-Style: Haupt-Titel Heading auf Startseite
*/
.is-style-huge {
    text-transform: uppercase;
    font-size: 100px;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
    .is-style-huge {
        font-size: 7vw;
        letter-spacing: 0.5vw;
        }
    }

@media screen and (max-width: 500px) {
    .is-style-huge {
        font-size: 8vw;
        letter-spacing: 0.5vw;
        }
    }

/* 
Header 
*/
.wp-block-group.header_row {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    }

.wp-block-group.header_row.visible {
    transform: translateY(0);
    }

.wp-block-group.header_row.visible {
    top: 0;
    }

.wp-block-group.header_row .wp-block-navigation__container li {
    letter-spacing: 0.1em;
    }

.wp-block-group.header_row .wp-block-navigation__container li + li {
    margin-left: 20px;
    }

.wp-block-group.header_row .wp-block-navigation__container a {
    font-weight: 900;
    text-transform: uppercase;
    }

.wp-block-group.header_row h1 a {
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.1em;
    color: inherit;
    text-decoration: none;
    }

.home .wp-block-group.header_row h1 a {
    opacity: 0;
    pointer-events: none;
    }

.wp-block-navigation__responsive-container.is-menu-open.has-modal-open {
    height: 100vh;
}

.wp-block-navigation__responsive-container.is-menu-open.has-modal-open a {
    font-size: 36px;
    line-height: 1.35em;
}


/*
Block Query (Blog-Übersicht)
*/
.wp-block-query ul.wp-block-post-template{
    list-style: none;
    margin-left: 0;
    line-height: 1.35em;
}

.wp-block-query .wp-block-post .is-vertical {
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

.wp-block-query .wp-block-post + .wp-block-post {
    margin-top: 15vw;
}

.wp-block-query .wp-block-post-title {
    margin-bottom: 0.5em;
}

.wp-block-query .wp-block-read-more {
    margin-top: 1em;
}

.wp-block-query .wp-block-read-more::after,
.wp-block-query .wp-block-post-excerpt a:after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    font-weight: 500;
    margin-left: 5px;
    transition: all .2s;
}

.wp-block-query .wp-block-read-more:hover::after,
.wp-block-query .wp-block-post-excerpt a:hover::after {
    margin-left: 5px;
    opacity: 0;
}

@media screen and (max-width: 600px) {
    .wp-block-query{
        max-width: calc(100% - 40px);
    }
}

/*
Blog
*/
.wp-block-group.single_head{
    max-width: 100%;
    font-size: 20px;
    width: 1200px;
    }


.single-post .wp-block-group.single_head{
    max-width: calc(100% - 80px);
    }

.wp-block-group.single_head .wp-block-post-author-name::before{
    content: "|";
    margin-right: 0.5em;
    margin-left: 0.5em;
    }

/*
Form Input-Fields
*/
form .frm_form_fields .frm_form_field input,
.frm_form_field textarea,
.konzert_reservieren_form input,
.control_indicator,
.wp-block-loginout input {
    border: 1px solid var(--dark_mulberry);
    border-radius: 4px;
    font-size: 20px;
    height: auto;
}


.width_800 {
    width: 800px;
    max-width: calc(100% - 40px);
    margin: auto;
}


/*
Post-Navigation
*/
.is-layout-flex.my_post_navigation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 1200px;
    max-width: calc(100% - 80px);
    }

.post-navigation-link-previous a,
.post-navigation-link-next a {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    color: inherit;
    padding: 30px 0;
    display: block;
    width: calc(100% - 40px);
    max-width: 600px;
    }

@media screen and (max-width: 600px) {
    .is-layout-flex.my_post_navigation {
        max-width: calc(100% - 40px);
        }
    }

@media screen and (max-width: 450px) {
    .post-navigation-link-previous a,
    .post-navigation-link-next a {
        font-size: 24px;
        }
    }

.post-navigation-link-previous a::before,
.post-navigation-link-next a::before {
    display: table;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    font-weight: 500;
    transition: all 0.2s;
    opacity: 1;
}

.post-navigation-link-previous a::before {
    content: "\f177";
}

.post-navigation-link-previous a:hover::before,
.post-navigation-link-next a:hover::before {
    opacity: 0;
}

/*
Footer 
*/
footer a {
    color: inherit;
    text-decoration: none;
}

footer .wp-block-group.alignwide {
 text-align: center;
}
footer .is-layout-flex {
    width: calc(100% - 40px);
    margin: auto;
    justify-content: center;
}

footer .wp-block-group p + p {
    margin-top: 1em;
}


footer .footer_grau {
    width: 100%;
    padding: 40px 40px 3px 40px;
}

footer .rechtliches {
    margin-top: 3em;
}



footer .rechtliches p + p {
    margin-top: 0;
}

footer .rechtliches p + p::before {
    content: "|";
    margin: 0 4px;
}

footer .wp-block-group.social_media {
    margin-bottom: 3em;
}

footer .wp-block-group.social_media figure {
    padding: 10px;
}

footer .wp-block-group .social_media figure img {
    height: 30px;
    width: auto;
}


/* =============================================================== *\ 
   Components
   - Buttons
   - Forms
   - Maps
\* =============================================================== */

/* 
Block-Style Bild drehen 
*/
.is-style-rotate_me {
    position: relative;
    z-index: -1;
    overflow: hidden;
}


/* 
Block-Style: Text Button 
*/
.wp-block-button.is-style-text {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.wp-block-button.is-style-text a {
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: inherit;
}

.wp-block-button.is-style-text a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    font-weight: 500;
    margin-left: 0.5em;
    opacity: 1;
    transition: all 0.2s;
}

.wp-block-button.is-style-text a:hover::after {
    margin-left: 0.5em;
    opacity: 0;
}

/* 
Block-Style: Webseite Button 
*/
.wp-block-buttons > .wp-block-button.is-style-webseite {
    margin-top: 1em;
    margin-bottom: 1em;
}

.wp-block-button.is-style-webseite a {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f0ac";
    font-weight: 500;
    transition: all 0.2s;
    background-color: white;
    border-radius: 100px;
    padding: 10px;
    letter-spacing: 0px;
}

.is-style-webseite a::before,
.is-style-webseite a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    font-weight: 500;
    transition: all 0.2s;
    margin-left: -1em;
    opacity: 0;
}

.is-style-webseite a::before {
    content: "\f0ac";
    margin-left: 0;
    opacity: 1;
}

.is-style-webseite a:hover::after {
    width: auto;
    margin-left: 10px;
    opacity: 1;
}


/* 
Block-Style Flyer Button 
*/
.wp-block-buttons > .wp-block-button.is-style-flyer {
    margin-top: 1em;
    margin-bottom: 1em;
}

.wp-block-button.is-style-flyer a {
    border-radius: 100px;
    display: inline-block;
    padding: 0.4em 0.9em;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all .2s;
    background-color: var(--grey);
    cursor: pointer;
}

.is-style-flyer a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    content: "\f518";
    font-weight: 500;
    transition: all 0.2s;
    margin-left: -1em;
    opacity: 0;
}

.is-style-flyer a:hover::after {
    width: auto;
    margin-left: 10px;
    opacity: 1;
}


/*
Add Newsletter Checkbox
*/
.control {
    display: block;
    position: relative;
    padding-left: 50px;
    margin-bottom: 0px;
    padding-top: 0px;
    cursor: pointer;
    font-size: 20px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: -6px;
    left: 0;
    height: 30px;
    width: 30px;
    background: #ffffff;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator,
.control input:checked ~ .control_indicator,
.control:hover input:checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #ffffff;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 10px;
    top: 4px;
    width: 7px;
    height: 15px;
    border: solid #000000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/*
Submit Buttons 
*/
form .frm_form_fields .frm_submit {
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

form .frm_form_fields .frm_submit button[type=submit],
.konzert_reservieren_form button.chip[type=submit] {
    color: white;
    border: none;
    font-size: 24px;
    letter-spacing: 1px;
    padding: 0.5em 1em;
    cursor: pointer;
    border: 2px solid var(--dark_mulberry);
    transition: all 0.2s;
    background: white;
    color: var(--dark_mulberry);
    font-weight: 900;
}

form .frm_form_fields .frm_submit button[type=submit] {
    text-transform: uppercase;
}

form .frm_form_fields .frm_submit button[type=submit]:hover,
.konzert_reservieren_form button.chip[type=submit]:hover {
    background-color: var(--dark_mulberry);
    color: white;
    border-color: var(--dark_mulberry);
}

form .frm_form_fields .frm_submit button[type=submit] {
    border-radius: 100px;
}


/* 
Chip Tickets reservieren Button
*/
.chip {
    border-radius: 100px;
    display: inline-block;
    padding: 0.4em 0.9em;
    text-transform: uppercase;
    background-color: var(--grey);
    margin-top: 20px;
    transition: all .2s;
}

.chip.button {
    cursor: pointer;
}


/*
Login-Form (Anmeldungen/Reservationen)
*/
.wp-block-loginout {
display: flex;
justify-content: center;
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
}

.wp-block-loginout form {
    display: flex;
    flex-wrap: wrap;
    background: var(--grey);
    padding: 20px;
    width: 600px;
    border-radius: 10px;
    margin-bottom: 3vw;
    font-size: 19px;
}

.wp-block-loginout form p + p {
    margin-top: 0;
}

.wp-block-loginout form label[for=user_login],
.wp-block-loginout form label[for=user_pass] {
    display: none;
}

.wp-block-loginout form input[type=text],
.wp-block-loginout form input[type=password] {
    width: calc(100% - 5px);
    border-radius: 5px;
}

.wp-block-loginout form input[type=password] {
    margin-left: auto;
    margin-right: 0;
}

.wp-block-loginout form .login-username,
.wp-block-loginout form .login-password {
    margin-bottom: 0.75em;
}

.wp-block-loginout form .login-password,
.wp-block-loginout form .login-submit {
    margin-right: 0;
    display: flex;
}

.wp-block-loginout form .login-username,
.wp-block-loginout form .login-password,
.wp-block-loginout form .login-remember,
.wp-block-loginout form .login-submit {
    flex-basis: 50%;
}

.wp-block-loginout form .login-remember {
    display: flex;
    align-items: center;
}

.wp-block-loginout form .login-submit {
    justify-content: flex-end;
}

.wp-block-loginout form .login-submit input {
    padding: 5px 10px;
    border-radius: 5px;
    background: var(--dark_mulberry);
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.wp-block-loginout form .login-submit input:hover {
    background-color: white;
    color: var(--dark_mulberry);
}

.wp-block-loginout.logged-in a {
    background: var(--grey);
    border-radius: 100px;
    padding: 5px 10px;
    margin-bottom: 1em;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    padding: 0.4em 0.9em;
    transition: all .2s;
}

.wp-block-loginout.logged-in a:hover {
    background-color: var(--dark_mulberry);
    color: white;
}

/*
Block: Embed
*/
figure.wp-block-embed{
    transition: all .2s;
    filter: grayscale(1);
    }

figure.wp-block-embed:hover{
    filter: grayscale(0);
    }

/* =============================================================== *\ 
   Layout
   - Groups
   - Containers
   - Columns
\* =============================================================== */

/* 
Block-Style: Masonry Group
*/
.wp-block-group.is-style-masonry {
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}


/* 
Block-Style: Text schmal Group 
*/
.wp-block-group.is-style-text_small {
    width: 800px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.wp-block-group.is-style-text_small > * + * {
    margin-top: 1em;
}

/* 
Block-Style: Kernteam Group
*/
.wp-block-group.is-style-kernteam {
    margin: 20px;
    box-sizing: border-box;
    width: calc(50% - 40px);
    background-color: var(--grey);
}

.wp-block-group.focus {
    z-index: 100;
}

.wp-block-group.is-style-kernteam .content_text.closed {
    height: 0;
    overflow: hidden;
}

.wp-block-group.is-style-kernteam .content {
    padding: 40px;
}

.wp-block-group.is-style-kernteam .content h3 {
    font-size: 42px;
    margin-top: 0;
    font-weight: 500;
    margin-top: 0.25em;
}

.wp-block-group.is-style-kernteam .content > * + *,
.wp-block-group.is-style-kernteam .content_text > * + * {
    margin-top: 1em;
}

.wp-block-group.is-style-kernteam .content h2 {
    font-size: 42px;
}

.wp-block-group.is-style-kernteam .content h3 {
    font-size: 26px;
}

.wp-block-group.is-style-kernteam figure.icon_link {
    margin-top: 1em;
}

@media screen and (max-width: 1200px) {
    .wp-block-group .is-style-kernteam {
        width: calc(50% - 40px);
    }
}

@media screen and (max-width: 900px) {
    .wp-block-group .is-style-kernteam .content {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    .wp-block-group .is-style-kernteam {
        width: calc(100% - 40px);
    }

    .wp-block-group.is-style-kernteam .content h2 {
        font-size: 36px;
    }

    .wp-block-group.is-style-kernteam .content h3 {
        font-size: 20px;
    }

}


/* 
Block-Style: Mitwirkende Group
*/
.wp-block-group.is-style-mitwirkende {
    margin: 20px;
    box-sizing: border-box;
    width: calc(33.33333% - 40px);
        background-color: var(--grey);
}

.wp-block-group.focus {
    z-index: 100;
}

.wp-block-group.is-style-mitwirkende .content_text.closed {
    height: 0;
    overflow: hidden;
}

.wp-block-group.is-style-mitwirkende .content {
    padding: 40px;
}

.wp-block-group.is-style-mitwirkende .content h3 {
    font-size: 42px;
    margin-top: 0;
    font-weight: 500;
    margin-top: 0.25em;
}

.wp-block-group.is-style-mitwirkende .content > * + *,
.wp-block-group.is-style-mitwirkende .content_text > * + * {
    margin-top: 1em;
}

.wp-block-group.is-style-mitwirkende .content h2 {
    font-size: 42px;
}

.wp-block-group.is-style-mitwirkende .content h3 {
    font-size: 26px;
}

.wp-block-group.is-style-mitwirkende figure.icon_link {
    margin-top: 1em;
}

@media screen and (max-width: 1200px) {
    .wp-block-group .is-style-mitwirkende {
        width: calc(50% - 40px);
    }
}

@media screen and (max-width: 900px) {
    .wp-block-group.is-style-mitwirkende .content {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    .wp-block-group .is-style-mitwirkende {
        width: calc(100% - 40px);
    }

    .wp-block-group.is-style-mitwirkende .content h2 {
        font-size: 36px;
    }

    .wp-block-group.is-style-mitwirkende .content h3 {
        font-size: 20px;
    }

}

/* 
Block-Style Slider Group 
*/
.wp-block-group.is-style-slider {
    display: flex;
    width: calc(100% - 40px);
    justify-content: space-around;
    align-items: center;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
}

.wp-block-group.is-style-slider ul {
    list-style: none;
}

.wp-block-group.is-style-slider .slick-slider {
    width: 50%;
    max-width: 800px;
    box-sizing: border-box;
    flex-shrink: 0;
    overflow: hidden;
}

.wp-block-group.is-style-slider .slick-slider .slick-list {
    width: 100%;
}

.wp-block-group.is-style-slider .slick-dots button {
    background-color: var(--grey);
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    transition: all 0.2s;
}

.wp-block-group.is-style-slider .slick-dots {
    display: flex;
    justify-content: flex-start;
    margin-top: 2em;
}

.wp-block-group.is-style-slider .slick-dots li {
    padding: 0 8px;
}

.wp-block-group.is-style-slider .slick-dots button {
    color: var(--grey);
    cursor: pointer;
    font-size: 0;
}

.wp-block-group.is-style-slider .slick-dots .slick-active button {
    color: black;
    background: black;
}

@media screen and (max-width: 1200px) {
    .wp-block-group.is-style-slider {
        margin: auto;
    }

    .wp-block-group.is-style-slider .slick-slider {
        width: 80%;
        max-width: 600px;
    }

    .is-style-slider figure {
        display: none;
    }
}

/* 
Block-Style: Card Group 
*/
.wp-block-group.is-style-card {
    width: calc(100% - 80px);
    max-width: 600px;
    margin: auto;
    background-color: var(--grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 6px 20px #73033754;
}
@media screen and (max-width: 600px) {
.wp-block-group.is-style-card {
    width: calc(100% - 40px);
}
    
}

.wp-block-group.is-style-card h2 {
    padding: 1em;
    font-size: 36px;
    letter-spacing: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.wp-block-group.is-style-card > div {
    padding: 40px 40px 10px;
}


/* 
Block-Style: Sponsoren-Logos Group 
*/
.wp-block-group.is-style-sponsoren_logos {
    transition: all 0.2s;
}

.wp-block-group.is-style-sponsoren_logos a:hover,
.wp-block-group.sponsoren_links a:hover {

    display: block;
}

.wp-block-group.is-style-sponsoren_logos a img {
    filter: grayscale(1);
    transition: all 0.2s;
}

.wp-block-group.is-style-sponsoren_logos a:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.is-style-sponsoren_logos.slick-slider {
    display: flex;
    align-items: center;
}

.is-style-sponsoren_logos i {
    font-family: 'Font Awesome 6 Pro';
    font-size: 26px;
    margin: auto 20px;
}

/* Adding margin between slides */
.is-style-sponsoren_logos .slick-slide {
    margin: 0 10px;
}

.is-style-sponsoren_logos .slick-list {
    margin: 0 -10px;
}

.is-style-sponsoren_logos .slick-track {
    display: flex;
    align-items: center;
}


/* 
Block-Style: Zeitstrahl Columns 
*/
.is-style-zeitstrahl {
    width: calc(100% - 80px);
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width: 600px) {
    .is-style-zeitstrahl {
        width: calc(100% - 40px);
    }
}

/*
Table Reservierung
*/
.table_reservierung{
    width: calc(100% - 40px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    }


/* =============================================================== *\ 
   Module
   - Dropdown-Menüs
   - Accordions
   - Slider
   - Tabs
\* =============================================================== */

/*
Formidable Forms Message
*/
.frm_error_style p,
.frm_message p {
    font-size: 25px;
    font-weight: bold;
}


/* 
Konzert reservieren Form 
*/
.ticket_form_block {
    display: none;
}

.ticket_form_block.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ticket_form_block .form_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background-color: #e39ff4;
    background-color: var(--grey);
    width: 600px;
    height: auto;
    box-shadow: 2px 6px 20px #73033754;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ticket_form_block .form_container .form_head {
    background: var(--dark_mulberry);
    padding: 20px;
    color: white;
}

.ticket_form_block .form_container h2 {
    font-weight: 900;
    font-size: 42px;
    margin-top: 0.25em;
    margin-bottom: 0.15em;
    color: white;
}

.ticket_form_block .form_head i {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.konzert_reservieren_form {
    padding: 20px 40px;
}

.konzert_reservieren_form .single_preis {
    margin-top: 1em;
}

.konzert_reservieren_form .contact_field input {
    width: 100%;
    padding: 10px;
}

.konzert_reservieren_form .single_preis input[type=number] {
    margin-right: 10px;
    width: 2.4em;
}

.konzert_reservieren_form .single_preis + .contact_field {
    margin-top: 3em;
}

.konzert_reservieren_form .contact_field + .contact_field {
    margin-top: 0.75em;
}

.konzert_reservieren_form .contact_field + .contact_field.checkbox {
    margin-top: calc(2em + 6px);
    margin-bottom: 20px;
}

.konzert_reservieren_form .button_container {
    display: flex;
    justify-content: center;
    margin-top: 2em;
    margin-bottom: 1em;
}

.konzert_reservieren_form .small {
    font-size: 16px;
    font-style: italic;
    text-align: center;
}

.konzert_reservieren_form .message {
    display: none;
}

.konzert_reservieren_form .message .success,
.konzert_reservieren_form .message .failed {
    padding: 20px;
    border-radius: 6px;
    color: #297326;
    font-weight: 600;
    border: 0px solid;
    font-size: 20px;
    line-height: 1.135em;
    padding: 15px;
    background: #dde5dc;
    margin-bottom: -2em;
}

.konzert_reservieren_form .message .failed {
    color: #953737;
    background: #e5dcdc;
}

@media screen and (max-width: 800px) {
    .ticket_form_block .form_container {
        margin-top: 0;
        height: 100vh;
    }

    .ticket_form_block .form_container h2 {
        font-size: 24px;
    }



    .form_container .single_preis + .single_preis {
        margin-top: 0.5em;
    }

    .konzert_reservieren_form,
    .konzert_reservieren_form .control,
    .konzert_reservieren_form button.chip[type=submit],
    .konzert_reservieren_form input,
    .konzert_reservieren_form .control_indicator {
        font-size: 15px;
    }

    .konzert_reservieren_form .single_preis input[type=number] {
        margin-right: 10px;
    }

    .konzert_reservieren_form .small {
        font-size: 12px;
    }
}


/* 
Slick-Slider 
*/
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    font-family: 'Font Awesome 6 Pro';
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.slick-slider .prev,
.slick-slider .next {
    cursor: pointer;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #333333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

/* 
Donorbox 
*/
.donorbox {
    width: 430px;
    max-width: calc(100% - 40px);
    margin: auto;
}


/* =============================================================== *\ 
   Seitenstile
   - Impressum / Rechtliches 
\* =============================================================== */

/*
Page: Anmeldungen
*/
.page-id-1107 .konzert_block .tickets{
    display: none;
    }
    
.page-id-1107 .wp-block-buttons{
    width: calc(100% - 40px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    }

.page-id-1107 .wp-block-query .wp-block-post + .wp-block-post{
    margin-top: 5vw;
    }

.page-id-1107 .entry-content h2{
font-size: 40px;
}

.page-id-1107 .entry-content li.wp-block-post .entry-content > *:not(.konzert_block):not(.table_reservierung):not(.wp-block-buttons){
    display: none;
    }


/*
Page: Kontakt
*/
.page-id-458 .entry-content {
    width: 600px;
    max-width: calc(100% - 0px);
    margin-left: auto;
    margin-right: auto;
}

/*
Page Impressum
*/
.page-id-534 .entry-content {
    width: 600px;
    max-width: calc(100% - 0px);
    margin-left: auto;
    margin-right: auto;
}

.ulrich_digital a::after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f178";
    font-weight: 500;
    transition: all 0.2s;
    margin-left: -1em;
    opacity: 0;
}

.ulrich_digital a:hover::after {
    width: auto;
    margin-left: 10px;
    opacity: 1;
}


/* 
Page: Datenschutzerklärung
*/
.page-id-536 .entry-content {
    hyphens: auto;
    width: 1200px;
    max-width: calc(100% - 0px);
    margin-left: auto;
    margin-right: auto;
}

.page-id-536 .entry-content h1 {
    margin-bottom: 1em;
}

.page-id-536 .entry-content h2 {
    font-size: 36px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.page-id-536 .entry-content > * {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
}

.page-id-536 .entry-content > * + * {

    margin-top: 1em;
}

.page-id-536 .entry-content ul {
    line-height: 1.35em;
}

.page-id-536 .entry-content li {
    margin-top: 1em;
}


/* =============================================================== *\ 
   ID's
\* =============================================================== */
#konzert_rueckblick {
    scroll-behavior: smooth;
}

