﻿/*******************
Root Settings
*******************/
:root {
    --nwb-dark: #1D1D1B;
    --nwb-navi-bg: #2F4858;
    --nwb-blue: #01A2B9;
    --nwb-gray: #A7A7A7;
    --nwb-section-bg-gray: #F5F5F5;
    --cnvs-header-height: 50px;
    --cnvs-themecolor: #FFED00;
    --cnvs-footer-bg: #FFED00 !important;
    --nwb-button-fontsize: 16px;
    --nwb-button-padding: 6px 20px;
    --nwb-button-radius: 20px;
    --cnvs-link-color: #01A2B9;
    --cnvs-link-hover-color: #6C757D;
    --bs-link-hover-color-rgb: 108, 117, 125;
    --bs-primary-bg-subtle: #ffed00;
    --cnvs-contrast-300: #fff;
    --bs-primary-text-emphasis: #000000;
}


::selection {
    background-color: var(--cnvs-themecolor);
    color: #000;
}

/* increase container width based on layout */
@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1399px;
    }
}

/*******************
Helpers
*******************/
.section-gray {
    background-color: var(--nwb-section-bg-gray);
}


/*******************
Header
*******************/
/*** Yellow Header Area ***/
#header {
    position: relative;
}

#header-wrapper {
    background-color: var(--cnvs-themecolor);
}

#header-wrapper > .container > .row {
    background-image: url('/assets/nwb/head-background.png');
    background-repeat: no-repeat;
    background-position: center -250px;
    padding-bottom: 35px;
    padding-top: 35px;
    background-size: cover;
}

.user-icon {
    background-color: transparent;
    color: var(--cnvs-themecolor);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}


.popup-content .user-icon {
    background-color: transparent;
    width: 36px;
    height: 36px;
    padding: 0;
}

/** logged in state **/
#user-toggle:has(.logged-in) > div > .user-icon {
    background-color: #1D1D1B;
}

#user-toggle:has(.logged-in) > div > .user-icon svg path {
    fill: var(--cnvs-themecolor);
}

#user-toggle:has(.logged-in) #account-popup .user-icon svg path {
    fill: #fff;
}

.account-wrapper .account-headline,
.account-wrapper .account-text {
    line-height: 18px;
    font-size: 14px;
}

#account-popup .popup-content {
    padding: 20px 0;
}

.account-wrapper,
.customer-login-section {
    padding: 0 20px;
}

.customer-login {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.customer-login-section .customer-actions a span {
    color: #01A2B9;
}

.account-text {
    cursor: pointer;
}

.account-wrapper .account-headline {
    cursor: default;
}

#account-popup {
    --bs-border-radius: 15px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
    min-width: 400px;
    right: 0;
    left: auto;
    background-color: #fff;
    border-radius: var(--bs-border-radius);
    transform: translate3d(20px, -55px, 0);
}

#account-popup .logout {
    border-bottom-right-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);
}

#account-popup.show-box {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 99;
}

.account-popup-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease-in-out;
}

#account-popup.show-box .account-popup-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 250ms;
}

@media (max-width: 991px) {
    #account-popup {
        transform: translate3d(0px, -20px, 0);
    }

    #user-toggle > .account-wrapper {
        padding: 0;
    }
}

.popup-link {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    transition: color 250ms ease-out;
}

.popup-link:hover {
    color: rgba(0, 0, 0, .6);
}

.customer-login-section {
    background-color: #f5f5f5;
}

.login-subtext {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.customer-actions,
.customer-sub-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customer-actions > a {
    color: #2F4858;
    font-weight: normal;
    font-size: 14px;
}

.customer-sub-actions > a {
    color: #01A2B9;
    font-weight: normal;
    font-size: 14px;
}

.customer-sub-actions > a:not(:last-child),
.customer-actions > a:not(:last-child) {
    margin-bottom: 5px;
}

/* customer buttons */
.customer-button {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #EEEEEE;
    display: flex;
    gap: 1rem;
}

.customer-button.logout {
    background-color: #F5F5F5;
    padding-bottom: 20px;
}

.customer-button .button-text {
    font-size: 14px;
    line-height: 21px;
}

.customer-button h6 {
    font-size: inherit;
    margin-bottom: 5px;
    font-weight: 700;
    color: #1D1D1B;
    text-transform: uppercase;
}

.customer-button p {
    margin-bottom: 0;
    color: #5C5C5C;
}

@media (max-width: 991px) {
    #account-popup {
        min-width: 300px;
    }

    .popup-link {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    #header-wrapper > .container > .row {
        padding-bottom: 16px;
        padding-top: 16px;
    }

    #account-popup {
        min-width: 250px;
    }


    .customer-loggedIn-section a img {
        display: none;
    }
}

