/*
Theme Name: FGR Basic Theme
Theme URI: http://fgr.design/
Description: Das FGR Basic-Theme wurde eigens für FGR Kunden entwickelt. Es bedarf keinerlei zusätzliche Lizenz, jedoch darf die Gestaltung die durch die FGR vorgegeben wurde nicht verändert werden - es erlischt umgehend das Nutzungsrecht. Inhaltliche Änderungen dürfen selbstverständlich getätigt werden. Im Zweifelsfall steht die <a href="http://fgrepublik.com/">Freie Gestalterische Republik</a> jederzeit bereit, um Fragen zu beantworten.
Author: der Freien Gestalterischen Republik
Author URI: http://fgr.design/
Version: 1.3.4
License: Keine Nutzung ohne vorherige Absprache erlaubt.
License URI: license.txt
Tags: FGR, basic, Widgetfähig, Menü, Responsive
*/

/* #####################################################

1.1 Viewport
1.2 Variablen
1.3 Hauptdeklarationen
1.4 Typografie & Globale Elemente
1.5 Globale Klassen

2.1 Header
2.2 Hauptnavigation - Wrap & Burgericon
2.3 Menü

3.1 Flexible Content

4.1 CPTs

5.1 Footer
5.2 Footermenü

5.1 Plugins

##################################################### */

/* 1.1 Viewport
##################################################### */

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/* 1.2 Variablen
##################################################### */

body {
    /*colors*/
    --lightColor: #fff;
    --darkColor: #000;
    --lighterGray: #F2f2f2;
    --darkGray: #6C757D;

    /*Font-Sizes*/
    --DisplayHead: 3.25rem;
    --primaryHead: 3.75rem;
    --DisplayHeadSub: 2.5rem;
    --secondaryHead: 2.25rem;
    --tertiaryHead: 1.875rem;
    --quaternaryHead: 1.5rem;
    --biggerParagraphs: 1.25rem;
    --paragraphs: 1.125rem;
    --smallerParagraphs: 1rem;
    --btnFS: 1.25rem;
    --smallerFS: 0.625rem;
    --smallFS: 0.875rem;
    --headermenuFS: 1.875rem;
    --headersubmenuFS: 1.5rem;
    --footermenuFS: 1.125rem;
}

@media screen and (max-width: 991px) {
    body {
        /*Font-Sizes*/
        --DisplayHead: 2.5rem;
        --primaryHead: 3.75rem;
        --secondaryHead: 2.25rem;
        /*--tertiaryHead: 1.875rem;*/
        --quaternaryHead: 1.5rem;
        --smallerParagraphs: 1rem;

        --headermenuFS: 1.625rem;
        --headersubmenuFS: 1.25rem;
        --footermenuFS: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    body {
        /*Font-Sizes*/
        --DisplayHead: 1.875rem;
        --primaryHead: 2.5rem;
        --secondaryHead: 2.25rem;
        /*--tertiaryHead: 1.875rem;*/
        --quaternaryHead: 1.5rem;
        --biggerParagraphs: 1rem;
        --paragraphs: 1rem;
        --smallerParagraphs: 0.875rem;
        --btnFS: 1rem;

    }
}

/* 1.3 Hauptdeklarationen
##################################################### */
html {
    -webkit-font-smoothing: antialiased;
}

html, body {
    height: 100%;
}

body {
    line-height: 1;
    overflow: overlay;
}

@media screen and (max-width:991px) {
    body.no-scroll {
        overflow: hidden;
    }
}

#overallwrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0px;
    width: 100%;
    overflow: hidden;
    min-height: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

body:not(.home, .single-kritik, .single-leseprobe, .page-datenschutzerklaerung) #overallwrap {
    flex-direction: column;
}

header {
    flex: 0 0 100%;
    transition: 0.5s all;
    z-index: 12;
}

#contentwrap {
    flex: 0 0 100%;
    width: 100%;
}

/* 1.4 Typografie & Globale Elemente
##################################################### */

html, body, h1, h2, h3, h4, h5, p, ul {
    margin: 0px;
    padding: 0px;
}

h1, .h1,
h2, .h2 {
    font: normal 400 var(--primaryHead) 'Teko', sans-serif;
    color: var(--darkColor);
    line-height: 1;
    margin-bottom: 35px;
}

h3, .h3 {
    font: normal 500 var(--tertiaryHead) 'Teko', sans-serif;
    color: var(--darkColor);
    line-height: 1.1;
}

h4, .h4 {
    font: normal 500 var(--quaternaryHead) 'Teko', sans-serif;
    margin-bottom: 10px;
    line-height: 1.1;
}

p, #contentwrap ul li {
    font: 400 normal var(--paragraphs) 'Crimson Pro', serif;
    line-height: 1.44 !important;
}

#contentwrap ul {
    list-style-type: none;
}

p strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.35s all;
    cursor: pointer;
    pointer-events: auto;
    cursor: hand;
    position: relative;
    z-index: 2;
    outline: none;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

#contentwrap section,
#contentwrap article {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-datenschutzerklaerung table {
    border-spacing: 5px;
    margin-bottom: 40px;
}

.page-datenschutzerklaerung table .top {
    transform: rotate(-90deg);
    margin-left: 50px !important;
}

.page-datenschutzerklaerung td {
    padding: 12px !important;
    background-color: var(--lighterGray);
}

.page-datenschutzerklaerung #contentwrap ul {
    margin-bottom: 40px;
}

.page-datenschutzerklaerung #contentwrap li {
    list-style: disc;
    margin-left: 20px;
}

p.wp-caption-text {
    padding-bottom: 30px;
}

@media screen and (max-width:1199px) {
    .page-datenschutzerklaerung table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }

    .page-datenschutzerklaerung table .top {
        transform: rotate(-0deg);
        margin-left: 0px !important;
        text-transform: uppercase;
    }

    .page-datenschutzerklaerung td {
        background-color: var(--lighterGray) !important;
    }
}

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

    #contentwrap section,
    #contentwrap article {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    h1, .h1,
    h2, .h2 {
        margin-bottom: 15px;
    }
}

/* 1.5 Globale Custom Klassen (Paddings, Colors, Display Elemente)
##################################################### */

/*Paddings*/
.p-0 {
    padding: 0px !important;
}

.p-h-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.p-v-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-t-small {
    padding-top: 30px !important;
}

.p-t-large {
    padding-top: 75px !important;
}

.p-b-small {
    padding-bottom: 30px !important;
}

.p-b-large {
    padding-bottom: 75px !important;
}

@media screen and (max-width:767px) {
    .p-t-small {
        padding-top: 15px !important;
    }

    .p-t-large {
        padding-top: 45px !important;
    }

    .p-b-small {
        padding-bottom: 15px !important;
    }

    .p-b-large {
        padding-bottom: 45px !important;
    }
}

/*Margins*/
.m-0 {
    margin: 0px !important;
}

.m-h-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.m-v-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.m-t-0 {
    margin-top: 0px !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-t-small {
    margin-top: 30px !important;
}

.m-t-large {
    margin-top: 75px !important;
}

.m-b-small {
    margin-bottom: 30px !important;
}

.m-b-large {
    margin-bottom: 75px !important;
}

@media screen and (max-width:767px) {
    .m-t-small {
        margin-top: 15px !important;
    }

    .m-t-large {
        margin-top: 45px !important;
    }

    .m-b-small {
        margin-bottom: 15px !important;
    }

    .m-b-large {
        margin-bottom: 45px !important;
    }
}

/*Positions*/
.p-r {
    position: relative !important;
}

.p-a {
    position: absolute !important;
}

/*Colors*/
.TextprimaryColor {
    color: var(--primaryColor) !important;
}

.TextlinkColor {
    color: var(--linkColor) !important;
}

.TextlightColor {
    color: var(--lightColor) !important;
}

.TextdarkColor {
    color: var(--darkColor) !important;
}

.BGlightColor {
    background-color: var(--lightColor);
}

.BGlighterGray {
    background-color: var(--lighterGray);
}

.BGprimaryColor {
    background-color: var(--primaryColor);
    color: var(--lightColor);
}

.BGprimaryColor h1, .BGprimaryColor h2, .BGprimaryColor h3, .BGprimaryColor h4 {
    color: var(--lightColor);
}

.BGdarkColor {
    background-color: var(--darkColor);
    color: var(--lightColor);
}

/*Display Elemente */
body .d-none {
    display: none;
}

@media screen and (max-width:991px) {
    .md-off {
        display: none !important;
    }

    .md-block {
        display: block !important;
    }
}

@media screen and (max-width:767px) {
    .sm-off {
        display: none !important;
    }

    .sm-block {
        display: block !important;
    }
}

@media screen and (max-width:624px) {
    .xs-off {
        display: none !important;
    }
}

/*Images*/
.full-width-img {
    width: 100%;
    height: auto;
    line-height: 1;
}

.img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-wrap.wrap-normal {
    padding-bottom: 75%;
}

.img-wrap.wrap-ws {
    padding-bottom: 56.25%;
}

.img-wrap.wrap-lws {
    padding-bottom: 46.66%;
}

.img-wrap.wrap-pm {
    padding-bottom: 130%;
}

.img-wrap.wrap-square {
    padding-bottom: 100%;
}

.img-wrap img,
.img-wrap svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.img-wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}

/*Two Columns*/
.two-col {
    columns: 2;
    column-gap: 30px;
}

@media screen and (max-width:767px) {
    .two-col {
        columns: 1;
    }
}

/*Textausrichtung*/
.center {
    text-align: center;
}

/*Buttons*/
.btn-wrap {
    display: flex;
    justify-content: center;
}

.btn {
    padding: 14px 18.5px 17px 18.5px;
    line-height: 1;
    font: normal 700 var(--btnFS) 'Crimson Pro', serif;
    margin-top: 30px;
    display: inline-block;
    transition: 0.35s all;
    appearance: none;
    -webkit-appearance: none;
    border: none;
}

.btn-primary {
    color: var(--lightColor);
    background-color: var(--primaryColor);
}

.btn-secondary {
    color: var(--lightColor);
    background-color: var(--secondaryColor);
}

.btn-tertiary {
    color: var(--primaryColor);
    background-color: var(--lightColor);
}

