/*.navi-container {
    overflow-x: hidden;
}*/
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.tx-karrierenavi .ce-image.ce-center img {
    width: 100%;
}

.navi-content {
    padding-top: 20px;
}

.navi-question-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.navi-question-wrapper .navi-h1 {
    color: #344384;
    font-weight: 700;
    text-align: center;
    margin: 20px 20px 0;
    max-width: 900px;
}

.navi-all-answers-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    max-width: 1200px;
}
.navi-all-answers-wrapper [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.navi-all-answers-wrapper [type=radio]:focus + .navi-single-answer {
    border: 2px solid #344384;
    transition: 300ms;
}
.navi-all-answers-wrapper [type=radio] + .navi-single-answer {
    cursor: pointer;
}
.navi-all-answers-wrapper .navi-answer-js {
    display: flex;
}
@media (min-width: 768px) {
    .navi-all-answers-wrapper [type=radio]:hover + .navi-single-answer {
        border: 2px solid #344384;
        transition: 300ms;
    }
}
.navi-all-answers-wrapper [type=radio]:checked + .navi-single-answer {
    border: 2px solid #344384;
    transition: 300ms;
}
.navi-all-answers-wrapper .navi-single-answer {
    display: flex;
    border: 2px solid #fff;
    align-items: center;
    margin: 10px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 10px 20px;
    width: 300px;
}
.navi-all-answers-wrapper .navi-single-answer .navi_answer_icon {
    margin-right: 20px;
    display: flex;
    height: 100%;
}
@media (min-width: 768px) {
    .navi-all-answers-wrapper .navi-single-answer .navi_answer_icon {
        display: block;
        height: auto;
    }
}
.navi-all-answers-wrapper .navi-single-answer .navi_answer_icon img {
    width: auto;
    height: auto;
    max-width: fit-content;
}



.navi-all-answers-wrapper .navi-single-answer .navi_answer_icon.hashovericon img.hoverIcon {
    display: none;
}
.navi-all-answers-wrapper [type=radio]:checked + .navi-single-answer .navi_answer_icon.hashovericon img.icon {
    display: none;
}
.navi-all-answers-wrapper [type=radio]:checked + .navi-single-answer .navi_answer_icon.hashovericon img.hoverIcon {
    display: block;
}



.navi-all-answers-wrapper .navi-single-answer .navi_answer_icon svg {
    max-width: 70px;
}
@media (min-width: 768px) {
    .navi-all-answers-wrapper .navi-single-answer {
        flex-direction: column;
        padding: 40px;
        min-height: 160px;
        margin: 20px;
    }
    .navi-all-answers-wrapper .navi-single-answer.even {
        flex-basis: 33%;
    }
    .navi-all-answers-wrapper .navi-single-answer .navi_answer_icon {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .navi-all-answers-wrapper .navi-single-answer .navi_answer_icon svg {
        max-width: 160px;
    }
}
.navi-all-answers-wrapper .navi-single-answer .navi_answer_text {
    font-weight: 700;
    color: #344384;
    width: 85%;
}
@media (min-width: 768px) {
    .navi-all-answers-wrapper .navi-single-answer .navi_answer_text {
        text-align: center;
        width: auto;
    }
}

#naviBack {
    margin-top: 16px;
    margin-right: 7px;
    margin-left: 7px;
}
#submit {
    margin-top: 16px;
    margin-right: 7px;
    margin-left: 7px;
}

.result-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5%;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 800%;
    height: 100%;
    background-size: 50% 120px;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
@media (min-width: 576px) {
    .wave {
        width: 500%;
    }
}
@media (min-width: 768px) {
    .wave {
        width: 200%;
    }
}

.waveTop {
    /*background-image: url('../images/wave-top.svg');*/
    background-size: 100%;
}

.waveAnimation .waveTop {
    animation: move-wave 15s;
    animation-delay: 1s;
    position: relative;
}
.waveAnimation .waveTop svg {
    position: absolute;
    bottom: 0;
}

.waveMiddle {
    /*background-image: url('../images/wave-mid.svg');*/
    background-size: 100%;
}