/*** Navigation ***/
.menu-wrapper .navigation-wrapper {
    background-color: var(--nwb-navi-bg);
}

.menu-wrapper .menu-link {
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    color: #dcdcdc;
    --cnvs-primary-menu-padding-y: 11px;
    --cnvs-primary-menu-padding-x: 10px;
}

.menu-wrapper .menu-item:hover a {
    color: #fff;
}

#header-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .menu-wrapper .navigation-wrapper {
        padding: 0 5px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .menu-wrapper .menu-container {
        justify-content: center;
    }

    #header-wrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 991px) {
    .menu-wrapper .menu-item {
        --cnvs-primary-menu-submenu-border: 1px solid #A7A7A7;
    }

    .navigation-container {
        --bs-gutter-x: 0;
        max-width: 100%;
    }

    .menu-wrapper .menu-link {
        --cnvs-primary-menu-padding-y: 14px;
        --cnvs-primary-menu-padding-x: 30px;
    }

    .menu-wrapper .menu-item span {
        margin-left: 30px;
    }

    .menu-wrapper .menu-item a::before {
        content: ' ';
        position: absolute;
        background: no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.8 10.8'%3E%3Cpath d='M0 10.8V0l12.8 5.4L0 10.8' fill='%23fff'/%3E%3C/svg%3E") left bottom;
        width: 12px;
        height: 12px;
        margin-right: 10px;
        color: #fff;
    }
}

/*******************
Lists
*******************/
.nwb-list {
    --nwb-list-font-size: 16px;
    padding-left: calc(var(--nwb-list-font-size, 16px) + 2px);
    list-style: none;
}

.nwb-list li {
    font-size: var(--nwb-list-font-size, 16px);
    line-height: 24px;
    margin-bottom: 8px;
}

.nwb-list li span {
    margin-left: 5px;
}

.nwb-list li:last-of-type {
    margin-bottom: 0;
}

.umb-block-grid ul {
    list-style: none;
    margin-left: 25px;
}

.umb-block-grid ol {
    margin-left: 25px;
}

.nwb-list ul li::before, .umb-block-grid ul li::before {
    margin-left: -1.1em;
    content: ' ';
    position: absolute;
    background: no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.8 10.8'%3E%3Cpath d='M0 10.8V0l12.8 5.4L0 10.8' fill='%23000'/%3E%3C/svg%3E") left bottom;
    width: 12px;
    height: 1em;
}

/*******************
Cards
*******************/

.nwb-exam-top-five-card {
    background-color: #FFED00;

}

.nwb-exam-top-five-card > .card-title {
    font-weight: bold;
}

/******************
    KONTAKT
******************/

.entry-meta ul li:before {
    display: none !important;
}


/*******************
Breadcrumb
*******************/
#breadcrumb .breadcrumb-wrapper {
    padding: 11px 0;
}

#breadcrumb .breadcrumb-wrapper .breadcrumb-item {
    --bs-breadcrumb-divider: '\eb6d';
    line-height: 1;
}

#breadcrumb .breadcrumb-wrapper .breadcrumb-item::before {
    font-family: unicons-line, serif;
    font-style: normal;
    font-weight: 400;
    transform: translateY(2px);
    font-size: 20px;
    color: var(--nwb-gray);
}

#breadcrumb .breadcrumb-wrapper .breadcrumb-item span {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

#breadcrumb .breadcrumb-wrapper .breadcrumb-item.active span {
    font-weight: 600;
}

/*******************
Footer
*******************/