.btn:hover {
    text-decoration: none;
    cursor: pointer;
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

@media screen and (max-width:767px) {
    .btn {
        margin-top: 22.5px;
    }
}

.cat-info {
    position: absolute;
    font: 400 normal 12px 'Roboto', sans-serif;
    padding: 7.5px 10px;
    line-height: 1;
    top: 0;
    z-index: 1;
}

/*Claim*/
.claim:not(#footer-claim),
.claim a {
    opacity: 0.6;
    color: var(--lightColor);
}

.claim a {
    font: 400 normal var(--tertiaryHead) 'Crimson Pro', serif;
}

.claim {
    font: 400 normal var(--quaternaryHead) 'Crimson Pro', serif;
}

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

    .claim a,
    .claim {
        font-size: 1.25rem;
    }
}

/*smaller Paragraphs*/
.smallerParagraphs,
.smallerParagraphs p {
    font: 400 normal var(--smallerParagraphs) 'Crimson Pro', serif;
}

.smallerParagraphs p strong {
    font: 700 normal var(--smallerParagraphs) 'Crimson Pro', serif;
}

/*bigger Paragraphs*/
.biggerParagraphs,
.biggerParagraphs p {
    font: 400 normal var(--biggerParagraphs) 'Crimson Pro', serif;
}

.biggerParagraphs p strong {
    font: 700 normal var(--biggerParagraphs) 'Crimson Pro', serif;
}

/* 3.1 Flexible Content
##################################################### */

.slider-kritiken .slider-item-info {
    padding: 30px;
}

.container-slider-info {
    margin-top: -140px;
    /*Defaults -> js-ovverride */
}

.container-slider-info>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-left: -30px;
    margin-right: -30px;
}

.hero-slider-for {
    flex: 0 0 calc(100% - 0px);
    color: var(--lightColor);
    background-color: var(--primaryColor);
}

.hero-slider-for h2,
.hero-slider-for h1 {
    color: var(--lightColor);
    margin-top: 5px;
    font-size: var(--DisplayHead);
    margin-bottom: 10px;
    line-height: 0.9;
}

.hero-slider-for a {
    color: var(--lightColor);
}

.subline-wrap {
    margin: -7.5px 0 25px 0;
}

.hero-slider-for h3 {
    color: var(--lightColor);
    margin: 0;
    font-weight: 400;
    display: inline-block;
}

.heft-teaser {
    background-image: linear-gradient(to bottom, transparent 0px, transparent 27px, var(--primaryColor) 27px, var(--primaryColor) 100%);
    color: var(--lightColor);
    flex: 0 0 calc(205px);
    z-index: 1;

}

.heft-teaser-inner {
    background-color: var(--lightColor);
    padding: 10px 10px 5px 10px;
    margin-right: 30px;
    margin-bottom: 30PX;
    letter-spacing: 0.5px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.75);
}

.heft-teaser-inner>div {
    overflow: visible;
}

.heft-teaser-inner p {
    display: block;
    color: var(--primaryColor);
}

.heft-teaser .img-overlay {
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s all;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.heft-teaser .img-overlay div .btn {
    margin: 5px 0;
    color: var(--lightColor) !important;
    min-width: 120px;
    font-size: var(--smallFS) !important;
}

.heft-teaser .img-wrap:hover .img-overlay {
    pointer-events: all;
    opacity: 1;
}

.heft-teaser img:hover {
    transform: scale(1.05);
}

.heft-teaser img {
    transition: 0.25s all;
    margin-bottom: 2.5px;
}

.container-slider-info .cat-info {
    background-color: var(--lightColor);
    right: 0px;
    color: var(--primaryColor);
}

.teaser-kritiken h4 {
    display: inline-block;
}

.teaser-kritiken .kritik-info {
    display: flex;
}

.slider-item-info .meta-info span {
    display: inline-block;
    font-size: var(--smallerParagraphs);
}

.slider-item-info .meta-info span:nth-of-type(even) {
    margin-right: 7.5px;
}

.slider-item-info .meta-info span:nth-of-type(odd) {
    margin-right: 3.5px;
}

@media screen and (max-width:991px) {
    .slider-item-info p {
        display: flex;
        flex-wrap: wrap;
    }

    .slider-item-info .meta-info span {
        font-size: var(--paragraphs);
    }

    .slider-item-info:not(.slider-item-info-single) .meta-info span:nth-of-type(odd) {
        flex: 0 0 85px;
    }

    .slider-item-info:not(.slider-item-info-single) .meta-info span:nth-of-type(even) {
        flex: 0 0 calc(100% - 110px);
    }

    .hero-slider-for h3 {
        font-size: var(--quaternaryHead);
    }

    .subline-wrap {
        margin: -5px 0 25px 0;
    }
}

@media screen and (max-width:767px) {
    .hero-slider-for {
        flex: 0 0 calc(100% - 0px);
    }

    .subline-wrap {
        margin: 0px 0 5px 0;
    }

    .hero-slider-for h3 {
        font-size: var(--quaternaryHead);
    }

    .hero-slider-for h2,
    .hero-slider-for h1 {
        margin-top: 0px;
        margin-bottom: 5px;
    }

    .slider-kritiken .slider-item-info {
        padding: 30px 30px 25px 30px;
    }

    .slider-kritiken {
        margin-bottom: 15px;
    }

    .container-slider-info {
        margin-top: -120px;
        /*Defaults -> js-ovverride */
    }
}

@media screen and (max-width:576px) {
    .container-slider-info {
        margin-top: -5px !important;
        /* Override js-ovverride */
    }

    .container-slider-info>div {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/*Teaser-Kritiken*/

.teaser-kritiken .kritik-info {
    display: flex;
}

.teaser-kritiken .kritik-info span:first-of-type {
    flex: 0 0 87.5px;
}

.teaser-kritiken .kritik-info span:last-of-type {
    flex: 0 0 calc(100% - 87.5px);
}

@media screen and (max-width:991px) {
    /*  .home .teaser-kritiken .row .cpt-item:nth-of-type(5),
    .home .teaser-kritiken .row .cpt-item:nth-of-type(6) {
        display: none;
    }*/
}

@media screen and (max-width:767px) {
    /* .home .teaser-kritiken .row .cpt-item:nth-of-type(3),
    .home .teaser-kritiken .row .cpt-item:nth-of-type(4) {
        display: none;
    }*/

    .teaser-kritiken .btn {
        margin-top: 15px;
    }
}

/*Hefte Slider*/
.slider-hefte .slick-slide {
    margin: 0px 15px;
}

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

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

.slider-hefte .btn {
    margin-top: 25px;
}

.slider-hefte img {
    transition: 0.5s all;
}

.slider-hefte .img-wrap:hover img {
    transform: scale(1.1);
}

.slider-hefte .img-wrap {
    text-align: center;
}

@media screen and (min-width:1200px) {
    .slider-hefte .img-overlay h3 {
        font: normal 500 var(--DisplayHeadSub) 'Teko', sans-serif !important;
        margin-bottom: 5px;
    }
}

@media screen and (max-width:767px) {
    .slider-hefte .img-overlay h3 {
        font: normal 400 var(--DisplayHeadSub) 'Teko', sans-serif !important;
        margin-bottom: 5px;
    }
}

.slider-hefte .img-overlay small {
    font-size: 50%;
}

.slider-hefte .img-overlay {
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s all;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-hefte .img-overlay div .btn {
    margin: 5px 0;
    min-width: 147.5px;
}

@media screen and (max-width:1199px) {
    .slider-hefte .img-overlay div .btn {
        min-width: 120px;
        font-size: var(--smallFS);
    }
}

.slider-hefte .img-wrap:hover .img-overlay {
    pointer-events: all;
    opacity: 1;
}

/*Leseprobe*/
.leseprobe .btn-secondary {
    margin-top: 0px;
    transform: translateY(-26.5px);
}

.leseprobe p {
    margin-bottom: 20px;
    font-weight: 700;
}

@media screen and (min-width:768px) {
    .leseprobe p {
        font-size: 1.25rem;
    }
}

.leseprobe p:last-of-type {
    margin-bottom: 0;
}

.leseprobe .img-wrap.wrap-normal {
    margin-bottom: 15px;
}

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

    .leseprobe .btn-secondary {
        transform: translateY(-25px);
    }
}

/*Werbung*/
.werbung {
    font: 400 normal var(--smallerFS) 'Roboto', sans-serif;
    color: var(--darkGray);
    background-image: linear-gradient(135deg, #ffffff 6.25%, #f7f8fb 6.25%, #f7f8fb 50%, #ffffff 50%, #ffffff 56.25%, #f7f8fb 56.25%, #f7f8fb 100%);
    background-size: 11.31px 11.31px;
}

.werbung img {
    margin-top: 7.5px;
    width: 100%;
}

/*CPT Teaser*/
.cpt-teaser h2 {
    margin-bottom: 30px;
}

.cpt-teaser .img-wrap {
    margin-bottom: 10px;
}

.cpt-teaser a:hover {
    text-decoration: none;
}

.cpt-teaser img {
    object-position: center center;
    transition: 0.5s all;
    width: 100%;
}

.cpt-teaser .ad-item video {
    width: 100%;
}

.cpt-teaser .cpt-item:not(.ad-item) a:hover img {
    transform: scale(1.05) !important
}

.cpt-teaser a:hover h3 {
    text-decoration: underline;
}

.cpt-teaser h3 {
    color: var(--primaryColor);
}

.cpt-teaser .cat-info {
    background-color: var(--primaryColor);
    color: var(--lightColor);
    right: 0;
}

.cpt-teaser .container .row.cpt-item-wrap {
    margin-top: -15px;
    margin-bottom: -15px;
}

.cpt-teaser .cpt-item {
    margin-top: 15px;
    margin-bottom: 15px;
}

.cpt-teaser a:not(.btn) {
    color: var(--darkColor);
}

.cpt-teaser:not(.teaser-kritiken) h3 {
    margin-bottom: 7.5px;
}

@media screen and (max-width:991px) {
    body:not(.archive) .cpt-teaser:not(.teaser-kritiken) .row .cpt-item:nth-of-type(3) {
        display: none;
    }
}

@media screen and (max-width:767px) {
    body:not(.archive) .cpt-teaser:not(.teaser-kritiken) .row .cpt-item:nth-of-type(2) {
        display: none;
    }

    .cpt-teaser h2 {
        margin-bottom: 0px;
    }
}

/*DDB Map*/


.ddb-karten .map-desc-wrap {
    padding: 25px 30px 30px 30px;
    /* position: absolute;
    bottom: 0;
    left:0;
    right: 0;
    margin: 0 auto;*/

}

.ddb-karten .BGprimaryColor {
    position: relative;
    z-index: 1111;
}

.ddb-karten .map-desc-wrap h2 {
    margin-bottom: 10px;
}

.ddb-karten .map-desc-wrap h2.empty-desc {
    margin-bottom: -10px;
}

.desc-slider .slick-dots {
    position: absolute;
    top: -1px;
    right: 0;
}

.desc-slider .slick-dots li {
    display: inline-block;
}

.desc-slider .slick-dots button {
    background-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--primaryColor) !important;
    position: absolute;
    font: 400 normal 12px 'Roboto', sans-serif;
    padding: 7.5px 10px;
    line-height: 1;
    z-index: 1;
    border: none !important;
    position: relative !important;
}

.desc-slider .slick-dots .slick-active button {
    background-color: rgba(255, 255, 255, 1) !important;
}



/*Teaser Festival Planer*/
.teaser-klein .BGlighterGray {
    padding: 37.5px 30px 40px 30px;
}

.teaser-klein h3 {
    color: var(--primaryColor);
    font-size: var(--DisplayHeadSub);
    margin-bottom: 12.5px;
}

.teaser-klein p {
    margin: 0 auto;
    max-width: 575px;
}

.teaser-klein p {
    margin-bottom: 20px;
}

.teaser-klein p:last-of-type {
    margin-bottom: 0;
}

/*Premierensuche*/
.teaser-gross p {
    margin-bottom: 20px;
}

.teaser-gross p:last-of-type {
    margin-bottom: 0;
}

form#premierensuche .btn {
    margin: 0px;
    min-width: 240px;
    text-align: center;
}

form#premierensuche input {
    color: var(--lightColor);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
}

form#premierensuche {
    width: 100%;
    display: flex;
    margin-bottom: 32.5px;
}