.waveAnimation .waveMiddle {
    animation: move_wave 20s linear infinite;
    position: relative;
}
.waveAnimation .waveMiddle svg {
    position: absolute;
    bottom: 0;
}

.waveBottom {
    /*background-image: url('../images/wave-bot.svg');*/
    background-size: 100%;
}

.waveAnimation .waveBottom {
    animation: move_wave 30s linear infinite;
    position: relative;
}
.waveAnimation .waveBottom svg {
    position: absolute;
    bottom: 0;
}

@media (max-width: 768px) {
    .navi_answer_icon img {
        width: 50px !important;
        height: auto !important;
    }
}

.navi-wave {
    position: relative;
    height: 230px;
    overflow: hidden;
    z-index: 0;
}
@media (min-width: 768px) {
    .navi-wave {
        height: 120px;
    }
}
@media (min-width: 992px) {
    .navi-wave {
        height: 200px;
    }
}
@media (min-width: 200px) {
    .navi-wave {
        height: 200px;
    }
}
@media (min-width: 2550px) {
    .navi-wave {
        height: 250px;
    }
}

.result-header {
    margin-top: -20px;
}

#footer {
    z-index: 2;
}

.result-content {
    position: relative;
}
.result-content .result-text {
    margin-top: 20px;
}
.result-content .result {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-top: 0 !important;
}
.result-content .result .subheading {
    color: #344384;
    font-weight: 600;
    margin-bottom: 10px;
}
.result-content .result .navi-h1 {
    color: #344384;
    font-size: 23px;
    margin-bottom: 10px;
}
@media (min-width: 992px) {
    .result-content .result .navi-h1 {
        font-size: 36px;
    }
}
.result-content .result .result-icon img {
    display: block;
    margin-bottom: 30px;
}

.person {
    max-height: 250px;
    position: absolute;
    bottom: -220px;
}
@media (min-width: 768px) {
    .person {
        bottom: -212px;
    }
}
.person img {
    max-height: 300px;
}
.person.display-none {
    display: none;
}
.person .desktop {
    display: none;
}
.person.left {
    left: 0;
}
.person.right {
    right: 0;
}
@media (min-width: 992px) {
    .person {
        max-height: 400px;
        position: absolute;
        bottom: -265px;
        z-index: 10;
    }
    .person img {
        max-height: 400px;
    }
    .person .desktop {
        display: block;
    }
    .person .mobile {
        display: none;
    }
}

.spinner-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

.circle-border {
    width: 150px;
    height: 150px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #344384;
    background: linear-gradient(0deg, rgba(52, 67, 132, 0.1) 33%, #344384 100%);
    animation: spin 0.8s linear 0s infinite;
}

.circle-core {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}
.data-error .error-icon svg {
    width: 70px;
    height: 70px;
    fill: #D64550;
}
.data-error h1 {
    color: #D64550;
}
.data-error p:not(:first-child) {
    margin-top: 5px;
}

/* SPLIDE */
.splide {
    /*padding-top: 40px;*/
}
.splide .splide__track {
    height: auto !important;
    z-index: 1;
}
.splide .splide__slide {
    height: 0;
    width: 100%;
    box-sizing: border-box;
}
.splide .splide__slide.is-visible {
    height: auto;
}
.splide__list {
    width: 100%;
}

.btn:disabled {
    cursor: auto;
}

.btn-seam-primary:hover:disabled {
    background-color: #00005f;
}

.btn-seam-outline-primary:hover:disabled {
    background-color: white;
}

.btn-seam-secondary:hover:disabled {
    background-color: #ffc800;
}

.btn-seam-outline-secondary:hover:disabled {
    background-color: white;
}

.btn-seam-tertiary:hover:disabled {
    background-color: #0099dd;
}

.btn-seam-outline-tertiary:hover:disabled {
    background-color: white;
}

#navi_youtube_container {
    max-width: 800px !important;
    margin-top: 55px;
}
.responsive_youtube_container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}
.responsive_youtube_container iframe,
.responsive_youtube_container object,
.responsive_youtube_container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