#footer {
    border-top: 0;
    font-size: 16px;
}

#footer h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

#footer a {
    color: #000;
    font-family: 'Open Sans', serif;
    font-weight: 400;
    font-size: 16px;
}

#footer a:hover {
    color: #565555;
}

#footer ul li {
    list-style: none;
    margin-bottom: 15px;
}

#footer .social-icon i {
    font-size: 24px;
}

#footer .footer-widgets-wrap {
    padding: 60px 0;
}

#copyrights {
    background: #000;
}

#copyrights, #copyrights a {
    color: #fff;
}

#copyrights a {
    font-size: 16px;
    text-transform: uppercase;
}

#copyrights a:hover {
    color: #FFED00;
}

.copyright {
    font-size: 14px;
}

@media (max-width: 767px) {
    #footer .footer-widgets-wrap {
        text-align: center;
    }

    .footerContact .row .col-3 div {
        text-align: end;
    }

}

/*******************
Buttons
*******************/
/** grey button **/
.nwb-btn-grey {
    --cnvs-btn-padding-x: 1.375rem;
    --cnvs-btn-padding-y: 6px;
    --cnvs-btn-fontsize: 16px;
    --cnvs-btn-color: #F5F5F5;
    --cnvs-btn-color-dark: #333;
    --cnvs-btn-color-light: #e9ecef;
    --cnvs-btn-color-hover: var(--cnvs-btn-color-dark);
    --cnvs-btn-lineheight: 24px;
    --cnvs-btn-border-width: 1px;
    color: #1D1D1B;
    border-color: #DCDCDC;
    font-weight: 400;
}

.nwb-btn-grey:hover {
    background-color: transparent;
    color: #1D1D1B;
}

/*** normal ***/

.nwb-btn-common, .btn-yellow {
    color: #000;
    font-size: var(--nwb-button-fontsize, var(--nwb-button-fontsize));
    background-color: var(--cnvs-themecolor);
    border: solid 1px var(--cnvs-themecolor);
    border-radius: var(--nwb-button-radius, 20px);
    padding: var(--nwb-button-padding, 6px 20px);
    min-width: 150px;
}

.nwb-btn-common:hover, .btn-yellow:hover {
    color: #000;
    background-color: #fff;
    border: solid 1px #000;
}

.nwb-btn-common-invers {
    color: #000;
    font-size: var(--nwb-button-fontsize, var(--nwb-button-fontsize));
    background-color: #fff;
    border: solid 1px #000;
    border-radius: 20px;
    padding: var(--nwb-button-padding, 6px 20px);
}

.nwb-btn-common-invers:hover {
    color: #000;
    background-color: var(--cnvs-themecolor);
    border: solid 1px var(--cnvs-themecolor);
    box-shadow: 0px 0px 10px #ffed00;
}

/*** medium ***/

.nwb-btn-common--medium {
    --nwb-button-fontsize: 18px !important;
    --nwb-button-radius: 32px;
    --nwb-button-padding: 18px 32px;
    font-weight: 400;
    line-height: 18px;
}

/*** large ***/

.nwb-btn-common--large {
    --nwb-button-fontsize: 18px;
    --nwb-button-radius: 32px;
    --nwb-button-padding: 18px 32px;
    line-height: 18px;
}

/*** white ***/

.nwb-btn-common.white {
    background-color: #fff;
    border: solid 1px #DCDCDC;
}

.link-invers {
    color: #1D1D1B;
}

.link-invers:hover {
    color: #DCDCDC;
}

/**************************
Badges
***************************/

.badge {
    cursor: pointer;
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    --bs-badge-border-radius: 10px;
    --bs-badge-font-weight: bold;
    font-family: "Open Sans", serif;
    color: #000;
    padding: 4px 10px;
    background-color: #FFED00 !important;
}

/*******************************
Newsletter Form 
*******************************/

/* === Input Elements === */

/* radio */

.nwb-form .form-radio-group label {
    font-size: 16px;
}

.nwb-form .form-radio-group .horizontal-group {
    display: flex;
    gap: 20px;
}

@media (max-width: 767px) {
    .nwb-form .form-radio-group .horizontal-group {
        flex-direction: column;
        gap: 10px;
    }
}