form#premierensuche input {
    flex: auto;
}

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

    form#premierensuche {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    form#premierensuche .btn {
        min-width: 100%;
    }

    form#premierensuche input {
        flex: 0 0 100%;
        text-align: center;
    }
}

/*Teaser JB*/
.teaser-jb svg.jb-logo {
    width: 190px;
    height: auto;
}

.teaser-jb .BGdarkColor {
    background-image: linear-gradient(-8deg, var(--tertiaryColor) 0px, var(--tertiaryColor) calc(45%), transparent calc(45% + 1px), transparent 100%);
}

.teaser-jb .col-12>div {
    display: flex;
    justify-content: space-between;
}

.teaser-jb .col-12>div:first-of-type {
    padding: 0px 30px;
}

.teaser-jb svg.jb-logo {
    margin-top: 35px;
}

.teaser-jb .btn {
    background: none !important;
    color: var(--tertiaryColor) !important;
    padding: 18px 22.5px 21px 22.5px;
    margin-bottom: 35px;
}

.teaser-jb .btn {
    position: relative;

}

.teaser-jb .btn:after {
    z-index: -1;
    content: "";
    background-color: var(--lightColor);
    transform: rotate(-8deg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.teaser-jb p {
    font-size: var(--quaternaryHead);
    font-weight: 700;
}

.teaser-jb .heft-teaser {
    background-image: none !important;
    margin-top: -20px;
    z-index: 1;
    overflow: visible;
}

.teaser-jb .heft-teaser img {
    margin-top: -7.5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
}

.teaser-jb .img-wrap {
    overflow: visible;
}

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

    .teaser-jb .col-12>div:first-of-type {
        padding: 0px 20px;
    }

    .teaser-jb .BGdarkColor {
        background-image: linear-gradient(-8deg, var(--tertiaryColor) 0px, var(--tertiaryColor) calc(25%), transparent calc(25% + 1px), transparent 100%);
    }

    .teaser-jb .heft-teaser {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .teaser-jb .col-12>div {
        flex-wrap: wrap;
    }

    .teaser-jb .col-12>div div:first-of-type {
        flex: 0 0 100%;
    }

    .teaser-jb .heft-teaser {
        margin-left: auto;
    }
}

/*Teaser Aktuelle Ausgabe*/
.teaser-aktuelle-ausgabe svg.ddb-logo {
    width: auto;
    height: 55px;
    margin: 30px 0 -5px 0;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

.teaser-aktuelle-ausgabe svg.ddb-logo path,
.teaser-aktuelle-ausgabe svg.ddb-logo rect {
    fill: var(--lightColor);
}

.teaser-aktuelle-ausgabe .col-12>div {
    display: flex;
    justify-content: space-between;
}

.teaser-aktuelle-ausgabe .col-12>div:first-of-type {
    padding: 0px 30px;
}

.teaser-aktuelle-ausgabe .col-12>div:first-of-type>div {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.teaser-aktuelle-ausgabe .teaser-btn-wrap {
    margin-top: auto;
    flex: 0 0 100%;
    margin-bottom: 30px;
}

.teaser-aktuelle-ausgabe .btn {
    margin-right: 20px;
}

.teaser-aktuelle-ausgabe p {
    font-size: var(--biggerParagraphs);
    flex: 0 0 100%;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

.teaser-aktuelle-ausgabe .heft-teaser {
    background-image: none !important;
    z-index: 1;
    overflow: visible;
    transform: translateY(-30px);
}

.teaser-aktuelle-ausgabe .heft-teaser img {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.75);
}

.teaser-aktuelle-ausgabe .img-wrap {
    overflow: visible;

}

@media screen and (max-width:767px) {
    .teaser-aktuelle-ausgabe svg.ddb-logo {
        margin: 22.5px 0 7.5px 0;
    }

    .teaser-aktuelle-ausgabe .teaser-btn-wrap {
        margin-bottom: 22.5px;
    }

    .teaser-aktuelle-ausgabe .col-12>div:first-of-type {
        padding: 0px 20px;
    }

    .teaser-aktuelle-ausgabe .heft-teaser {
        margin-top: 0px;
        margin-bottom: 22.5px;
        transform: translateY(0px);
    }

    .teaser-aktuelle-ausgabe .col-12>div {
        flex-wrap: wrap;
    }

    .teaser-aktuelle-ausgabe .col-12>div div:first-of-type {
        flex: 0 0 100%;
    }

    .teaser-aktuelle-ausgabe .heft-teaser {
        margin: 0px 0 20px 0px;
    }
}

/*Teaser Podcast*/

.teaser-podcast .row>div>div {
    padding: 30px;
}

@media screen and (min-width:768px) {
    .teaser-podcast .row>div>div {
        display: flex;
    }
}

.teaser-podcast .row>div>div>div:first-of-type {
    flex: 0 0 25%;
    margin-right: 30px;
}

.teaser-podcast .row>div>div>div:last-of-type {
    flex: 0 0 calc(75% - 30px);
    padding-top: 10px;
}

.teaser-podcast h2 {
    margin-bottom: 0;
    margin-top: 7.5px;
}

.teaser-podcast .btn {
    position: relative;
    padding-left: 40px;
    margin-left: 26.5px;
}

.teaser-podcast .btn svg {
    position: absolute;
    top: 0;
    height: 53px;
    left: -26.5px;
    width: 53px;
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width:767px) {
    .teaser-podcast .row>div>div>div:first-of-type {
        margin-right: 0px;
        max-width: 50%;
    }

    .teaser-podcast .row>div>div>div:last-of-type {
        padding-top: 30px;
    }

    .teaser-podcast .btn svg {
        height: 48px;
        left: -24px;
        width: 48px;
    }

    .teaser-podcast .btn {
        padding-left: 37.5px;
        margin-left: 24px;
    }
}

/*Text*/
.text p {
    margin-bottom: 20px;
}

.text p:last-of-type {
    margin-bottom: 0px;
}

.text a {
    color: var(--linkColor);
}

.text h2 {
    margin-bottom: 10px;
}

/*Text*/
.bild .caption {
    margin: 10px 0;
}

/*Headerbar*/
.headerbar h1 {
    margin-bottom: 10px;
}

/*Material*/
#contentwrap .material {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media screen and (max-width:767px) {
    #contentwrap .material h2 {
        margin-bottom: 17.5px;
    }

}

.file-wrap span.ext {
    color: var(--darkGray);
    padding-top: 1px;
    text-decoration: none !important;
    padding-left: 7.5px;
    pointer-events: none !important;
    text-transform: uppercase;
}

.material a {
    font: 400 normal var(--paragraphs) 'Crimson Pro', serif;
    color: var(--primaryColor);
    margin: 5px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.material div.file-wrap:last-of-type a {
    margin-bottom: 0;
}

@media screen and (max-width:991px) {
    .file-wrap span.ext {
        padding-bottom: 1px;
    }
}

@media screen and (max-width:767px) {
    .material a:last-of-type {
        margin-bottom: 0;
    }
}

/*Partner*/
.partner .row {
    margin-top: -30px;
    margin-bottom: -30px;
}

.partner [class*='col-'] {
    margin: 30px 0;
}

.partner .img-wrap {
    margin-bottom: 25px;
}

.partner .img-wrap:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--primaryColor);
    opacity: 0.15;
    z-index: -2;
    transform: translateZ(-1px) translateX(0px) translateY(0px) rotate(0deg);
}

.partner .img-wrap:before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    content: "";
    background-color: var(--lightColor);
}

.partner .img-wrap img {
    object-fit: contain;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: auto;
    bottom: 0;
    right: 0;
    max-width: 60%;
    max-height: 60%;
}

@media screen and (max-width:767px) {
    .partner .row {
        margin-top: -15px;
        margin-bottom: -15px;
    }

    .partner [class*='col-'] {
        margin: 15px 0;
    }

    .partner .img-wrap:before {
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }

    .partner .img-wrap img {
        width: calc(100% - 16px);
        height: calc(100% - 16px);

    }
}

/*Redaktion*/
.redaktion .img-wrap {
    margin-bottom: 25px;
}

.redaktion .row {
    margin-top: -30px;
    margin-bottom: -30px;
}

.redaktion [class*='col-'] {
    margin: 30px 0;
}

.redaktion .person-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.redaktion .smallerParagraphs {
    margin-top: 2px;
}

.redaktion .person-info {
    margin-top: auto;
    padding-top: 25px;
    width: 100%;
}

