body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
.cd-image-container {
  position: relative;
  width: 90%;
  max-width: 630px;
  margin: 0em auto;
}
.cd-image-container img {
  display: block;
}

.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}

@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: url("../../files/hms/img/slider/cd-arrows.svg") center center no-repeat #bb0015;
  cursor: move;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}
.cd-handle.draggable {
  /* change background color when element is active */
  background-color: #445b7c;
}
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}
/* space-grotesk-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 300;
    src: url('../../files/hms/fonts/space-grotesk-v15-latin/space-grotesk-v15-latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-grotesk-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    src: url('../../files/hms/fonts/space-grotesk-v15-latin/space-grotesk-v15-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-grotesk-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    src: url('../../files/hms/fonts/space-grotesk-v15-latin/space-grotesk-v15-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-grotesk-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    src: url('../../files/hms/fonts/space-grotesk-v15-latin/space-grotesk-v15-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* space-grotesk-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    src: url('../../files/hms/fonts/space-grotesk-v15-latin/space-grotesk-v15-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    font-family: 'Space Grotesk' !important;
    font-weight: 300;
}

body {
    font-size: 2em;
    color: #000 !important;
}

p {
    font-family: 'Space Grotesk' !important;
    font-weight: 300;
    font-size: 1.5em;
    color: #000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk' !important;
    font-weight: 600 !important;
    line-height: 1.0;
    color: #000 !important;
}

h2,
.h2 {
    font-size: 3em !important;
    margin-bottom: 1.5em;
    font-style: normal;
    text-transform: none;
    display: inline-block;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.15em;
}

.mod_booknav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.mod_booknav ul li {
    margin: 0;
    padding: 0;
    flex: 1;
    padding: 10px;
}

.mod_booknav li a {
    width: 100%;
    height: 50px;
    border-radius: 0px;
    color: #fff;
    line-height: 25px;
    font-size: 25px;
    font-weight: bold;

}

.mod_booknav li.next {
    text-align: right;
}

.mod_booknav li.previous a {
    color: #fff;
    padding-top: 12px;
    padding-left: 16px;
}

.mod_booknav li.next a {
    color: #fff;
    padding-top: 12px;
    padding-right: 18px;
    text-align: right;

}

#bar {
    height: 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    transition: background-color 1s ease;
}

#progress {
    height: 10px;
    width: 0;
    background-color: #fff;
    transition: width 30s linear;
}

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

    h2,
    .h2 {
        font-size: 3em !important;
    }
}

/* frage 2 */

.quizfrage-drag-drop .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}

.quizfrage-drag-drop .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    color: black;
    z-index: 9999;
}

.quizfrage-drag-drop .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0px;
}

.quizfrage-drag-drop .question,
.quizfrage-drag-drop .cards {
    display: inline-block;
    margin: 5px;
}

.quizfrage-drag-drop .cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.quizfrage-drag-drop .card {
    min-height: 250px;
    text-align: center;
    flex-basis: calc((100% - 20px) / 2);
}

.quizfrage-drag-drop .cards.niedrig .card {
    min-height: 150px;
}