.nwb-form .form-check {
    padding-left: 1.65em;
}

.nwb-form input[type="radio"],
.nwb-form input[type="checkbox"] {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.15em;
    margin-left: -1.65em;
}

.nwb-form .form-radio-group input[type="radio"]:checked {
    --bs-form-check-bg: var(--nwb-blue);
    background-color: var(--bs-form-check-bg);
    border-color: var(--bs-form-check-bg);
    --bs-form-check-bg-image: none;
}

/* checkbox */

.nwb-form .form-check-input[type=checkbox] {
    width: 21px;
    height: 21px;
    border-color: #DCDCDC;
}

.nwb-form .form-check-input[type=checkbox]:focus {
    box-shadow: none;
}

.nwb-form .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg%20width%3D%2217%22%20height%3D%2216%22%20viewBox%3D%220%200%2017%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M16.3438%202.89062C16.3958%202.93229%2016.4323%202.98438%2016.4531%203.04688C16.4844%203.09896%2016.5%203.16146%2016.5%203.23438C16.5%203.30729%2016.4844%203.375%2016.4531%203.4375C16.4323%203.48958%2016.3958%203.53646%2016.3438%203.57812L6.20312%2013.7812C6.16146%2013.8333%206.10938%2013.875%206.04688%2013.9062C5.98438%2013.9271%205.91667%2013.9375%205.84375%2013.9375C5.78125%2013.9375%205.71875%2013.9271%205.65625%2013.9062C5.59375%2013.875%205.54167%2013.8333%205.5%2013.7812L0.640625%208.98438C0.598958%208.94271%200.5625%208.89062%200.53125%208.82812C0.510417%208.76562%200.5%208.69792%200.5%208.625C0.5%208.5625%200.510417%208.5%200.53125%208.4375C0.5625%208.375%200.598958%208.32292%200.640625%208.28125C0.692708%208.22917%200.744792%208.19271%200.796875%208.17188C0.859375%208.14062%200.927083%208.125%201%208.125C1.0625%208.125%201.125%208.14062%201.1875%208.17188C1.25%208.19271%201.30208%208.22917%201.34375%208.28125L5.79688%2012.7344L15.6562%202.89062C15.6979%202.83854%2015.7448%202.80208%2015.7969%202.78125C15.8594%202.75%2015.9271%202.73438%2016%202.73438C16.0729%202.73438%2016.1354%202.75%2016.1875%202.78125C16.25%202.80208%2016.3021%202.83854%2016.3438%202.89062Z%22%20fill%3D%22%2301A2B9%22%2F%3E%20%3C%2Fsvg%3E");
    --bs-form-check-bg: #fff;
    background-color: var(--bs-form-check-bg);
    border-color: #DCDCDC;
}

/* text */

.nwb-form:not(.labels-lg) .form-group:has(input[type="text"], input[type="email"]) label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: .25em;
    text-transform: uppercase;
}

.nwb-form .form-group input[type="text"],
.nwb-form .form-group input[type="email"] {
    --cnvs-input-focus-border-color: var(--nwb-blue);
    --cnvs-input-focus-box-shadow: 0 0 0 0.1rem rgba(1, 162, 185, 1)
}

/* submit */

.nwb-form input[type="submit"] {
    font-size: 18px;
    font-weight: normal;
    line-height: 18px;
}

.nwb-form input[type="submit"]:disabled,
.nwb-form input[type="submit"]:disabled:hover {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    color: #000;
    cursor: not-allowed;
}

/* validation errors */

.field-validation-error {
    font-size: 14px;
}

/* dsgvo */

.form-label {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}

.form-label a {
    color: inherit;
    text-decoration: underline;
}

/* info text */

.form-info-text {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
}

/* highlighted newsletter */

.highlighted-newsletter-wrapper {
    background-color: #F5F5F5;
}

.highlight-image-text {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .trophy-image {
        width: 50px;
        height: 50px;
    }

    .highlight-image-text {
        font-size: 20px;
        line-height: 26px;
    }
}

/* newsletter */

.newsletter-link a {
    color: var(--nwb-blue);
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
}