.redaktion .person-info p {
    display: flex;
}

.redaktion .person-info a {
    word-break: break-word;
}

.redaktion .person-info p span:first-of-type {
    flex: 0 0 60px;
}

.redaktion .person-info p span:last-of-type {
    flex: 0 0 calc(100% - 60px);
}

/*Newsletter*/
form .form-group {
    margin-top: 10px;
}

/*Akkordion*/
#contentwrap section.akkordion {
    padding-top: 15px;
    padding-bottom: 15px;
}

#contentwrap .accordion ul {
    list-style: none !important;
    padding: 0;
}

#contentwrap .accordion h3 {
    margin-bottom: 0px;
}

#contentwrap ul.accordion {
    margin-bottom: -10px;
    margin-top: -10px;
}

.accordion ul .inner {
    padding: 20px 0px 0px 0px;
    overflow: hidden;
    display: none;
    margin-bottom: 0px;
}

.accordion ul .inner p {
    margin-bottom: 15px;
}

.accordion ul .inner p:last-of-type {
    margin-bottom: 0px;
}

.accordion ul>li:before {
    display: none;
}

#contentwrap .accordion>li {
    margin: 10px 0;
}

#contentwrap .accordion span.accordion-intro {
    display: inline-block;
    margin-top: 15px;
}

#contentwrap .accordion span.accordion-intro p {
    font-weight: 700;
}

#contentwrap .accordion ul>li a.toggle-acc {
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: 15px;
    color: var(--primaryColor);
    border-bottom: 1px solid #d4d3d3;
    padding: 12.5px 50px 12.5px 0px;
    transition: background 0.3s ease;
    font: normal 400 var(--smallerParagraphs) 'Crimson Pro', sans-serif;
}

#contentwrap .accordion ul>li a.toggle-acc .icon-down {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 12.5px;
    width: 12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transition: 0.35s all;
}

#contentwrap .accordion ul>li a.toggle-acc .icon-down svg {
    transition: 0.35s all;
    transform-origin: 50% 50%;
    margin-top: 10px;
    width: 10px;
    height: 7.5px
}

#contentwrap .accordion ul>li a.toggle-acc.active .icon-down svg {
    margin-top: -5px;
}

#contentwrap .accordion ul>li a.toggle-acc svg path {
    stroke: var(--primaryColor);
}

#contentwrap .accordion ul>li a.toggle-acc.active .icon-down {
    transform: rotate(180deg);
}

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

    .accordion ul .inner {
        padding: 10px 0;
    }

    #contentwrap .accordion h3 {
        margin-bottom: 10px;
    }

}

/* 4. Custom Post Types (CPT)
##################################################### */

.share-sm-wrap {
    background-color: var(--primaryColor);
    color: var(--lightColor);
    flex: 0 0 calc(120px);
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    padding-top: 47.5px;
    padding-right: 30px;
}

@media screen and (min-width:768px) {
    .share-sm-wrap {
        position: relative;
    }
}

.single .hero-slider-for {
    flex: 0 0 calc(100% - 120px);
}

.header-credits {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--lightColor);
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 15px;
}

/*
.single .slider-item-info .meta-info span {
    display: inline;
}*/

.single article h4,
.single article h3,
.single article h2,
.single:not(.single-blog) article h1 {
    font-size: var(--DisplayHeadSub);
    font-weight: 400;
    color: var(--darkColor);
    margin-bottom: 15px;
    line-height: 1;
}

.single article p {
    margin-bottom: 30px;
}

.single article p:empty {
    display: none !important;
}

.single article p a {
    color: var(--linkColor) !important;
}

.single article p a:hover {
    color: var(--linkColor) !important;
    text-decoration: underline;
}

.single article p:last-of-type {
    margin-bottom: 0px;
}

.copy-article {
    margin-bottom: 20px;
}

.copy-article p {
    color: var(--darkGray);
}

.single .container-slider-info>div>div {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

p .term-separator:last-of-type,
div .term-separator:last-of-type,
h3 .term-separator:last-of-type,
h4 .term-separator:last-of-type span .term-separator:last-of-type {
    display: none !important;
}

.single article .wp-caption {
    width: 100% !important;
}

.single article img {
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.single article img.size-medium {
    max-width: 300px;
    display: block !important;
}

.single article .wp-caption p {
    text-align: center;
}

.single article .gallery {
    margin: -5px -15px 15px -15px !important;
}

.single article .gallery-icon {
    width: 100%;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.single article .gallery .gallery-item {
    margin: 12.5px 0px 15px 0px !important;
    padding: 0 15px;
}

.single article .gallery-item a,
.single article .gallery-item img {
    border: none !important;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: 0.5s all;
    max-width: 100% !important;
}

.single article .gallery-item a:hover img {
    transform: scale(1.05);
}

.single article .gallery-item .wp-caption-text {
    display: none !important;
}


@media screen and (min-width:992px) {
    .single .container-slider-info>div>div {
        max-width: 66.66667%;
    }
}

.single .slider-item-info {
    position: relative;
}

@media screen and (max-width:767px) {
    .share-sm-wrap {
        flex: 0 0 100%;
        background-image: none;
        background-color: var(--primaryColor);
        padding-top: 0px;
        padding-bottom: 30px;
        padding-left: 20px;
        justify-content: flex-start;
    }

    .single .hero-slider-for {
        flex: 0 0 calc(100% - 0px);
    }

    .single .slider-kritiken .slider-item-info {
        padding: 30px 30px 15px 30px;
    }

    .single .teaser-kritiken .row .cpt-item:nth-of-type(3) {
        display: block;
    }

    .single .teaser-kritiken .btn.btn-primary {
        margin-bottom: 15px;
    }

    .single footer {
        margin-top: 30px;
    }
}

/* 4.1 Single Post*/
.single-blog article .img-wrap {
    margin-bottom: 30px;
}

.single-blog h1 {
    margin-bottom: 12.5px;
}

@media screen and (min-width:768px) {
    .single-blog article .row [class*='col-']:first-of-type {
        margin-left: -15px;
        margin-right: -15px;
        flex: 0 0 calc(100% + 30px);
        max-width: calc(100% + 30px);
    }
}

/* 4.2 Single Heft*/

.single-heft.single .heft-wrap {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.75);
}

.single-heft.single .heft-wrap .img-wrap:after {
    content: "Blätterfunktion nicht verfügbar";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.75);
    transition: 0.35s all;
    position: absolute;

    top: 0;
    right: 0;
    display: flex;
    padding: 7.5px 10px;
    align-items: center;
    justify-content: center;
    font: 400 normal 12px 'Roboto', sans-serif;
}

.single-heft.single .heft-wrap {
    margin: 30px auto 15px auto;
}

.single-heft.single .slider-kritiken .hero-slider-nav .slider-item {
    background-color: var(--lighterGray);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.single-heft.single .df-container {
    background-color: var(--lighterGray) !important;
    -ms-touch-action: pan-y !important;
    touch-action: pan-y !important;
}

.single-heft.single .hero-slider-for {
    flex: 0 0 calc(100% - 0px);
}

.single-heft .slider-item-info-single {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

.single-heft .slider-item-info-single div:first-of-type {
    flex: 0 0 calc(100% - 313px);
}

@media screen and (max-width:767px) {
    .single-heft .slider-item-info-single div:first-of-type {
        flex: 0 0 calc(100% - 0px);
        margin-bottom: 20px;
    }

    .single-heft .slider-item-info-single {
        flex-wrap: wrap;
    }

    .single-heft .slider-item-info-single div .btn {
        margin-bottom: 12.5px;
    }
}

.single-heft .slider-item-info-single div .btn {
    margin-top: 0;
}

.single-heft .slider-item-info-single div .btn:last-of-type:not(:first-of-type) {
    margin-left: 20px;
}


.single-heft.single .hero-slider-for h1 {
    margin-bottom: 0px;
}

.heft-btn-info {
    margin-top: 15px;

    margin: 30px auto 0 auto;

}

@media screen and (max-width:767px) {
    .heft-btn-info {
        padding: 0 15px;
    }
}

@media screen and (max-width:576px) {
    .single-heft.single .heft-wrap {
        margin: 30px 30px 15px 30px;
    }
}

.heft-btn-info,
.heft-btn-info p {
    color: var(--darkGray);
    font-size: var(--smallerParagraphs) !important;
}

.heft-btn-info a {
    color: var(--linkColor);
}

.single-heft .hero-slider-for a {
    color: var(--primaryColor);
}

.single-heft .ti-layout-grid2,
.single-heft .df-ui-btn.df-ui-more,
.single-heft .df-ui-btn.df-ui-share {
    display: none !important;
}

/*Teaser Leseprobe: Single Heft*/

.single-heft .leseprobe-teaser-heft .row>div>div {
    padding: 30px 15px 3.5px 15px;
}

.single-heft .leseprobe-teaser-heft-wrap {
    display: flex;
    flex-wrap: wrap;
}

.single-heft .leseprobe-teaser-heft-wrap .img-wrap {
    overflow: visible;
}


.single-heft .leseprobe-teaser-heft-wrap>div:first-of-type {
    flex: 0 0 calc(37.5% - 15px);
    margin-right: 30px;
}

.single-heft .leseprobe-teaser-heft-wrap>div:last-of-type p:first-of-type {
    margin: -2.5px 0 15px 0;
}

.single-heft .leseprobe-teaser-heft-wrap>div:last-of-type {
    flex: 0 0 calc(62.5% - 15px);
}

.single-heft .leseprobe-teaser-heft-wrap .btn {
    transform: translateY(-26.5px);
    margin-top: 0px;
}

.single-heft .leseprobe-teaser-heft-wrap a:not(.btn) {
    color: var(--darkColor);
}


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

    .single-heft .leseprobe-teaser-heft-wrap .btn {
        transform: translateY(-25px);
    }
}

@media screen and (max-width:576px) {
    .single-heft .leseprobe-teaser-heft-wrap>div:first-of-type {
        flex: 0 0 calc(100% - 0px);
        margin-right: 0px;
        margin-bottom: 0px;
    }

    .single-heft .leseprobe-teaser-heft-wrap>div:last-of-type {
        flex: 0 0 calc(100% - 0px);
    }

    .single-heft .leseprobe-teaser-heft-wrap .btn {
        transform: translateY(-25px);
    }

    .single-heft .leseprobe-teaser-heft .row>div>div {
        padding: 30px 27.5px 30px 27.5px;
    }
}

/* 4.3 Single Leseprobe*/

.heft-info {
    margin-top: 15px;
}

.leseprobe-shop {
    float: right;
    padding: 25px 25px 22.5px 25px;
    width: 270px;
    margin: 7.5px 0px 30px 30px;
    position: relative;
}

.leseprobe-shop .img-wrap {
    margin-bottom: 7.5px;
}

.leseprobe-shop a,
.leseprobe-shop span {
    color: var(--primaryColor);
    z-index: 2;
    position: relative;
    font-size: var(--smallFS);
}

.leseprobe-shop span.ausgabe-info {
    font-style: italic;
    font-size: var(--paragraphs) !important;
}

.leseprobe-shop img {
    transition: 0.35s all;
}

.leseprobe-shop a:hover img {
    transform: scale(0.975);
}

.leseprobe-shop:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--primaryColor);
    opacity: 1;
    z-index: -2;
    transform: translateZ(-1px) translateX(0px) translateY(0px) rotate(0deg);
}