.quizfrage-drag-drop .card .content {
    position: relative;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.quizfrage-drag-drop .answers {
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
    position: relative;
    z-index: 100;
}

.quizfrage-drag-drop .answer {
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Box-Schatten-Effekt */
}

.quizfrage-drag-drop .answer,
.quizfrage-drag-drop .card {
    display: inline-flex;
    background-color: #000;
    color: #fff;
    font-size: 1.3em;
}

.quizfrage-drag-drop .answer {

    cursor: move;

}

.quizfrage-drag-drop .answer.invalid {
    background-color: #ffcccc;
    color: #cc0033;
}

.quizfrage-drag-drop .answer.correct {
    background-color: #ccffcc;
    color: #000;
}



.card.flagge_d {
    background-image: url("../../files/abbildungen/sonderausstellungen/auto_unser/quiz/flagge_deutschland.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.card.flagge_uk {
    background-image: url("../../files/abbildungen/sonderausstellungen/auto_unser/quiz/flagge_uk.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;

}

.card.flagge_fr {
    background-image: url("../../files/abbildungen/sonderausstellungen/auto_unser/quiz/flagge_frankreich.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;

}

.card.flagge_usa {
    background-image: url("../../files/abbildungen/sonderausstellungen/auto_unser/quiz/flagge_usa.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.card {
    position: relative;
    z-index: 1;
}

.card.flagge::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: inherit;
    box-shadow: inset 0 0 50px 50px rgba(234, 234, 234, 0.5);
}



.land {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.quizfragen button {
    color: white;
    background-color: black;
    padding: 15px 32px;
    margin: 4px 2px;
    cursor: pointer;
    border: 0;
    flex-grow: 1;
    flex-basis: calc(100% / 4);
}

body.quizfrage-drag-drop article.padding-bottom-4x {
    padding-bottom: 0px !important;
}

.quizfragen.frage1 button {
    flex-basis: calc(100% / 1);
    min-height: 140px;
}

.quizfragen.frage3 button {
    flex-basis: calc(100% / 1);
    min-height: 140px;
}

.quizfragen.frage7 button {
    flex-basis: calc(100% / 1);
    min-height: 140px;
}

.quizfragen.frage9 button {
    min-height: 140px;
}

.quizfragen.frage10 button {
    flex-basis: calc(100% / 1);
    min-height: 140px;
}

.quizfragen.frage11 button {
    flex-basis: calc(100% / 1);
    min-height: 140px;
}

.quizfragen #popup {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 120px;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    /* Zündet die Scrollbar, wenn der Inhalt zu groß ist. */
}

.quizfragen #popup-content {
    padding: 80px;
    background-color: white;
    max-width: 100%;
    /* Stellt sicher, dass das Popup-Fenster auf kleineren Bildschirmen responsive ist. */
    max-height: 100%;
    overflow: auto;
    font-size: 18px;
    /* Zündet die Scrollbar, wenn der Inhalt zu groß ist. */
}

@media only screen and (max-width: 600px) and (orientation: portrait) {
    .quizfrage-drag-drop .card {
        width: 45%;
        min-height: 250px;
        text-align: center;
        font-size: 1.2em;
    }

    .quizfragen button {
        flex-basis: calc(100% / 2);
    }
}


p a.start {
    color: white;
    background-color: black;
    padding: 15px 32px 15px 32px;
    margin: 4px 2px;
    cursor: pointer;
    border: 0;
    text-align: center;
    display: block;
    text-decoration: none;
}

.mod_booknav {
    padding-top: 120px;
}

.mod_booknav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    min-height: 120px;
    z-index: 500;
}

.mod_booknav ul li {
    padding: 0;
    padding: 10px;
    flex-grow: 1;
    flex-basis: calc(100% / 2);
    background-color: #757575;
    color: #fff;
    border-style: solid;
    border-width: 10px;
}

.mod_booknav ul li:first-child {
    border-left-width: 10px;
    border-right-width: 5px;
}

.mod_booknav ul li:last-child {

    border-left-width: 5px;
    border-right-width: 10px;
}

@media screen and (min-width: 1920px) and (min-height: 1080px) {
    .mod_booknav {
        padding-top: 0px;
    }

    .textbutton {
        font-size: 1.9em;
    }

    .quizfragen button {
        color: white;
        background-color: black;
        padding: 15px 32px;
        cursor: pointer;
        border: 0;
        flex-grow: 1;
        flex-basis: calc(100% / 2);
        min-height: 200px;
        display: block;
        flex-basis: calc((100% - 20px) / 2);
        font-size: 2.80em;
    }

    .quizfragen.drei button {
        flex-basis: calc(100% / 1);
        flex-basis: calc((100% - 20px) / 1);
    }

    .quizfragen.eins button {
        flex-basis: calc(100% / 1);
        flex-basis: calc((100% - 20px) / 1);
    }

    .mod_booknav li.next a {
        color: #fff;
        height: 100%;
        display: block;
        float: right;
        font-size: 64px;
        padding-top: 23px;
        padding-right: 25px;
        width: 100%;
        text-align: right;
    }

    .mod_booknav li.previous a {
        color: #fff;
        height: 100%;
        display: block;
        float: left;
        font-size: 64px;
        padding-top: 23px;
        padding-left: 15px;
        width: 100%;
        text-align: left;
    }
}

.quizfrage-drag-drop .card.dropped {
    color: #848484;
}

@media (orientation: portrait) {

    h2,
    .h2 {
        font-size: 2.2em !important;
    }

    .quizfragen #popup {
        position: fixed;
        display: none;
        justify-content: center;
        align-items: center;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        overflow: auto;
    }

    .quizfragen #popup-content {
        padding: 10px;
        background-color: white;
        max-width: 100%;
        max-height: 100%;
        overflow: auto;
        font-size: 12px;
    }

    .quizfragen #popup-content p {
        font-size: 1;
        margin-bottom: 100px;
    }

    .mod_booknav ul {
        min-height: 20px;
    }

    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

}