/** validation summary **/

.validation-summary.validation-summary-valid {
    display: none;
}

.validation-summary ul {
    list-style: none;
}

.validation-summary ul li {
    background-color: rgba(var(--bs-danger-rgb));
    padding: 5px 5px 5px 25px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
}

.validation-summary ul li:last-of-type {
    margin-bottom: 0;
}

/* large labels */

.nwb-form.labels-lg .form-group > label {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: bold;
}

.nwb-form.labels-lg {
    --cnvs-form-group-margin: 30px;
}

.form-error {
    font-size: 14px;
    color: var(--bs-danger);
    font-weight: 400;
    line-height: 20px;
    margin-top: 5px;
}

/*************************
Social Media Share Buttons 
***************************/

.social-media-border-top {
    border-top: 2px solid #dadada;
    margin-top: 20px;
    padding-top: 20px;
}


.social-media-share a {
    --cnvs-socialicon-size: 3rem;
}

.social-media-share a:not(:hover) {
    background-color: var(--cnvs-themecolor);
    border-color: rgb(255, 237, 0, 1);
}


/*********************
Audio Inhalte
*********************/

.audio-content-list {
    row-gap: 100px;
}

.audio-cover {
    max-width: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid #000;
}

.audio-wrapper h6 {
    --nwb-heading-font-size-xxl-h6: 16px;
}

.audio-wrapper p {
    font-size: 16px;
}

.audio-play-wrapper {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px 15px;
    margin: 8px 0;
}

.audio-play-wrapper audio {
    border: 1px solid #000;
    border-radius: 10px;
    margin: 10px 0;
    width: 100%;
}

/*** Podigee ***/

#episode-accordion {
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: var(--cnvs-themecolor);
    --bs-accordion-active-color: #000;
    --bs-accordion-btn-icon: url('data:iamge/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAYAAABxcwvcAAAACXBIWXMAAAsSAAALEgHS3X78AAABHUlEQVR42u3c3WnDMBRA4XO1UD1CukFGyEjJBh7BG7QjKBPdPiSBECrXkILU5hzQk/wgPvBP4JLITEYoInbAHpiACiyZ+TnE4TKz+wKOQH6z5iHONwDQoQF0W4feZ4zet1tEVOBt5ZJzZk5dzzgAUm54JETPMxZMJJFEEkkkkUQykUQSSSSRRBLJRBJJJJFEEkkkkUwkkUQS6e/0MN1RWZ/weJVVuZtmuQHNwrTnowLYAR/eU83eC5cRPGu3L1xmFK3dVK4PKWtXC7DosNri223D283vpA3fSQ6W+rNEJJFEEkkkkUwkkUQSSSSRRDKRRBJJJJFEEkkkE0kkkUQSSaTf7vzk/ksgHZ/c//9ImTkDp8b26brftfB/Jn/uC1gQAWv2i5FWAAAAAElFTkSuQmCC');
    --bs-accordion-btn-active-icon: var(--bs-accordion-btn-icon);
    --bs-accordion-btn-icon-transform: rotate(135deg);
    --bs-accordion-btn-icon-width: 2rem;
    --bs-accordion-border-color: #000;
    --bs-accordion-body-padding-y: 2.5rem;
    --bs-accordion-body-padding-x: 2rem;
}

#episode-accordion .accordion-item {
    border-radius: 0;
}

#episode-accordion .accordion-item:not(:first-of-type) {
    margin-top: 16px;
    border-top-width: var(--bs-accordion-border-width);
    border-top-color: var(--bs-accordion-border-color);
    border-top-style: solid;
}

#episode-accordion .accordion-button {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    flex-wrap: wrap;
    position: relative;
}

#episode-accordion .accordion-button:hover {
    background-color: var(--cnvs-themecolor);
}

#episode-accordion .episode-short-description,
#episode-accordion .episode-information {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 0;
}

#episode-accordion .accordion-button:not(.collapsed) .toggle-trigger {
    display: none;
}

#episode-accordion .accordion-item:has(.accordion-button.collapsed) .podcast-player .lazy-loaded {
    opacity: 0;
}