.leseprobe-shop:before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    content: "";
    background-color: var(--lightColor);
}

.leseprobe-shop .img-overlay {
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s all;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.leseprobe-shop .img-overlay div .btn {
    margin: 5px 0;
    color: var(--lightColor) !important;
    min-width: 120px;
}

.leseprobe-shop .img-wrap:hover .img-overlay {
    pointer-events: all;
    opacity: 1;
}

.leseprobe-shop .img-wrap img {
    transition: 0.35s all;
}

.leseprobe-shop .img-wrap:hover img {
    transform: scale(1.1);
}

@media screen and (max-width:576px) {
    .leseprobe-shop {
        float: none;
        width: 100%;
        margin: 30px 0px 30px 0px;
    }
}

/*E-Reader*/
.df-lightbox-wrapper .df-ui-controls .ti-sharethis,
.df-lightbox-wrapper .df-ui-controls .ti-layout-grid2,
.df-lightbox-wrapper .df-ui-controls .ti-more-alt {
    display: none !important;
}


.df-lightbox-wrapper .df-lightbox-close {
    background-color: transparent !important;
    color: var(--darkColor) !important;
    opacity: 0.3 !important;
}

.df-lightbox-wrapper .df-lightbox-close:hover {
    opacity: 0.7 !important;
    text-shadow: 0 0px 7.5px rgba(0, 0, 0, .15);
}

.df-lightbox-wrapper .df-floating .df-ui-controls {
    border-radius: 0px !important;
    background-color: var(--lightColor) !important;
    box-shadow: none !important;
    border: 0px solid #e0e0e0 !important;
    height: 42px !important;
}

.df-ui-wrapper .df-ui-btn:hover {
    box-shadow: 0 0px 7.5px rgba(0, 0, 0, .15) !important;
}

.df-ui-page label {
    padding-top: 13px !important;
}

.df-ui-page label,
#df_book_page_number {
    font-family: 'Roboto', sans-serif;
    color: var(--darkColor) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.df-ui-wrapper .df-ui-btn {
    background-color: var(--lightColor) !important;
    color: var(--darkColor) !important;
    border-radius: 0px !important;
    border: 1px solid #e0e0e0 !important;
    margin: 0 -0.5px !important;
    width: 40px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.df-container .loading-info {
    border-radius: 0px !important;
    font-family: 'Crimson Pro' !important;
}

/* 4.4 Single-Kritik*/
p.medialink {
    margin-top: 7.5px;
}

.article-info {
    display: flex;
    flex-wrap: wrap;
}

.article-info span:nth-of-type(odd) {
    flex: 0 0 52.5px;
}

.article-info span:nth-of-type(even) {
    flex: 0 0 calc(100% - 52.5px);
}

@media screen and (max-width:767px) {
    .article-info span:nth-of-type(odd) {
        flex: 0 0 40px;
    }

    .article-info span:nth-of-type(even) {
        flex: 0 0 calc(100% - 40px);
    }
}

/* 4.4 Theater*/

.tax-theater .biggerParagraphs p {
    margin-bottom: 20px;
}

.tax-theater .biggerParagraphs p:last-of-type {
    margin-bottom: 0px;
}

.tax-theater .container-slider-info>div>div {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

@media screen and (min-width: 992px) {
    .tax-theater .container-slider-info>div>div {
        max-width: 66.66667%;
    }
}

.tax-theater .theater-positionen {
    padding-top: 60px;
}

.tax-theater .theater-positionen h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.tax-theater .theater-positionen h3:first-of-type {
    margin-top: 0px;
}

.tax-theater .container-slider-info>div>div {
    width: 100%;
}

.position-wrap {
    display: flex;
    flex-wrap: wrap;
}

.tax-theater .theater-positionen a:hover {
    text-decoration: underline;
}

.tax-theater .cpt-item-wrap p a {
    color: var(--primaryColor);
}

.tax-theater .cpt-item-wrap p a:hover {
    text-decoration: underline !important;
}

.position-wrap:not(:last-of-type) {
    margin-bottom: 15px;
}

.position-wrap img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
    margin-top: -1px;
}

.position-wrap>div {
    flex: 0 0 calc(100% - 80px)
}

@media screen and (max-width:767px) {
    .position-wrap img {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .tax-theater .theater-positionen {
        padding-top: 30px;
        margin-bottom: 15px;
    }

    .position-wrap>div {
        flex: 0 0 calc(100% - 60px)
    }

    .position-wrap img {
        margin-top: -0px;
    }
}

@media screen and (max-width:576px) {
    .tax-theater .theater-positionen p strong {
        display: block;
    }

    .tax-theater .theater-positionen br {
        display: none;
    }

    .position-wrap img {
        margin-top: -4px;
    }

    .text-position-desc {
        display: none;
    }
}

/* 4.5 Personen */
.tax-Person article .img-wrap {
    margin-bottom: 30px;
}

@media screen and (min-width:768px) {
    .personen-image-wrap img {
        margin-top: 60px;
        margin-bottom: 10px;
    }

    .personen-head-wrap {
        min-height: 200px;
    }

    .personen-text-wrap>div {
        padding-left: 25px;
    }
}


.personen-head-wrap {
    margin-bottom: 27.5px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.tax-Person .personen-text-wrap h1 {
    margin-bottom: 22.5px;
}

.personen-head-wrap:after {
    content: "";
    background-color: var(--lighterGray);
    position: absolute;
    width: 200vw;
    left: -50vw;
    height: 100%;
    bottom: 0px;
    z-index: -1;
}

.tax-Person .person-positionen {
    margin-top: 55px;
    margin-bottom: 55px;
}

.tax-Person .person-positionen h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--primaryColor);
}

.tax-Person .person-positionen a {
    color: var(--darkColor);
}

.tax-Person .no-desc .person-positionen h3:first-of-type {
    margin-top: 0px;
}

@media screen and (max-width:767px) {
    .tax-Person .person-positionen {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .personen-image-wrap {
        display: flex;
    }

    .personen-image-wrap img {
        max-width: 185px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .personen-image-wrap:not(.filled-copy-article) {
        position: relative;
    }

    .personen-image-wrap:not(.filled-copy-article):after {
        content: "";
        background-color: var(--lighterGray);
        position: absolute;
        width: 200vw;
        left: -100vw;
        height: 100px;
        top: 0px;
        z-index: -1;
    }

    .personen-head-wrap:after {
        display: none;
    }

    .personen-head-wrap,
    .tax-Person .personen-text-wrap h1,
    .personen-text-wrap {
        position: static;
        margin-bottom: 0;
    }

    .tax-Person article .row {
        position: relative;
    }

    .tax-Person .person-positionen h3 {
        font-size: var(--quaternaryHead);
    }

    .tax-Person .copy-article {
        padding-left: 15px;
        display: flex;
        align-items: flex-start;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .tax-Person .copy-article p {
        font-size: var(--smallFS);
        flex: 0 0 100%;
        position: relative;
    }

    .tax-Person .copy-article p:after {
        content: "";
        background-color: var(--lighterGray);
        position: absolute;
        width: 200vw;
        left: -100vw;
        height: calc(100% + 60px);
        top: -30px;
        z-index: -1;
    }


    .tax-Person .copy-article p span {
        flex: 0 0 100%;
    }
}

@media screen and (max-width:576px) {
    .tax-Person .person-positionen p strong {
        display: block;
    }

    .tax-Person .person-positionen br {
        display: none;
    }
}

/*Tax Autor*/
.tax-autor-posts {
    margin-top: 30px;
    margin-bottom: 10px;
}

.tax-autor-posts:last-of-type:not(:first-of-type) {
    margin-top: 37.5px;
}

.tax-autor-posts h3 {
    margin-top: 30px;
    margin-bottom: 5px;
    color: var(--primaryColor);
}

.tax-autor-posts a {
    color: var(--darkColor);
}

.tax-autor-post {
    padding: 8px 0 11px 0;
    display: none;
    border-bottom: 1px solid #e0e0e0;
}

.tax-redakteur .personen-text-wrap p {
    margin-bottom: 20px;
}

.loadMore {
    color: var(--primaryColor);
    font-weight: 700;
    padding-top: 10px;
}

.post-autor-extended {
    color: var(--darkGray);
    margin-top: 45px;
}

.post-autor-extended img {
    display: inline-block;
    width: 75px !important;
    height: 75px !important;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px !important;
    margin-bottom: 5px !important;
    margin-top: -1px;
}

@media screen and (max-width:767px) {
    .post-autor-extended img {
        width: 60px !important;
        height: 60px !important;
    }

    .tax-redakteur .personen-text-wrap p {
        margin-bottom: 15px;
    }
}

/* 4.6 Pagination*/
.pagination-row .page-numbers {
    font: normal 400 var(--btnFS) 'Crimson Pro', serif;
    border: 1px solid #e0e0e0;
    width: 50px;
    color: var(--darkColor);
    padding-bottom: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 0;
    margin: 0 -0.5px;
}

.pagination-row a.page-numbers:hover {
    box-shadow: 0 0px 7.5px rgba(0, 0, 0, .15);
    text-decoration: none;
}

.pagination-row .page-numbers.current {
    border: 1px solid var(--primaryColor);
    background-color: var(--primaryColor);
    color: var(--lightColor);
}

.pagination-row .page-numbers.next,
.pagination-row .page-numbers.prev {
    font: normal 400 var(--paragraphs) 'Crimson Pro', serif;
    padding-bottom: 0.5px;
}

.pagination-row>div {
    margin: 0 auto;
}

.pagination-row .nav-links {
    display: flex;
}

.pagination-row .pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 0px;
}

.main-search-no-results {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 45px;
}

.main-search-no-results h3 {
    color: var(--primaryColor);
}

@media screen and (max-width:767px) {
    .pagination-row .pagination {
        padding-top: 30px;
        padding-bottom: 0px;
    }
}

/* 5. Footer
##################################################### */

footer {
    margin-top: auto;
    flex: 0 0 100%;
}

#footer-top {
    background-color: var(--lighterGray);
    margin-top: 45px;
    padding: 30px 0 0 0;
    text-align: center;
    font: 400 normal var(--smallFS) 'Roboto', sans-serif;
    color: var(--primaryColor);
}

#footer-top .row>div div {
    background-color: var(--lightColor);
    margin-bottom: 12.5px;
    transition: 0.35s all;
}

#footer-top .row>div div:hover {
    box-shadow: 0 0px 7.5px rgba(0, 0, 0, .15);
}

#footer-top .row>div {
    margin-bottom: 30px;
}

#footer-bottom {
    background-color: var(--primaryColor);
    color: var(--lightColor);
    padding-top: 30px;
    padding-bottom: 30px;
}

#footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 7.5px;
}

footer #menu a {
    color: var(--lightColor);
    font: 500 normal var(--footermenuFS) 'Teko', sans-serif;
}

footer #menu li {
    display: inline-block;
    list-style-type: none;
}

footer #menu li:after {
    content: "•";
    display: inline-block;
    margin: 0 2px 0 6px;
}

footer #menu li:last-of-type:after {
    display: none;
}

#sm-wrap {
    display: flex;
    align-items: center;
}


#sm-wrap a {
    display: inline-block;
    margin-left: 7.5px;
}

@media screen and (max-width:767px) {
    #footer-nav>div {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    #footer-nav {
        margin-top: 10px;
    }

    #sm-wrap a {
        margin-left: 0px;
        margin-right: 7.5px;
    }

    footer #menu li:after {
        margin: 0 0px 0 4px;
        font-size: 12px;
        margin: 0 2px 0 6px;
    }

    footer {
        margin-top: 15px;
    }

    #footer-top {
        margin-top: 30px;
    }
}

.v-sm-wrap {
    background-color: var(--primaryColor);
    position: fixed;
    right: 0;
    top: calc(50% - 0px);
    transform-origin: bottom right;
    transform: translateY(-50%);
    z-index: 11;
    width: 40px;
}

.v-sm-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 15px 0;
}

.v-sm-wrap a svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* 6. Plugins
##################################################### */

/* 6.1 Slick SLider*/
* {
    min-height: 0;
    min-width: 0;
}

.slick-slider {
    -ms-touch-action: pan-y !important;
    touch-action: pan-y !important;
}

.slick-slider:not(.karten-slider) .slick-slide img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slick-arrow {
    transform: translateX(0);
    transition: 0.1s ease-in;
}

.slick-prev {
    background-size: 15px 15px;
    background-image: url(../_img/arrow-slider-left.svg);
    background-repeat: no-repeat;
    background-position: calc(50% + 1.5px) 50%;
    left: 10px;
}

.slick-next {
    background-size: 15px 15px;
    background-image: url(../_img/arrow-slider-right.svg);
    background-repeat: no-repeat;
    background-position: calc(50% - 1.5px) 50%;
    right: 10px;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

@media screen and (max-width:767px) {
    .slick-slide {
        margin: 0px 0px;
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-list, .slick-track, .slick-slide, .slick-slide img {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    zoom: 1;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

.slick-slide img {
    display: block;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 0px solid transparent;
}

.slick-prev, .slick-next {
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
    appearance: none;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    top: calc(50% - 25px);
    margin-top: -10px;
    padding: 0;
    outline: none;
    z-index: 11;
    border: none;
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

@media screen and (max-width:991px) {
    .slick-prev, .slick-next {
        background-size: 12.5px 12.5px;
        height: 38px;
        width: 38px;
    }
}

@media screen and (max-width:767px) {
    .slick-slide {
        margin: 0px 0px;
    }

    .slick-prev, .slick-next {
        height: 28px;
        width: 28px;
        background-size: 9px 9px;
    }
}

.slick-prev:focus, .slick-next:focus {
    outline: none;
}

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

.slick-slide .image {
    padding: 10px;
}

.slick-slider:not(.karten-slider) .slick-slide img {
    display: block;
    width: 100%;
}

.slick-slide img.slick-loading {
    display: none;
}

/* 6.2 Shariff*/
#contentwrap .shariff li,
#contentwrap .shariff li a {
    background-color: transparent !important;
}

#contentwrap .shariff li {
    margin: 0px !important;
}

#contentwrap li.facebook svg {
    height: 18px !important;
    width: auto !important;
}

#contentwrap .shariff li.twitter {
    margin: 0 5px 0 1px !important;
}

#contentwrap li.twitter svg {
    height: 18px !important;
    width: auto !important;
}

#contentwrap li.mailto svg {
    height: 17px !important;
    width: auto !important;
}

/* 6.3 Search and Filter Pro*/

input:not(.mmp-control-filters-selector),
select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    padding: 14px 18.5px 17px 18.5px;
    font: normal 400 var(--btnFS) 'Crimson Pro', serif;
    margin: 0;
    border-radius: 0px;
    color: var(--darkColor);
    background-color: var(--lightColor);
    outline: none;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    width: 100%;
}

input[type="submit"], button {
    background-color: var(--primaryColor);
    color: var(--lightColor);
    width: auto;
    border: 1px solid var(--primaryColor);
}

.search-wrapper input[type="submit"] {
    margin: 0 0 1px;
}

form label {
    margin: 5px 0;
    padding: 0;
    font: 400 normal var(--smallerFS) 'Roboto', sans-serif;
    color: #969694;
    display: block;
    width: 100%;
}

::placeholder {
    color: var(--lightColor);
}

.chosen-single {
    box-shadow: none !important;
    border: 1px solid #e0e0e0 !important;
    padding: 14.5px 18.5px 15px 18.5px !important;
    font: normal 400 var(--btnFS) 'Crimson Pro', serif;
    margin: 0;
    color: var(--darkColor);
    background-color: var(--lightColor) !important;
    background-image: none !important;
    outline: none;
    width: 100%;
    border-radius: 0px !important;
}

#contentwrap .chosen-container-single .chosen-search input[type=text] {
    background-image: url(../_img/search-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) center !important;
    background-size: 10px 10px !important;
}

.chosen-container {
    width: 100% !important;
}

.chosen-container-active .chosen-single {
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15) !important;
}

.chosen-drop {
    border-radius: 0px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 12.5px 17.5px 12.5px 17.5px !important;
}

.chosen-results {
    margin: 0 !important;
    padding: 0px !important;
}

.chosen-results li {
    font: 400 normal var(--smallerParagraphs) 'Crimson Pro', serif !important;
    padding: 2.5px 0px !important;
}

.chosen-results li:hover, .chosen-results li.result-selected {
    background-color: var(--lightColor) !important;
    background-image: none !important;
    color: var(--primaryColor) !important;
}

.chosen-results li.no-results,
.chosen-results li.no-results:hover {
    background-color: var(--lightColor) !important;
    color: var(--darkColor) !important;
    font-style: italic !important;
}

.chosen-results li.highlighted {
    background-color: var(--lightColor) !important;

    background-image: none !important;
}

.chosen-single b {
    display: none !important;
}

.search-wrapper form>ul .sf-field-taxonomy-genre .chosen-search,
.search-wrapper form>ul .sf-field-post_type .chosen-search {
    display: none !important;
}

.chosen-search {
    padding: 0 !important;
    margin-bottom: 5px !important;
}

.chosen-search input {
    padding: 7.5px 20px 7.5px 10px !important;
    font: 400 normal var(--smallerParagraphs) 'Crimson Pro', serif !important;
    color: var(--darkColor) !important;
    margin: 6px 0 5px 0 !important;
    border: 1px solid #e0e0e0 !important;
}

body .search-wrapper h4 {
    margin: 5px 0;
    padding: 0;
    font: 400 normal var(--smallerFS) 'Roboto', sans-serif;
    color: #969694;
}

body .search-wrapper {
    padding: 20px 30px 30px 30px;
    margin: 0 -15px;
    flex: 0 0 calc(100% + 30px);
    max-width: none;
    width: calc(100% + 30px);
}

body .search-wrapper {
    background-color: var(--lighterGray);
    min-height: 128px;
}