#episode-accordion .accordion-button:not(.collapsed) {
    border: 0;
    box-shadow: none;
    background-color: transparent;
}

#episode-accordion .accordion-button::after {
    position: absolute;
    right: var(--bs-accordion-btn-padding-y);
    top: var(--bs-accordion-btn-padding-y);
}

#episode-accordion .podcast-player .lazy:not(.initial) {
    transition: opacity 0s;
}

#episode-accordion .episode-short-description {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    #episode-accordion {
        --bs-accordion-body-padding-y: 2.5rem;
        --bs-accordion-body-padding-x: 1rem;
    }
}

/**************************
Rich Text Editor (TinyMCE)
***************************/

.rich-text-wrapper ul,
.rich-text-wrapper ol {
    padding-left: 20px;
}

/**************************
Job Offers
***************************/

.job-offer {
    padding: 72px 54px;
}

.job-offer.right-job {
    background-color: #f3f3f3;
}

@media (min-width: 991px) {
    .job-offer.right-job .left-col {
        order: 2
    }

    .job-offer.right-job .right-col {
        order: 1
    }
}

.job-offer .job-offer-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    margin-bottom: 36px;
}

@media (min-width: 991px) {
    .job-offer .job-offer-img {
        max-width: 550px;
        margin-bottom: 0;
    }
}

.job-description ul,
.job-description ol {
    list-style: none;
    font-size: 16px;
    line-height: 24px;
}

.job-description {
    display: -webkit-box;
    -webkit-line-clamp: var(--cutoff-title-lines, 2);
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .job-offer {
        padding: 36px 18px;
    }
}

/***************************
Topics
***************************/

.topic-image {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}


/***************************
Formulare
***************************/
.form-group-headline {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    padding-top: .5em;
    margin-bottom: 1em;
    border-bottom: 1px solid #808080;
}

.custom-form-groups .form-group {
    --cnvs-form-group-margin: 20px;
}

.custom-form-groups .checkbox-group .form-group:not(:last-of-type) {
    --cnvs-form-group-margin: 0;
}

.custom-form-groups .form-group.form-check label {
    font-weight: normal;
}

.form-description-text {
    font-weight: normal;
    font-size: 14px;
}

/* highlight input when validation error */
.custom-form-groups .form-group .form-control.input-validation-error {
    --cnvs-input-focus-border-color: var(--bs-danger);
    --cnvs-input-focus-box-shadow: var(--bs-danger);
    --cnvs-input-btn-border-color: var(--bs-danger);
    position: relative;
    background: transparent url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%3E%3Cpath%20data-name='error'%20d='M18.65%2015A10.14%2010.14%200%200%201%2015%2018.65%209.69%209.69%200%200%201%2010%2020a9.69%209.69%200%200%201-5-1.35A10.14%2010.14%200%200%201%201.35%2015%209.69%209.69%200%200%201%200%2010a9.69%209.69%200%200%201%201.35-5A10.14%2010.14%200%200%201%205%201.35%209.69%209.69%200%200%201%2010%200a9.69%209.69%200%200%201%205%201.35A10.14%2010.14%200%200%201%2018.65%205%209.69%209.69%200%200%201%2020%2010a9.69%209.69%200%200%201-1.35%205zm-10-2.44a1.85%201.85%200%201%200%202.62%202.62%201.85%201.85%200%200%200-2.62-2.62zm-.14-1.71a.46.46%200%200%200%20.14.3.48.48%200%200%200%20.34.14H11a.48.48%200%200%200%20.34-.14.46.46%200%200%200%20.14-.3l.32-5.49a.48.48%200%200%200-.17-.36.48.48%200%200%200-.34-.14H8.71a.48.48%200%200%200-.34.14.48.48%200%200%200-.14.38z'%20fill='%23d60000'/%3E%3C/svg%3E") no-repeat 98% 49%;
}


/***************************
Ad Section
***************************/

.ad-section img {
    height: auto;
}

/* 
################
  Videos
################
*/

[data-blocked-type='video-facade'] .content-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

[data-blocked-type='video-facade'] .video-facade-content::before {
    content: '';
    display: none;
}