.search-wrapper form>ul {
    display: flex !important;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.search-wrapper form>ul>li {
    flex: 0 0 calc(33.333333% - 30px);
    width: calc(33.333333% - 30px);
    margin: 0 15px;
    padding: 0;
}

@media screen and (max-width:767px) {
    .search-wrapper form>ul>li {
        flex: 0 0 calc(100% - 30px);
        width: calc(100% - 30px);
        margin-bottom: 15px;
    }

    .search-wrapper form>ul>li:last-of-type {
        margin-bottom: 0px;
    }

    body .search-wrapper.col-12 {
        margin: 15px;
        max-width: calc(100% - 30px);
        flex: 0 0 calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

/*WP Search*/
.search-wrapper.main-search {
    margin: 0 -30px;
    flex: 0 0 calc(100% + 60px);
    max-width: none;
    width: calc(100% + 60px);
}

.search-wrapper.main-search input[type="submit"] {
    width: 100%;
}

.search-wrapper.main-search small {
    font: 400 normal var(--smallerFS) 'Roboto', sans-serif;
    color: #969694;
    display: block;
    margin-top: 15px;
    margin-left: 2.5px;
}

.search-kritik-info {
    font: 400 normal var(--smallerFS) 'Roboto', sans-serif;
    color: var(--darkGray)
}

.search_box {
    margin-top: 0;
    margin-bottom: -45px;
}

.search-item {
    padding: 30px 0 25px 0;
    display: flex;
    position: relative;
    align-items: flex-start;
}

.search-item .outer-img-wrap {
    width: 100%;
    max-width: 180px;
    margin-right: 30px;
}

.search-item h3 span {
    color: var(--primaryColor)
}

.search-item p {
    color: var(--darkColor);
}

.search-item:hover,
.search-item:hover p,
.search-item:hover h3 {
    color: var(--darkColor);
}

.search-item:hover {
    text-decoration: none !important;
}

.search-item:hover h3 span {
    text-decoration: underline !important;
}

.search-item h3::first-letter {
    text-transform: uppercase;
}

.search-item:after {
    content: "";
    width: calc(100% + 60px);
    height: 1px;
    bottom: 0;
    left: -30px;
    position: absolute;
    border-top: 1px solid #e0e0e0 !important;
}

.search-item:last-of-type::after {
    display: none;
}

p.such-info {
    margin: 45px 0 !important;
}

.search-kritik-info {
    margin-top: 7.5px;
}

@media screen and (max-width:767px) {
    .search-wrapper.main-search {
        margin: 15px 0px 0 0;
        flex: 0 0 calc(100% + 0px);
        width: calc(100% + 0px);
    }

    .such-info {
        margin: 30px 0 !important;
    }

    .search-item:after {
        width: calc(100% + 0px);
        left: 0px;
    }

    .search-item {
        padding: 20px 0 15px 0;
    }

    .search_box {
        margin-top: -5px;
        margin-bottom: -15px;
    }
}

/* 6.5 Adrotate*/
.wrap-ad a {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 5px;
}

.wrap-ad-large a {
    padding-bottom: 21%;
}

.wrap-ad-small a {
    padding-bottom: 10.5%;
}

.wrap-ad img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}

/*Slick for Post Gallery PlugIn*/

.slick-slider-wrapper .slide__inner a,
.slick-slider-wrapper .slide__inner span {
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.slick-slider-wrapper .slide__inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: 0.5s transform;
    z-index: 3 !important;
    opacity: 1 !important;
    display: block !important;
    transform: translate3d(0, 0, 0) !important;
}

.slick-slider-wrapper .slide__inner a:hover img {
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.slick-slider-wrapper .slide__caption {
    position: relative;
    z-index: 1111111111;
    background-color: #fff;
    padding: 5px 0 30px 0;
    text-align: center;
}

.slick-slider-wrapper .slick-track, .slick-slider-wrapper .slick-list {
    transform: none !important;
}

.slick-slider-wrapper .slick-arrow {
    margin-top: -25px !important;
}

.slick-slider-wrapper .slick-track,
.slick-slider-wrapper .slick-list,
.slick-slider-wrapper .slick-cloned {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (max-width:767px) {
    .slick-slider-wrapper .slick-arrow {
        margin-top: -14px !important;
    }
}

/*Baguettebox*/

#baguetteBox-overlay {
    background-color: #fff !important;
}

.baguetteBox-button#close-button {
    top: 10px !important;
    right: 10px !important;
}

.baguetteBox-button {
    opacity: 0.3 !important;
    transition: 0.35s all;
}

.baguetteBox-button:hover {
    opacity: 1 !important;
}

.baguetteBox-button svg g {
    stroke-width: 1.5 !important;
    stroke: var(--darkColor) !important;
}

.baguetteBox-button svg polyline {
    stroke-width: 2.25 !important;
    stroke: var(--darkColor) !important;
}

.baguetteBox-button#next-button {
    right: 10px !important;
    transform: scale(0.825);
}

.baguetteBox-button#previous-button {
    left: 10px !important;
    transform: scale(0.825);
}

.baguetteBox-button {
    background-color: rgba(0, 0, 0, 0) !important;
}

#baguetteBox-overlay .full-image img {
    max-height: calc(100% - 75px) !important;
    max-width: calc(100% - 75px) !important;
    box-shadow: none !important;
}

#baguetteBox-overlay .full-image figcaption {
    color: var(--darkColor) !important;
    background-color: rgba(255, 255, 255, 1) !important;
    font-size: var(--biggerParagraphs) !important;
    font-family: 'Crimson Pro', serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    padding: 15px !important;
    line-height: 1.44 !important
}

/*WP Audio Widget*/

.wp-playlist .wp-playlist-current-item img {
    width: 30px !important;
}

.wp-playlist-current-item {
    height: auto !important;
}

.wp-playlist {
    padding: 17.5px 25px 25px 25px !important;
    border: 2px solid var(--primaryColor) !important;
}

.wp-playlist .wp-playlist-item-meta.wp-playlist-item-title {
    font: normal 500 var(--tertiaryHead) 'Teko', sans-serif !important;
}

/*Maps Marker Pro*/
body .maps-marker-pro .leaflet-popup-content {
    margin: 15px !important;
}

body .popUp-wrap.popUp-position {
    padding-top: 15px;
}

body .popUp-wrap.popUp-theater {
    padding-top: 20px;
}

body .maps-marker-pro .leaflet-popup-content-wrapper {
    border-radius: 0px !important;
}

body .maps-marker-pro .mmp-popup-name,
body .maps-marker-pro .mmp-popup-location {
    display: none !important;
}

body .leaflet-popup-content p {
    margin: 0 !important;
}

body .leaflet-popup-content a.details {
    font: 400 normal var(--paragraphs) 'Crimson Pro', serif;
    line-height: 1.44 !important;
    color: var(--primaryColor) !important;
    text-decoration: underline !important;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    flex: 0 0 75px;
}

body .leaflet-popup-content a:hover {
    text-decoration: none !important;
}

.popUp-theater .popUp-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 5px;
}

.popUp-wrap .cat-info {
    background-color: var(--primaryColor);
    color: var(--lightColor);
    right: 0;
    font-size: 10px;
    padding: 5px 7.5px;
}

.popUp-theater .popUp-inner img {
    width: 60px;
    height: 60px !important;
    z-index: 1 !important;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    margin-bottom: 5px;
}

.popUp-wrap h4 {
    color: var(--primaryColor);
    line-height: 1 !important;
}

.popUp-wrap strong a {
    color: var(--darkColor);
}

.popUp-wrap p a:hover {
    text-decoration: underline !important;
}

.popUp-theater p a {
    color: var(--darkColor);
}

.popUp-theater .popUp-inner h4 {
    flex: 0 0 calc(100% - 80px);
    margin-bottom: 5px !important;
    font-size: 1.6875rem !important;
}

body .leaflet-container a.leaflet-popup-close-button {
    font-weight: bold;
    color: var(--lightColor);
    font-size: 12px;
    left: -10px;
    right: auto;
    width: 20px;
    height: 20px;
    top: -10px;
    background-color: var(--darkColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .leaflet-container a.leaflet-popup-close-button span {
    transform: translateY(-1px);
}

body .leaflet-container a.leaflet-popup-close-button:hover {
    color: rgba(255, 255, 255, 0.75);
}

.popUp-theater p, .popUp-theater a {
    font-size: 0.9325rem !important;
}

.popUp-position h4 {
    margin-bottom: 0px !important;
    font-size: 1.75rem !important;
}

.popUp-wrap h5 {
    font: normal 500 1.25rem 'Teko', sans-serif !important;
    margin-top: 7.5px;
}

.popUp-wrap h5:first-of-type {
    margin-top: 5px;
}

.popUp-position p, .popUp-position p a {
    font-size: 0.9325rem !important;
}

body .leaflet-popup {
    margin-bottom: 20px;
    position: absolute;
    text-align: center;
    margin-left: -4.5px;
    margin-bottom: 25px;
    min-width: 315px;
}

body .maps-marker-pro .mmp-control-filters label input {
    width: 13px;
    height: 13px;
    position: relative;
}

body .mmp-control-filters-buttons {
    margin-bottom: 2.5px;
}

body .maps-marker-pro .mmp-control-filters-buttons a {
    text-transform: capitalize;
    border-radius: 0px;
    font-size: 0px !important;
}

body .maps-marker-pro .mmp-control-filters-buttons a:first-of-type:after {
    content: 'Alle Einträge';
    font-size: 10px;
}

body .maps-marker-pro .mmp-control-filters-buttons a:first-of-type {
    padding: 8px 5px 10px 5px;
    border-radius: 0px;
}

body .mmp-control-filters-buttons a:last-of-type {
    display: none;
}

body .maps-marker-pro .mmp-control-filters label span {
    padding-left: 5px;
    transform: translateY(1px);
    display: inline-block;
}

body .leaflet-container .leaflet-marker-pane img {
    display: block !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    background: url(../_img/location-marker.svg) no-repeat !important;
    width: 25px !important;
    /* Width of new image */
    height: 37px !important;
    /* Height of new image */
    padding-left: 25px !important;
    /* Equal to width of new image */
}

body .marker-cluster-small div,
body .marker-cluster-medium div {
    background-color: var(--primaryColor) !important;
    color: var(--lightColor);
    position: relative;
}

body .marker-cluster-small,
body .marker-cluster-medium {
    background-color: rgba(0, 0, 0, 0) !important;
}

body .marker-cluster-small div:after,
body .marker-cluster-medium div:after {
    background-color: var(--primaryColor) !important;
    top: -5px;
    left: -5px;
    height: 40px;
    width: 40px;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.5;
    content: "";
    position: absolute;
    z-index: -1;
}

body .leaflet-overlay-pane svg path {
    stroke: var(--darkColor) !important;
    fill: var(--darkColor) !important;
    stroke-width: 2 !important;
    fill-opacity: 0.2 !important;
}

/*Maplist Theater*/

.mmp-list-popup .popUp-inner {
    display: none !important;
}

.mmp-list-popup .popUp-wrap .cat-info {
    position: relative;
    color: var(--darkColor);
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    line-height: 1.44 !important;
    margin-right: 10px;
}

.mmp-list-popup .popUp-wrap .cat-info:before {
    content: "Sparte: ";
    font-weight: 700;
    padding: 0;
}

body .mmp-list-popup .popUp-wrap.popUp-theater {
    padding-top: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

body .mmp-list-popup a.details {
    font: 600 normal var(--smallerParagraphs) 'Crimson Pro', serif;
    text-decoration: underline !important;
    color: var(--primaryColor);
    flex: 0 0 auto;
}

body .mmp-list-popup a.details:hover {
    text-decoration: none !important;

}

body .mmp-list-popup p strong {
    font: 600 normal var(--smallerParagraphs) 'Crimson Pro', serif;
}

body .mmp-list-popup p {
    font-size: var(--smallerParagraphs) !important;
    float: left;
    margin-right: 10px;
}

body .mmp-list-popup .popUp-wrap.popUp-theater>div>div {
    float: left;
}

@media screen and (max-width:991px) {
    body .mmp-list-popup .popUp-wrap.popUp-theater {
        flex-wrap: wrap;
    }

    body .mmp-list-popup a.details,
    body .mmp-list-popup .popUp-wrap.popUp-theater>div {
        flex: 0 0 100%;
        margin-top: 2.5px;
    }
}


body .map-desc-wrap-detail {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

@media screen and (min-width:768px) {
    body .map-desc-wrap.map-desc-wrap-detail {
        padding-bottom: 45px !important;
    }
}

@media screen and (max-width:767px) {
    .mapList-theater h4 {
        font: 600 normal 1.125rem 'Crimson Pro', serif;
    }
}

@media screen and (max-width:576px) {
    body .map-desc-wrap-detail {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

body .maps-marker-pro {
    z-index: 1;
}

body .mmp-list-header .mmp-list-header-right,
body .mmp-list-header .mmp-list-row-header-right,
body .mmp-list-row .mmp-list-icon,
body .mmp-list-row .mmp-list-row-header-right {
    display: none !important;
}

body .mmp-list-body *,
body .mmp-list-footer * {
    font-family: 'Crimson Pro', serif;
}

body .mmp-list-footer * {
    font-size: 1rem;
}

body .maps-marker-pro.mmp-list-below .mmp-list-header-left,
body .maps-marker-pro.mmp-list-below .mmp-list-search-wrap {
    width: 100%;
    max-width: 100%;
}

body .maps-marker-pro.mmp-list-below input.mmp-list-search {
    background-color: var(--primaryColor);
    color: var(--lightColor);
    font: normal 500 1.75rem 'Teko', sans-serif;
    border: none;
    border-radius: 0px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 3px 25px 0 50px;
}

body .maps-marker-pro .mmp-list-below .mmp-list-header,
body .maps-marker-pro,
body .maps-marker-pro .mmp-list-header {
    border-bottom: none !important;
    border: none !important;
    padding: 0px;
}

body .maps-marker-pro .mmp-list-header .mmp-list-search {
    background: rgba(0, 0, 0, 0) url(../_img/search-icon-white.svg) 15px calc(50% - 1px) no-repeat;
    background-size: 22px 22px;
}

body .maps-marker-pro.mmp-list-below .mmp-list {
    border: none;
    width: 100%;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    transform: translateY(-32.5px);
    position: relative;
    z-index: 1111;
}

body .maps-marker-pro .mmp-list-row,
body .maps-marker-pro .mmp-list-footer {
    border-color: #E0E0E0;
}

body .maps-marker-pro .mmp-list-row {
    padding: 20px 5px 16px 5px;
}

body .maps-marker-pro .mmp-list-row *:not(h4):not(.mmp-list-name) {
    font-size: 1rem !important;
    line-height: 1.44 !important;
}

body .maps-marker-pro .mmp-list-row .mmp-list-name {
    font: 600 normal 1.125rem 'Crimson Pro', serif;
    color: var(--linkColor);
}

body .maps-marker-pro .mmp-list-footer {
    padding: 22.5px 5px 15px 5px;
}

body .maps-marker-pro .mmp-list-page,
body .maps-marker-pro .mmp-list-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}


body .maps-marker-pro .mmp-list-page input {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #E0E0E0;
    font-size: 1rem !important;
    padding: 0 0 2px 0;
    margin-right: 3.5px;
}

body .maps-marker-pro .mmp-list-nav button {
    width: 45px;
    height: 45px;
    background-color: var(--lightColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0px;
    padding: 0 0 0px 0;
    border-radius: 0px;
    border-color: #E0E0E0;
    margin: 0 -1px;

}

body .maps-marker-pro .mmp-list-nav button:after {
    font-size: 1rem;
}

body .maps-marker-pro .mmp-list-nav button:hover {
    box-shadow: 0 0px 7.5px rgba(0, 0, 0, .15);
    background-color: var(--lightColor);
}

body .maps-marker-pro .mmp-list-nav button:nth-of-type(1):after {
    content: "⇤";
}

body .maps-marker-pro .mmp-list-nav button:nth-of-type(2):after {
    content: "←";
}

body .maps-marker-pro .mmp-list-nav button:nth-of-type(3):after {
    content: "→";
}

body .maps-marker-pro .mmp-list-nav button:nth-of-type(4):after {
    content: "⇥";
}

body .maps-marker-pro .mmp-list-header .mmp-list-location-clear,
body .maps-marker-pro .mmp-list-header .mmp-list-search-clear {
    right: 15px;
    background: url(../_img/close-white.svg) no-repeat 50%;
    background-size: 12px 12px;
}

@media screen and (min-width: 576px) {
    body .maps-marker-pro.mmp-list-below .mmp-list {
        max-width: 510px;
    }
}

@media screen and (min-width: 768px) {
    body .maps-marker-pro.mmp-list-below .mmp-list {
        max-width: 690px;
    }
}

@media screen and (min-width: 992px) {
    body .maps-marker-pro.mmp-list-below .mmp-list {
        max-width: 870px;
    }
}

@media screen and (min-width: 1200px) {
    body .maps-marker-pro.mmp-list-below .mmp-list {
        max-width: 1005px;
    }
}

@media screen and (max-width:767px) {
    body .maps-marker-pro.mmp-list-below input.mmp-list-search {
        font: normal 500 1.5rem 'Teko', sans-serif;
        height: 45px;
        padding: 3px 25px 0 35px;
    }

    body .maps-marker-pro.mmp-list-below .mmp-list {
        transform: translateY(-22.5px);
    }

    body .maps-marker-pro .mmp-list-header .mmp-list-search {
        background: rgba(0, 0, 0, 0) url(../_img/search-icon-white.svg) 10px calc(50% - 1px) no-repeat;
        background-size: 18px 18px;
    }

    body .mmp-list-footer * {
        font-size: 0.875rem;
    }

    body .maps-marker-pro .mmp-list-page input {
        font-size: 0.875rem !important;
        width: 40px;
        height: 40px;
    }

    body .maps-marker-pro .mmp-list-nav button {
        width: 40px;
        height: 40px;
    }
}

/*Borlabs*/

.brlbs-cmpnt-dialog-bar-content p {
    text-align: left !important;
}

.brlbs-cmpnt-dialog-bar-content p a,
body .brlbs-cmpnt-link:not(.brlbs-cmpnt-btn-selection):hover {
    text-decoration: underline !important;
}

.brlbs-cmpnt-dialog-bar-content p a:hover {
    text-decoration: none !important;
}

body .brlbs-cmpnt-dialog {
    margin-left: 0 !important;
    margin-right: 0px !important;
}

body .brlbs-cmpnt-container * {
    outline: none !important;
    box-shadow: none !important;
}

.responsive-video .brlbs-cmpnt-content-blocker {
    margin: 15px;
    position: absolute !important;
    width: calc(100% - 30px) !important;
    max-width: 600px;
    top: 50% !important;
    transform: translateY(-50%) translateX(-50%);
    margin-top: 0;
    left: 50% !important;
    margin-bottom: 0;
}

body .responsive-video .brlbs-cmpnt-content-blocker .brlbs-cmpnt-cb-preset-c .brlbs-cmpnt-cb-main {
    margin: 0 !important;
    background-color: #fff !important;
}

.responsive-video .brlbs-cmpnt-cb-main {
    margin: 0 !important;
    gap: 0 !important;
    background-color: #efefef !important;
}

.responsive-video .brlbs-cmpnt-cb-thumbnail {
    background-image: none !important;
}

.brlbs-cmpnt-content-blocker * {
    font-family: 'Crimson Pro', serif !important;
}

.brlbs-cmpnt-content-blocker {
    line-height: 1 !important;
}

.brlbs-cmpnt-content-blocker a.brlbs-cmpnt-cb-provider-toggle:not(:hover) {
    text-decoration: underline !important;
}

body .brlbs-cmpnt-checkbox:before {
    border-radius: 0px !important;
}

body [data-borlabs-cookie-content-blocker-id="open-street-map"] .brlbs-cmpnt-cb-thumbnail {
    filter: grayscale(100%) !important;
}

@media screen and (max-width:767px) {
    [data-borlabs-cookie-content-blocker-id="open-street-map"].brlbs-cmpnt-content-blocker .brlbs-cmpnt-cb-buttons {
        margin-bottom: 15px !important;
        margin-top: -10px !important;
    }
}

@media screen and (max-width:576px) {
    .responsive-video .brlbs-cmpnt-content-blocker {
        font-size: 9px !important;
    }

    .responsive-video .brlbs-cmpnt-content-blocker .brlbs-cmpnt-cb-btn {
        font-size: 12px !important;
    }

    .responsive-video .brlbs-cmpnt-content-blocker {
        transform: translateY(-50%) translateX(0%);
        left: auto !important;
        max-width: 100% !important;
    }
}


body .brlbs-cmpnt-container.brlbs-cmpnt-content-blocker.brlbs-cmpnt-cb-provider-card {
    position: absolute;
}





/*Glossar*/

.glossar_group ul {
    display: block;
    margin: 0 !important;
    padding: 0 0 0px 0 !important;

}

.glossar_group h4 {
    font-size: var(--primaryHead);
    color: var(--primaryColor);
    display: block;
    margin-bottom: 17.5px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding-bottom: 7.5px;
    border-bottom: 1px solid #e0e0e0;
}

.glossar_group li {
    padding: 0 !important;
}

.glossar_group li:before {
    display: none !important;
}

.glossar_group_wrapper {
    column-count: 3;
    column-gap: 30px;
    margin-top: -20px;
}

.glossar_group {
    break-inside: avoid-column;
    padding-top: 20px;
}

#contentwrap .glossar_group li a{
    border-bottom: none;
}

.glossar_group a:before {
    top: 7px
}

.glossar_group a:hover {
    opacity: 0.5;
}

@media screen and (max-width:991px) {
    .glossar_group_wrapper {
        column-count: 2;
    }
}

@media screen and (max-width:767px) {
    .glossar_group_wrapper {
        column-count: 1;
    }
}