@charset "UTF-8";

/* Modern CSS Spinner */
.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 3px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

:root {
    --color-white: #fff;
    --color-black: #000;

    --color-primary: #00A2D4;
    --color-primary-dark: #0082AA;
    --color-secondary: #69B849;

    --color-light-grey: #F0F0F0;
    --color-darker-grey: #333333;
    --color-dark-grey: #343434;
    --color-medium-grey: #aaa;
    --color-light-grey: #F0F0F0;
    --color-text: var(--color-darker-grey);
    --color-headline: var(--color-dark-grey);


    --color-error: #FF0064;


    --h1-font-size: 2.6rem;
    --h2-font-size: 2.3rem;
    --h3-font-size: 2rem;
    --h4-font-size: 1.8rem;


    --color-light-green: #ECFFE4;
    --color-dark-green: #3A6629;

}

/* CLS Prevention: Pre-allocate slider space */
.teaser-list.m-slider {
    min-height: 300px; /* Reserve space before initialization */
    position: relative;
    /* Enable hardware acceleration for smoother animations */
    will-change: min-height, transform, opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Special handling for above-the-fold content slider */
.document-section--content-slider .teaser-list.m-slider {
    min-height: 320px; /* Slightly taller for main content area */
}

/* Loading state: keep min-height until fully initialized */
.teaser-list.m-slider.slick-loading {
    min-height: 300px !important;
}

.document-section--content-slider .teaser-list.m-slider.slick-loading {
    min-height: 320px !important;
}

/* Optional: Add subtle loading indicator */
.teaser-list.m-slider.slick-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: slick-loading-spin 1s linear infinite;
    z-index: 1;
}

@keyframes slick-loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide loading indicator once initialized */
.teaser-list.m-slider.slick-initialized::before {
    display: none;
}

/* Estimated height for different slider types above the fold */
.teaser-list--small.m-slider {
    min-height: 350px;
}

.teaser-list--small.m-slider.slick-loading {
    min-height: 350px !important;
}

.teaser-list--medium.m-slider {
    min-height: 400px;
}

.teaser-list--medium.m-slider.slick-loading {
    min-height: 400px !important;
}

.teaser-list--tiny.m-slider {
    min-height: 250px;
}

.teaser-list--tiny.m-slider.slick-loading {
    min-height: 250px !important;
}

/* Adjust based on screen size */
@media (min-width: 46.25em) {
    .teaser-list--small.m-slider {
        min-height: 320px; /* Smaller height on tablet+ since items are in grid */
    }

    .teaser-list--small.m-slider.slick-loading {
        min-height: 320px !important;
    }

    .teaser-list--tiny.m-slider {
        min-height: 220px;
    }

    .teaser-list--tiny.m-slider.slick-loading {
        min-height: 220px !important;
    }

    .document-section--content-slider .teaser-list.m-slider {
        min-height: 280px;
    }

    .document-section--content-slider .teaser-list.m-slider.slick-loading {
        min-height: 280px !important;
    }
}

@media (min-width: 61.25em) {
    .teaser-list--small.m-slider {
        min-height: 280px; /* Even smaller on desktop */
    }

    .teaser-list--small.m-slider.slick-loading {
        min-height: 280px !important;
    }

    .document-section--content-slider .teaser-list.m-slider {
        min-height: 260px;
    }

    .document-section--content-slider .teaser-list.m-slider.slick-loading {
        min-height: 260px !important;
    }
}

/* Smooth transition when slider initializes */
.teaser-list.m-slider {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

/* Enhanced height animation during initialization */
.teaser-list.m-slider.slick-loading {
    transition: none; /* Disable transition during loading */
    overflow: hidden;
}

.teaser-list.m-slider.slick-initializing {
    transition: min-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s ease-out;
}

/* Add height animation classes for smooth transitions */
.teaser-list.m-slider.height-animate {
    animation: sliderHeightSettle 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sliderHeightSettle {
    0% {
        transform: translateY(-5px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(2px);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Reduce opacity during loading to soften the transition */
.teaser-list.m-slider.slick-loading .teaser-list__item,
.teaser-list.m-slider.slick-loading .frame-default {
    opacity: 0.3;
    transform: translateY(10px) scale(0.98);
    transition: all 0.4s ease-out;
}

/* Staggered animation for individual slides during initialization */
.teaser-list.m-slider.slick-loading .teaser-list__item:nth-child(1),
.teaser-list.m-slider.slick-loading .frame-default:nth-child(1) {
    transition-delay: 0ms;
}

.teaser-list.m-slider.slick-loading .teaser-list__item:nth-child(2),
.teaser-list.m-slider.slick-loading .frame-default:nth-child(2) {
    transition-delay: 100ms;
}

.teaser-list.m-slider.slick-loading .teaser-list__item:nth-child(3),
.teaser-list.m-slider.slick-loading .frame-default:nth-child(3) {
    transition-delay: 200ms;
}

.teaser-list.m-slider.slick-loading .teaser-list__item:nth-child(4),
.teaser-list.m-slider.slick-loading .frame-default:nth-child(4) {
    transition-delay: 300ms;
}

.teaser-list.m-slider.slick-initialized .teaser-list__item,
.teaser-list.m-slider.slick-initialized .frame-default {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced initialization animation */
.teaser-list.m-slider.slick-initialized {
    animation: sliderReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sliderReveal {
    0% {
        transform: translateY(5px) translateZ(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
}

/* Add breathing effect during loading for visual interest */
.teaser-list.m-slider.slick-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: breathingGlow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes breathingGlow {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%) translateZ(0);
    }
    50% {
        opacity: 1;
        transform: translateX(100%) translateZ(0);
    }
}

/* Hide breathing effect once initialized */
.teaser-list.m-slider.slick-initialized::after {
    display: none;
}

/* Cleanup: Remove will-change after animations complete */
.teaser-list.m-slider.animation-complete {
    will-change: auto;
}

.slick-initialized .teaser-list__item {
    margin-bottom: 0;
}

.teaser-list .teaser-list__item {
    min-height: 1px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    margin-bottom: 3.5rem;
}

@media (min-width: 33.75em) {
    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item {
        float: left;
        width: 50%;
    }

    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item {
        width: 33.333%;
    }

    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1) {
        clear: none;
    }

    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 61.25em) {
    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item {
        width: 25%;
    }

    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1) {
        clear: none;
    }

    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item:nth-child(3n + 1) {
        clear: none;
    }

    .teaser-list--tiny:not(.slick-initialized) .teaser-list__item:nth-child(4n + 1) {
        clear: left;
    }
}

@media (min-width: 33.75em) {
    .teaser-list--small:not(.slick-initialized) .teaser-list__item {
        float: left;
        width: 50%;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--small:not(.slick-initialized) .teaser-list__item {
        width: 33.333%;
    }
}

@media (min-width: 33.75em) {
    .teaser-list--small:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--small:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--small:not(.slick-initialized) .teaser-list__item:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {

    .l-column--small .teaser-list--small:not(.slick-initialized) .teaser-list__item,
    .l-column--small .teaser-list--small:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1),
    .l-column--small .teaser-list--small:not(.slick-initialized) .teaser-list__item:nth-child(3n + 1) {
        clear: none;
        float: none;
        width: auto;
    }
}

@media (min-width: 33.75em) {
    .teaser-list--medium:not(.slick-initialized) .teaser-list__item {
        float: left;
        width: 50%;
    }
}

.teaser-list--medium:not(.slick-initialized) .teaser-list__item:nth-child(2n + 1) {
    clear: left;
}

@font-face {
    font-family: PTSans;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/PTSans/PTS55F_W.ttf");
}

@font-face {
    font-family: PTSans;
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/PTSans/PTS56F_W.ttf");
}

@font-face {
    font-family: PTSans;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/PTSans/PTS75F_W.ttf");
}

@font-face {
    font-family: PTSans;
    font-weight: 700;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/PTSans/PTS76F_W.ttf");
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

:root,
html {
    background-color: #f7f7f7;
    border-bottom: thin solid transparent;
    box-sizing: border-box;
    min-height: 100%;
}

body {
    -webkit-tap-highlight-color: transparent;
    background-color: var(--color-white);
    box-shadow: 0px 0px 30px rgba(140, 153, 191, 0.5);
    color: var(--color-text);
    margin: 0 auto;
    max-width: 1140px;
    padding: 0;
}

h1,
.m-tab__headline,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1em;
}

p,
blockquote,
address,
dl,
ul,
ol,
table,
fieldset,
figure,
pre,
code {
    margin: 0 0 1.3334em;
}

p:last-child,
blockquote:last-child,
address:last-child,
dl:last-child,
ul:last-child,
ol:last-child,
table:last-child,
fieldset:last-child,
figure:last-child,
pre:last-child,
code:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-secondary);
    text-decoration: underline;
}

a img {
    border: 0;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="search"] {
    -webkit-appearance: none;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

svg {
    height: auto;
    max-width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

abbr {
    cursor: help;
}

dt,
dd {
    display: block;
    margin-top: 0.5rem;
}

dt {
    padding: 0;
    font-weight: bold;
}

dt:first-child {
    margin-top: 0;
}

dd {
    margin: 0;
}

hr {
    background-color: #ccc;
    border: 0;
    clear: both;
    display: block;
    font-size: 1px;
    height: 1px;
    line-height: 1;
    margin: 2rem 0;
}


.expert-search__advanced hr {
    background-color: var(--color-white);
}

table {
    border: 0;
    border-collapse: collapse;
    font-size: 1.5rem;
    vertical-align: top;
    width: 100%;
}

table p:last-child {
    margin-bottom: 0;
}

tr {
    border-top: thin solid #ccc;
}

tr:first-child {
    border-top-color: #000;
}

thead tr {
    border-top: 0;
}

th,
td {
    border: 0;
    padding: 0.5rem;
    text-align: left;
    vertical-align: top;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

tr:last-child th,
tr:last-child td {
    padding-bottom: 0.5rem;
}

th {
    font-weight: 700;
    vertical-align: middle;
    white-space: nowrap;
}

tr:first-child td {
    padding-top: 0.5rem;
}

embed {
    height: auto;
    max-width: 100%;
}

code,
pre {
    font-family: Monaco, Consolas, monospace;
    font-size: 1.3rem;
    line-height: 1.25;
    background-color: rgba(0, 0, 0, 0.1);
    border: thin solid #ccc;
    color: var(--color-white);
    overflow: scroll;
}

address {
    font-style: normal;
}

dfn,
samp {
    font-family: Monaco, Consolas, monospace;
    font-size: 1.3rem;
    line-height: 1.25;
}

:root,
html {
    font-size: 62.5%;
    line-height: 1.5;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}

h1,
.m-tab__headline,
h2,
h3,
h4,
h5,
h6 {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    line-height: 1.25;
}

p:empty {
    display: none;
}

a.button-black,
a.button-black-outline {
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
    color: var(--color-white);
    display: inline-block;
    line-height: 1;
    padding: 0.5rem 2rem;
    -webkit-transition: background-color 0.1s 0s ease;
    transition: background-color 0.1s 0s ease;
}

a.button-black:hover,
a.button-black-outline:hover,
a.button-black:focus,
a.button-black-outline:focus {
    color: inherit;
    text-decoration: none;
}

a.button-black {
    background-color: #000;
}

a.button-black:focus,
a.button-black:hover {
    background-color: #888;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

a.button-black-outline {
    border: thin solid currentcolor;
    color: #000;
}

::-webkit-input-placeholder {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    color: #888;
}

::-moz-placeholder {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    color: #888;
}

:-ms-input-placeholder {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    color: #888;
}

fieldset {
    border: 0;
    padding: 0;
}

legend {
    display: block;
    font-size: 1.6rem;
    padding: 0;
}

label {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.5rem;
    display: block;
}

button,
input,
select,
textarea {
    vertical-align: middle;
}

[type="color"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="file"],
[type="number"],
[type="password"],
[type="phone"],
[type="range"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"] {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 2.5rem;
    background-color: var(--color-white);
    border: 1px solid #aaaaaa;
    height: 4rem;
    margin-top: 0.8rem;
    padding: 0 1.2rem;
    width: 100%;
}

[type="color"][readonly],
[type="date"][readonly],
[type="datetime"][readonly],
[type="datetime-local"][readonly],
[type="email"][readonly],
[type="file"][readonly],
[type="number"][readonly],
[type="password"][readonly],
[type="phone"][readonly],
[type="range"][readonly],
[type="search"][readonly],
[type="tel"][readonly],
[type="text"][readonly],
[type="time"][readonly],
[type="url"][readonly] {
    background: rgba(221, 221, 221, 0.5);
}

[type="color"]:disabled,
[type="date"]:disabled,
[type="datetime"]:disabled,
[type="datetime-local"]:disabled,
[type="email"]:disabled,
[type="file"]:disabled,
[type="number"]:disabled,
[type="password"]:disabled,
[type="phone"]:disabled,
[type="range"]:disabled,
[type="search"]:disabled,
[type="tel"]:disabled,
[type="text"]:disabled,
[type="time"]:disabled,
[type="url"]:disabled {
    background: rgba(221, 221, 221, 0.5);
}

textarea {
    font-size: 1.5rem;
    line-height: 1.666;
    background-color: var(--color-white);
    border: thin solid #aaa;
    height: 11.5em;
    min-height: 6.5em;
    padding: 0.5em 0.5rem;
    resize: vertical;
    width: 100%;
}

textarea:disabled {
    background: rgba(221, 221, 221, 0.5);
}

select:not(.pika-select) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    height: 2.5rem;
    padding-left: 1.2rem;
    margin-top: 0.8rem;
}

select:not(.pika-select)::-ms-expand {
    display: none;
}

select:not(.pika-select)[multiple],
select:not(.pika-select)[size] {
    background-color: var(--color-white);
    height: auto;
}

select:not(.pika-select):disabled {
    background: rgba(221, 221, 221, 0.5);
}

button,
[type="submit"],
[type="reset"] {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 4rem;
    border: thin solid transparent;
    border-radius: 0;
    padding: 0 1em;
}

[type="submit"],
[type="button"] {
    color: var(--color-white);
    background-color: var(--color-secondary);
    -webkit-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}

[type="submit"]:focus,
[type="submit"]:hover {
    background-color: #42752d;
}

[type="submit"]:disabled {
    background: #888;
}

[type="reset"] {
    border: thin solid #000;
}

[type="reset"]:disabled {
    border-color: #888;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden,
.pane--active .m-tab__label {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.m-tab__nav::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

.clearfix {
    display: none !important;
    visibility: hidden;
}

.bold {
    font-weight: bold;
}

.c-container {
    clear: both;
    margin: 0;
    max-width: 780px;
}

.c-container::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

@media (min-width: 46.25em) {
    .c-container {
        max-width: 1140px;
    }
}

form .c-container {
    margin-bottom: 1.2rem;
}

.c-container--small {
    max-width: 780px;
}

.c-container--large {
    max-width: 1040px;
}

.c-column {
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.c-column::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

@media (min-width: 46.25em) {
    .c-column {
        float: left;
    }
}

@media (min-width: 46.25em) {
    .c-column {
        padding-left: 17.5px;
        padding-right: 17.5px;
    }

    .c-column:first-of-type {
        padding-left: 0;
    }

    .c-column:last-of-type {
        padding-right: 0;
    }
}

@media (min-width: 20em) {
    .c-column--tiny {
        float: left;
        width: 50%;
    }
}

@media (min-width: 46.25em) {
    .c-column--tiny {
        width: 25%;
    }
}

.c-column--tiny:nth-of-type(1),
.c-column--tiny:nth-of-type(2) {
    margin-bottom: 2rem;
}

@media (min-width: 46.25em) {

    .c-column--tiny:nth-of-type(1),
    .c-column--tiny:nth-of-type(2) {
        margin-bottom: 0;
    }
}

@media (min-width: 20em) {
    .c-column--tiny:nth-of-type(2n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {
    .c-column--tiny:nth-of-type(2n + 1) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .c-column--tiny:nth-of-type(4n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {
    .c-column--small {
        width: 33.333%;
    }
}

@media (min-width: 46.25em) {
    .c-column--medium {
        width: 50%;
    }
}

.c-column--medium:nth-child(1),
.c-column--medium:nth-child(3) {
    clear: left;
}

@media (min-width: 46.25em) {

    .c-column--medium:nth-child(1),
    .c-column--medium:nth-child(3) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .c-column--large {
        width: 66.667%;
    }
}

@media (min-width: 46.25em) {
    .c-column--huge {
        width: 66.667%;
    }
}

@media (min-width: 61.25em) {
    .c-column--huge {
        width: 75%;
    }
}

@media (min-width: 46.25em) {
    .c-column--full {
        float: none;
    }
}

.c-container--large .c-column--full {
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.document-section--stage .c-column--full {
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.l-container {
    clear: both;
    margin: 0 auto;
    max-width: 780px;
}

.l-container::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

@media (min-width: 46.25em) {
    .l-container {
        max-width: 1140px;
    }
}

.l-container--large {
    max-width: 1040px;
    margin: 0 auto;
}

.l-column {
    min-height: 1px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.l-column::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

@media (min-width: 46.25em) {
    .l-column {
        float: left;
    }
}

@media (min-width: 20em) {
    .l-column--tiny {
        float: left;
        width: 100%;
    }
}

@media (min-width: 46.25em) {
    .l-column--tiny {
        width: 33.333%;
    }
}

@media (min-width: 61.25em) {
    .l-column--tiny {
        width: 26%;
    }
}

.l-column--tiny:nth-of-type(1),
.l-column--tiny:nth-of-type(2) {
    margin-bottom: 2rem;
}

@media (min-width: 46.25em) {

    .l-column--tiny:nth-of-type(1),
    .l-column--tiny:nth-of-type(2) {
        margin-bottom: 0;
    }
}

@media (min-width: 20em) {
    .l-column--tiny:nth-of-type(2n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {
    .l-column--tiny:nth-of-type(2n + 1) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .l-column--tiny:nth-of-type(4n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {
    .l-column--small {
        width: 33.333%;
    }
}

@media (min-width: 46.25em) {
    .l-column--medium {
        width: 50%;
    }
}

.l-column--medium:nth-child(1),
.l-column--medium:nth-child(3) {
    clear: left;
}

@media (min-width: 46.25em) {

    .l-column--medium:nth-child(1),
    .l-column--medium:nth-child(3) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .l-column--large {
        width: 66.667%;
    }
}

@media (min-width: 46.25em) {
    .l-column--huge {
        width: 66.667%;
    }
}

@media (min-width: 61.25em) {
    .l-column--huge {
        width: 75%;
    }
}

@media (min-width: 46.25em) {
    .l-column--full {
        float: none;
    }
}

.l-container--large .l-column--full {
    min-height: 1px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.l-column--right {
    float: right;
}

.l-column--clear {
    clear: both;
}

@media (min-width: 46.25em) {
    .l-column--clear {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .l-column--30 {
        width: 30%;
        padding: 0;
    }
}

@media (min-width: 46.25em) {
    .l-column--30.left {
        padding-right: 0;
    }
}

@media (min-width: 46.25em) {
    .l-column--30.right {
        padding-left: 0;
    }
}

@media (min-width: 46.25em) {
    .l-column--40 {
        width: 40%;
        padding-right: 0;
        padding-left: 0;
    }
}

@media print {
    [class*=l-column] {
        float: none !important;
        clear: both !important;
        width: auto !important;
    }
}

#manuel {
    coffee: auto;
    cigarettes: none;
    stress: 100%;
}

.document-breadcrumbs {
    display: none;
}

@media (min-width: 33.75em) {
    .document-breadcrumbs {
        display: block;
    }
}

/* .document-content__content h2 {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.document-content__content h3 {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
}

.document-content__content h4 {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
}

.document-content__content h5 {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.document-content__content h6 {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
} */

.document-footer {
    border-top: 2px solid #f2f2f2;
}

.document-footer .l-container {
    background: var(--color-white);
}

.document-footer .frame-default.frame-default {
    padding-bottom: 3.5rem;
    padding-top: 4.8rem;
}

.document-footer h1,
.document-footer .m-tab__headline {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 4.8rem;
    text-transform: uppercase;
}

.document-footer .ce-image .ce-column {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.document-footer .ce-image .ce-column:last-child {
    margin-right: 0;
}

.document-footer .l-column--tiny .ce-gallery {
    margin-right: 0;
}

.document-footer .ce-textpic .ce-bodytext {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
}


/* .document-footer h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: uppercase;
} */

#footer a {
    color: var(--color-white);
    text-decoration: none;
}

#footer a:hover,
#footer a:focus {
    color: inherit;
    text-decoration: underline;
}

#footer .l-container {
    background: var(--color-primary);
    padding: 2.8rem 0;
    color: var(--color-white);
}

#footer .l-column--full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 33.75em) {
    #footer .l-column--full {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 46.25em) {
    #footer .l-column--full {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 46.25em) {
    #footer .l-column--full>span {
        margin-right: 2.8rem;
    }
}

.document-header {
    padding-bottom: 0;
}

.offcanvas-active .document-header {
    margin-bottom: 0;
}

.document-header .l-column {
    padding-left: 0;
    padding-right: 0;
}

.document-header__container {
    background: var(--color-primary);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 8rem;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 46.25em) {
    .document-header__container {
        height: 8rem;
        padding-right: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.document-breadcrumbs,
.document-content,
.document-section {
    padding: 3.5rem 0;
}

@media (min-width: 46.25em) {

    .document-breadcrumbs,
    .document-content,
    .document-section {
        padding-bottom: 4.8rem;
        padding-top: 4.8rem;
    }
}

@media (min-width: 33.75em) {

    .document-breadcrumbs+.document-main .document-breadcrumbs,
    .document-breadcrumbs+.document-main .document-content,
    .document-breadcrumbs+.document-main .document-section {
        padding-top: 0;
    }
}

.document-title {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
}

@media (min-width: 46.25em) {
    .main-navigation ul {
        display: block;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.5rem;
        text-decoration: none;
        color: var(--color-secondary);
        width: 100%;
    }

    .main-navigation>ul {
        height: 106px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 2rem 0;
    }

    .main-navigation>ul>li {
        position: relative;
        width: 100%;
    }

    .main-navigation>ul>li:nth-of-type(1) {
        position: relative;
        padding-left: 116px;
    }

    .main-navigation>ul>li:nth-of-type(1):before {
        height: 106px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -126px;
        width: 106px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(2) {
        position: relative;
        padding-left: 116px;
    }

    .main-navigation>ul>li:nth-of-type(2):before {
        height: 106px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -1208px;
        width: 106px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(3) {
        position: relative;
        padding-left: 116px;
    }

    .main-navigation>ul>li:nth-of-type(3):before {
        height: 106px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -447px;
        width: 106px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(4) {
        position: relative;
        padding-left: 116px;
    }

    .main-navigation>ul>li:nth-of-type(4):before {
        height: 106px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -447px;
        width: 106px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(1):hover {
        position: relative;
        padding-left: 52px;
    }

    .main-navigation>ul>li:nth-of-type(1):hover:before {
        height: 57px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -232px;
        width: 42px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(2):hover {
        position: relative;
        padding-left: 53px;
    }

    .main-navigation>ul>li:nth-of-type(2):hover:before {
        height: 57px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -1314px;
        width: 43px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(3):hover {
        position: relative;
        padding-left: 53px;
    }

    .main-navigation>ul>li:nth-of-type(3):hover:before {
        height: 57px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -553px;
        width: 43px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation>ul>li:nth-of-type(4):hover {
        position: relative;
        padding-left: 53px;
    }

    .main-navigation>ul>li:nth-of-type(4):hover:before {
        height: 57px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -553px;
        width: 43px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .main-navigation__flyout {
        background-color: var(--color-secondary);
        color: var(--color-secondary);
        left: 1px;
        opacity: 0;
        padding: 0.5rem;
        position: absolute;
        top: 56px;
        visibility: hidden;
        width: 100%;
        z-index: 1001;
    }

    .main-navigation__flyout a {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        display: inline-block;
        overflow: hidden;
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .main-navigation__flyout a:after {
        content: "";
        position: absolute;
        left: calc(2rem + 2.5px);
        right: 0;
        bottom: 0;
        background: var(--color-white);
        height: 2px;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        z-index: -1;
    }

    .main-navigation__flyout a:hover:after,
    .main-navigation__flyout a:focus:after,
    .main-navigation__flyout a:active:after {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .main-navigation ul li:hover .main-navigation__flyout,
    .main-navigation ul li:focus .main-navigation__flyout {
        opacity: 1;
        visibility: visible;
    }

    .main-navigation p {
        height: 100%;
        margin-bottom: 0;
        -ms-flex-item-align: center;
        align-self: center;
    }

    .menu_abstract {
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-decoration: none;
        color: var(--color-white);
    }

    .menu_active_wrapper a {
        position: relative;
        padding-left: 22px;
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-decoration: none;
        color: var(--color-white);
    }

    .menu_active_wrapper a:before {
        height: 17px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -412px;
        width: 12px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .menu_active_wrapper ul li {
        margin-bottom: 1.2rem;
    }

    .menu_active_wrapper {
        top: calc(56px + 75px);
        left: 1px;
        padding: 0 1.2rem;
        z-index: 1001;
    }

    .menu_abstract {
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-decoration: none;
        left: 1px;
        padding: 1.2rem;
        z-index: 1001;
    }
}

@media (max-width: 46.24em) {
    .main-navigation {
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        text-decoration: none;
        background-color: var(--color-secondary);
        color: var(--color-white);
    }

    .main-navigation ul {
        display: block;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
    }

    .main-navigation>ul>li {
        border-bottom: thin solid var(--color-white);
        padding: 2rem;
    }

    .menu_active_wrapper a {
        position: relative;
        padding-left: 22px;
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-decoration: none;
        color: var(--color-white);
    }

    .menu_active_wrapper a:before {
        height: 17px;
        background-image: url("../img/svg-sprite.svg");
        background-position: 0px -412px;
        width: 12px;
        background-size: 106px 2027px;
        background-repeat: no-repeat;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        margin: auto;
        position: absolute;
        right: auto;
        top: 0;
        -webkit-transform: rotate(auto) scale(before);
        transform: rotate(auto) scale(before);
    }

    .menu_abstract {
        font-family: PTSans, Helvetica, Arial, sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-decoration: none;
        margin-bottom: 2rem;
    }

    .main-navigation {
        visibility: hidden;
        opacity: 0;
        position: absolute;
    }

    .offcanvas-active .main-navigation {
        visibility: visible;
        opacity: 1;
        position: relative;
    }
}

#mobile-menu {
    margin-left: 8px;
}

@media (min-width: 46.25em) {
    #mobile-menu {
        display: none;
    }
}

#mobile-menu svg {
    height: 36px;
    overflow: visible;
}

.menu-icon__bar {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.offcanvas-active .menu-icon__bar-1 {
    opacity: 0;
}

.offcanvas-active .menu-icon__bar-3 {
    opacity: 0;
}

.document-section--nav .l-container {
    background: #DEF1FB;
}

.homepage-navigation {
    padding-top: 2rem;
    position: relative;
    padding-top: 0;
}

.homepage-navigation ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 146px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-bottom: 3rem;
    margin-right: -.5rem;
    margin-left: -.5rem;
}

.homepage-navigation li {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    padding: 0 .5rem;
}

.homepage-navigation li a::before,
.homepage-navigation li span::before {
    position: relative !important;
    margin-bottom: 1.2rem !important;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
}

@media (min-width: 33.75em) {

    .homepage-navigation li a::before,
    .homepage-navigation li span::before {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@media (min-width: 46.25em) {

    .homepage-navigation li a::before,
    .homepage-navigation li span::before {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@media (min-width: 61.25em) {

    .homepage-navigation li a::before,
    .homepage-navigation li span::before {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.homepage-navigation li.bauherren a,
.homepage-navigation li.bauherren span {
    position: relative;
}

.homepage-navigation li.bauherren a:before,
.homepage-navigation li.bauherren span:before {
    height: 106px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -289px;
    width: 106px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage-navigation li.bauherren a.active,
.home .homepage-navigation li.bauherren a,
.homepage-navigation li.bauherren a:hover,
.homepage-navigation li.bauherren span.active,
.home .homepage-navigation li.bauherren span,
.homepage-navigation li.bauherren span:hover {
    position: relative;
}

.homepage-navigation li.bauherren a.active:before,
.home .homepage-navigation li.bauherren a:before,
.homepage-navigation li.bauherren a:hover:before,
.homepage-navigation li.bauherren span.active:before,
.home .homepage-navigation li.bauherren span:before,
.homepage-navigation li.bauherren span:hover:before {
    height: 106px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -126px;
    width: 106px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage-navigation li.unternehmen a,
.homepage-navigation li.unternehmen span {
    position: relative;
}

.homepage-navigation li.unternehmen a:before,
.homepage-navigation li.unternehmen span:before {
    height: 106px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1371px;
    width: 106px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage-navigation li.unternehmen a.active,
.home .homepage-navigation li.unternehmen a,
.homepage-navigation li.unternehmen a:hover,
.homepage-navigation li.unternehmen span.active,
.home .homepage-navigation li.unternehmen span,
.homepage-navigation li.unternehmen span:hover {
    position: relative;
}

.homepage-navigation li.unternehmen a.active:before,
.home .homepage-navigation li.unternehmen a:before,
.homepage-navigation li.unternehmen a:hover:before,
.homepage-navigation li.unternehmen span.active:before,
.home .homepage-navigation li.unternehmen span:before,
.homepage-navigation li.unternehmen span:hover:before {
    height: 106px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1208px;
    width: 106px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage-navigation li.experten a,
.homepage-navigation li.experten span {
    position: relative;
}

.homepage-navigation li.experten a:before,
.homepage-navigation li.experten span:before {
    height: 106px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -610px;
    width: 106px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage-navigation li.experten a.active,
.home .homepage-navigation li.experten a,
.homepage-navigation li.experten a:hover,
.homepage-navigation li.experten span.active,
.home .homepage-navigation li.experten span,
.homepage-navigation li.experten span:hover {
    position: relative;
}

.homepage-navigation li.experten a.active:before,
.home .homepage-navigation li.experten a:before,
.homepage-navigation li.experten a:hover:before,
.homepage-navigation li.experten span.active:before,
.home .homepage-navigation li.experten span:before,
.homepage-navigation li.experten span:hover:before {
    height: 106px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -447px;
    width: 106px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage-navigation li a {
    color: inherit;
    text-decoration: none;
}

.homepage-navigation li a:hover,
.homepage-navigation li a:focus {
    color: inherit;
    text-decoration: underline;
}

.homepage-navigation li a,
.homepage-navigation li span {
    display: block;
    font-size: 1.1rem;
    padding-top: 2rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: -53px;
    padding-top: 0;
}

@media (min-width: 25em) {

    .homepage-navigation li a,
    .homepage-navigation li span {
        font-size: 1.5rem;
    }
}

@media (min-width: 33.75em) {

    .homepage-navigation li a,
    .homepage-navigation li span {
        font-size: 1.5rem;
    }
}

@media (min-width: 46.25em) {

    .homepage-navigation li a,
    .homepage-navigation li span {
        font-size: 1.9rem;
    }
}

@media (min-width: 61.25em) {

    .homepage-navigation li a,
    .homepage-navigation li span {
        font-size: 1.9rem;
    }
}

#login {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 25px;
    font-size: 1.6rem;
    color: var(--color-white);
    margin-left: 2rem;
}

@media (min-width: 56.25em) {
    #login {
        margin: 0;
        margin-left: 5rem;
        padding-right: 5rem;
    }
}

.logged-in #login {
    padding-right: 0;
}

.logged-in #login .tx-felogin-pi1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#logout_label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    float: left;
    padding-right: 1.2rem;
    width: 36px;
    font-size: 1.4rem;
    line-height: 1.6rem;
    height: 36px;
    display: inline-block;
    /* width: 20px; */
    white-space: nowrap;
    overflow: hidden;
}

#logout_label:before {
    height: 36px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1731px;
    width: 36px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@media (min-width: 46.25em) {
    #logout_label {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-right: 4.8rem;
    }
}

@media (min-width: 61.25em) {
    #logout_label {
        padding-right: 4.8rem;
    }
}

#logout_label:hover,
#logout_label:focus {
    text-decoration: underline;
}

#logout_label:hover:before,
#logout_label:focus:before {
    height: 36px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1695px;
    width: 36px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#logout_form .tx-felogin-pi1 {
    display: block;
}

#logout_form ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    border-bottom: 1px solid #aaaaaa;
    margin-bottom: 1.5rem;
}

#logout_form ul:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

#logout_form ul li {
    margin-bottom: 1px;
}

#logout_form ul li:last-child {
    margin-bottom: 0;
}

#logout_form a {
    color: var(--color-secondary);
    text-decoration: none;
    display: block;
    padding: 1rem 1.2rem;
}

#logout_form a:hover,
#logout_form a:focus {
    color: var(--color-secondary);
    text-decoration: none;
}

#logout_form a:hover,
#logout_form a:focus {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

#logout_form input {
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    text-align: left;
}

#login_label {
    cursor: pointer;
}

#login_label:before {
    height: 36px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1695px;
    width: 36px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#login_label:hover,
#login_label:focus {
    text-decoration: underline;
}

#login_label:hover:before,
#login_label:focus:before {
    height: 36px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1731px;
    width: 36px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#login .privacy-hint {
    color: #333;
    margin: 0 0 0.5em;
}

#login_form,
#logout_form {
    background: var(--color-white);
    max-height: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 80px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 999;
}

@media (min-width: 46.25em) {

    #login_form,
    #logout_form {
        width: 320px;
    }
}

#login_form.visible,
#logout_form.visible {
    max-height: 1000px;
    opacity: 1;
    padding: 2rem;
    visibility: visible;
}

#login_form .form_actions,
#logout_form .form_actions {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#user {
    margin-bottom: 0.2rem;
    margin-top: 0;
}

.felogin-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#forgot_password {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 2.5rem;
}

#forgot_password a {
    color: var(--color-secondary);
    text-decoration: none;
}

#forgot_password a:hover,
#forgot_password a:focus {
    color: var(--color-secondary);
    text-decoration: underline;
}

.register {
    display: block;
    margin-top: 1.5rem;
}

.header-slogan {
    padding-right: 15px;
    text-align: center;
}

.header-slogan img {
    max-width: 80%;
}

@media (min-width: 33.75em) {
    .header-slogan {
        padding-right: 30px;
    }

    .header-slogan img {
        max-width: none;
    }
}

.f-form h2 {
    margin-top: 4.8rem;
}

.f-fieldset {
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    position: relative;
}

.f-fieldset::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

.f-fieldset>legend {
    margin-bottom: 1.2rem;
}

.f-field-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.f-field-group::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

.f-field-group.f-field-group-align-top .f-field,
.f-field-group.f-field-group-align-top .f-button-container {
    align-self: flex-start;
}

.f-field-group.f-field-group-align-middle .f-field,
.f-field-group.f-field-group-align-middle .f-button-container {
    align-self: center;
}


@media (min-width: 33.75em) {
    .f-field-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 33.75em) {
    .f-field-group--inline {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap row;
        flex-flow: nowrap row;
    }
}

.f-button-container {
    margin-bottom: 2rem;
}

@media (min-width: 46.25em) {
    .f-button-container>* {
        margin-right: 1.2rem;
    }

    .f-button-container>*:last-child {
        margin-right: 0;
    }
}

.f-button-container button {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 4rem;
}

form[name="qualification"] .f-button-container,
form[name="frontendUser"] .f-button-container {
    margin-top: 2rem;
}

.f-info-container {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 3.5rem;
}

.f-field {
    clear: left;
}

.f-fieldset .f-field,
.f-field-group .f-field {
    margin-bottom: 2rem;
    min-height: 1px;
    padding-right: 35px;
    position: relative;
}

@media (min-width: 540px) {
    .f-field-group--inline .f-field {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}


.f-field input {
    color: var(--color-text);
}

.f-field input:focus {
    outline: 2px solid var(--color-secondary);
    outline: 2px solid var(--color-secondary);
}

.f-field button {
    white-space: nowrap;
}

.f-field--inline {
    display: inline-block;
}

@media (min-width: 33.75em) {


    .f-field--nano {
        clear: none;
        float: left;
        width: 15%;
    }
}

@media (max-width: 46.25em) {

    #calendar .f-field-group {
        display: block !important;

    }
}


@media (min-width: 33.75em) {
    .f-field-group--inline .f-field--nano {
        -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    }
}

@media (min-width: 33.75em) {
    .f-field--tiny {
        clear: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        float: left;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 25%;
    }
}

@media (min-width: 33.75em) {
    .f-field-group--inline .f-field--tiny {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }
}

@media (min-width: 33.75em) {
    .f-field--small {
        clear: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        float: left;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 33.333%;
    }

    .expert-search__advanced .f-fieldset .f-type-checkbox.f-field--small:nth-child(3n-1) {
        clear: left;
    }
}

@media (min-width: 33.75em) {
    .f-field-group--inline .f-field--small {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }
}

@media (min-width: 33.75em) {
    .f-field--medium {
        clear: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        float: left;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 50%;
    }
}

@media (min-width: 33.75em) {
    .f-field-group--inline .f-field--medium {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}

@media (min-width: 33.75em) {
    .f-field--large {
        clear: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        float: left;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 66.667%;
    }
}

@media (min-width: 33.75em) {
    .f-field-group--inline .f-field--large {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
    }
}

@media (min-width: 33.75em) {
    .f-field--huge {
        clear: none;
        float: left;
        width: 75%;
    }
}

@media (min-width: 33.75em) {
    .f-field-group--inline .f-field--huge {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    }
}

.f-type-checkbox input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.f-type-checkbox fieldset label {
    margin-bottom: 0.8rem;
}

.f-type-checkbox label {
    cursor: pointer;
    display: inline-block;
    margin-right: 40px;
}

.f-type-checkbox .f-label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    position: relative;
}

.f-field--info .f-label {
    display: block;
    position: relative;
}

.f-field--info .f-label .ibutton__icon {
    transform: translate(0);
    right: 13px;
    margin-top: .4rem;
}

.f-type-checkbox .f-label::before {
    background-color: var(--color-white);
    border: thin solid var(--color-secondary);
    bottom: 0;
    content: '';
    display: block;
    height: 20px;
    margin: 2px 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
}

.f-type-checkbox .f-label::after {
    background: var(--color-secondary);
    bottom: 0;
    content: '';
    display: block;
    height: 14px;
    margin: 5px 0;
    left: 3px;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.1s 0s ease-in;
    transition: opacity 0.1s 0s ease-in;
    width: 14px;
}

.f-type-checkbox input:checked+.f-label::after {
    opacity: 1;
}

.f-type-checkbox input:disabled+.f-label {
    color: #888;
}

.f-type-checkbox input:disabled+.f-label::before {
    border-color: #888;
}

.f-type-checkbox input:disabled+.f-label::after {
    background: #888;
}

.f-type-checkbox label:first-of-type {
    margin-top: 0.8rem;
}

.f-type-file {
    min-height: 4rem !important;
}

.f-upload-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.f-type-file label {
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: inline-block;
    line-height: 2rem;
    padding: 1.2rem 2rem;
    -webkit-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}

.f-type-file label:focus,
.f-type-file label:hover {
    background-color: #42752d;
}

.f-type-file label:disabled {
    background: #888;
}

.f-type-file:not(.f-type-file-simple) input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.f-type-file .uploadblock {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-type-file .uploadblock button {
    margin-left: 2rem;
}

.f-type-file .previewblock-files {
  padding-left: 1.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
}

.f-type-file .previewblock-files .current-upload .control-wrapper,
.f-type-file .previewblock-files .previous-upload .control-wrapper {
    display: inline-flex;
    width: 100%
}

.f-type-file .previewblock-files .current-upload .control-wrapper div.delete-button,
.f-type-file .previewblock-files .previous-upload .control-wrapper div.delete-button {
    margin-left: auto;
}

.f-type-file .previewblock {
    padding-left: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color-white);
}

.f-type-file .previewblock a.tx_wilfrontendedit_pi1_delete_button,
.f-type-file .previewblock a.file_delete_button,
.f-type-file .previewblock-files a.tx_wilfrontendedit_pi1_delete_button {
    color: inherit;
    text-decoration: none;
    background-color: #cc2626;
    color: var(--color-white);
    display: inline-block;
    line-height: 2rem;
    padding: 1.2rem 2rem;
    -webkit-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}

.f-type-file .previewblock a.tx_wilfrontendedit_pi1_delete_button:hover,
.f-type-file .previewblock a.tx_wilfrontendedit_pi1_delete_button:focus,
.f-type-file .previewblock a.file_delete_button:hover,
.f-type-file .previewblock a.file_delete_button:focus {
    color: var(--color-white);
    text-decoration: none;
}

.f-type-file .previewblock a.tx_wilfrontendedit_pi1_delete_button:focus,
.f-type-file .previewblock a.tx_wilfrontendedit_pi1_delete_button:hover,
.f-type-file .previewblock a.file_delete_button:focus,
.f-type-file .previewblock a.file_delete_button:hover {
    background-color: #a11e1e;
}

.f-type-file .previewblock .ok {
    color: var(--color-secondary);
    margin-right: 1.2rem;
}

.f-type-file .previewblock a {
    color: var(--color-text);
    font-weight: bold;
}

.f-type-file .info {
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.f-type-file.f-type-file-simple>input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.f-type-file.f-type-file-simple label {
    margin-top: 1px;
    margin-right: 2rem;
}

.f-type-file.f-type-file-simple input {
    margin-top: -3px;
    line-height: 2.9;
}

.f-files {
    font-size: 1.5rem;
    line-height: 1.25;
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color-white);
    color: var(--color-text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    min-height: 44px;
    padding-left: 1.2rem;
}

.f-files li {
    margin-bottom: 0.5rem;
}

.f-files li:last-child {
    margin-bottom: 0;
}

.f-type-radio input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.f-type-radio fieldset label {
    margin-bottom: 0.8rem;
}

.f-type-radio label {
    cursor: pointer;
}

.f-type-radio .f-label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    position: relative;
}

.f-type-radio .f-label::before {
    background-color: var(--color-white);
    border: thin solid var(--color-secondary);
    border-radius: 50%;
    bottom: 0;
    content: '';
    display: block;
    height: 20px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    width: 20px;
}

.f-type-radio .f-label::after {
    background: var(--color-secondary);
    border-radius: 50%;
    bottom: 0;
    content: '';
    display: block;
    height: 14px;
    left: 3px;
    margin: auto 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.1s 0s ease-in;
    transition: opacity 0.1s 0s ease-in;
    width: 14px;
}

.f-type-radio input:checked+.f-label::after {
    opacity: 1;
}

.f-type-radio input:disabled+.f-label {
    color: #888;
}

.f-type-radio input:disabled+.f-label::before {
    border-color: #888;
}

.f-type-radio input:disabled+.f-label::after {
    background: #888;
}

.f-type-radio label:first-of-type {
    margin-top: 0.8rem;
}

.f-type-select .f-container {
    position: relative;
}

.f-type-select .f-container:before {
    height: 10px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -2003px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.f-type-select .f-container::before {
    bottom: 14px;
    pointer-events: none;
    position: absolute;
    right: 0;
    margin-right: 15px;
}

.f-type-select .f-container select {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 2.5rem;
    border: 1px solid #aaaaaa;
    height: 4rem;
    width: 100%;
    padding-right: 40px;
}

.f-type-select .f-container select:focus {
    outline: 2px solid var(--color-secondary);
}

.f-type-select .f-container option {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 2.5rem;
    background-color: var(--color-white);
    padding: 0.5rem;
}

@media (min-width: 33.75em) {
    .f-input--nano .f-container {
        width: calc(20% - 17.5px);
    }

    .f-input--tiny .f-container {
        width: calc(25% - 17.5px);
    }

    .f-input--small .f-container {
        width: calc((100% / 3) - 23px);
    }

    .f-input--medium .f-container {
        width: calc(50% - 17.5px);
    }

    .f-input--large .f-container {
        width: calc((100% / 3 * 2) - (17.5px * 2 / 3));
    }
}

.f-field--inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-field--inline .f-container {
    display: inline-block;
    margin-right: 10px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.f-field--inline label {
    display: inline;
    position: relative;
    top: 5px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    left: 35px;
}

.f-type-file .f-field-description {
    margin-bottom: 0.8rem;
}

.f-type-file button:not(.ibutton__icon) {
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: inline;
    font-size: 1.6rem;
    line-height: 1.8rem;
    padding: 1.2rem 2rem;
    -webkit-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}

.f-type-file button:not(.ibutton__icon):focus,
.f-type-file button:not(.ibutton__icon):hover {
    background-color: #42752d;
}

.f-field__title {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.5rem;
    margin-bottom: 0.8rem;
}

.f-subtitle {
    font-style: italic;
    margin-bottom: 0.5rem;
}

textarea {
    margin-top: 0.8rem;
}

.f-container {
    position: relative;
}

p.error {
    color: var(--color-error);
}

.f-field .error {
    color: var(--color-error);
    margin-bottom: 0;
}

.f-field .error+.f-container input,
.f-field .error+.f-container select,
.f-field .error+.f-container textarea {
    border-color: var(--color-error);
}

.f-field--hiddenlabel label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.files--complex {
    margin-bottom: 0;
}

.files--complex .f-field {
    margin-bottom: 1.2rem;
}

.files--complex .f-field-group {
    margin-bottom: 0;
}

.files--complex .hiddenfield {
    display: none;
}

.files--complex .error {
    color: var(--color-error);
    display: inline-block;
    margin-left: 2rem;
}

.f-field--required label::after {
    content: '*';
    margin-left: 2px;
}


.f-field--notrequired .asterix {
    display: none;
}

.nachweise_block--template {
    display: none;
}

.add-field {
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: inline;
    font-size: 1.6rem;
    line-height: 1.8rem;
    padding: 1.2rem 2rem;
    -webkit-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}

.add-field:focus,
.add-field:hover {
    background-color: #42752d;
}

.sub-checkbox-group {
    padding-left: 3.5rem;
}

.sub-checkbox-group .c-container {
    margin-bottom: 0;
}

.sub-checkbox-group .c-container label {
    margin-bottom: 0;
}

.f-field-group--nachweise {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.f-field .messageblock {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.f-type-file-label .f-files {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    padding: 0;
    min-height: 0;
}

.f-type-file-label.f-field--required label::after {
    content: none;
}

.f-type-file-label.f-field--required .field-label::after {
    content: '*';
    margin-left: 2px;
}

.tx_wilfrontendedit_pi1_upload_field {
    border: 0;
    line-height: 0;
    padding: 0;
}

.tx_wilfrontendedit_pi1_upload_button {
    color: var(--color-white) !important;
}

.m-tab__nav {
    font-size: 1.5rem;
    font-weight: 700;
    list-style: none;
    margin-bottom: 4.8rem;
    padding: 0;
}

.m-tab__nav-item {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 1.2rem 2rem;
    border: thin solid rgba(0, 0, 0, 0.1);
    border-bottom-width: 0;
    border-left-width: 0;
}

.m-tab__nav-item:first-child {
    border-left-width: 1px;
}

.m-tab__nav-item[aria-selected=true] {
    background-color: var(--color-white);
    border-color: #ccc;
    box-shadow: none;
    color: var(--color-secondary);
}

.m-tab__nav-item a {
    color: inherit;
}

.m-tab--initialized .m-tab {
    display: none;
}

.m-tab--initialized .m-tab[aria-selected=true],
.m-tab--initialized .m-tab[aria-hidden=false] {
    display: block;
}

@media print {
    .m-tab {
        display: block !important;
    }

    .m-tab::after {
        content: attr(data-label);
        display: block;
        font-size: 2rem;
        padding-bottom: 2rem;
    }

    .m-tab__label {
        border: 0 !important;
        clip: auto !important;
        height: auto !important;
        margin: 0 !important;
        overflow: visible !important;
        padding: 0 0 2rem !important;
        position: static !important;
        width: auto !important;
        font-size: 2rem;
    }

    .m-tab__nav {
        display: none !important;
    }
}

.c-container {
    margin-bottom: 0;
}

@media (min-width: 46.25em) {
    .c-column--large.c-column--large--push {
        margin-left: 33.33%;
        padding-left: 17.5px;
        padding-right: 0;
    }
}

.c-column--large+.c-column--small {
    padding-left: 17.5px;
}

.column_block input,
.column_block select {
    margin-top: 0.8rem;
}

.column_block .c-container {
    margin-bottom: 0;
}

.column_block .content__title {
    border-bottom: 1px solid #aaaaaa;
    margin-bottom: 4.8rem;
}

.column_block .content__title h3 {
    margin-bottom: 1rem;
}

.column_block>ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4.8rem;
}

@media (min-width: 46.25em) {
    .column_block>ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

body.has-js .column_block>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.column_block .row__title {
    border-bottom: 1px solid #aaaaaa;
    margin-bottom: 4rem;
    margin-top: 6rem;
}

.column_block .row__title h4 {
    display: inline-block;
    margin-bottom: .8rem;
    font-size: 1.8rem;
    color: #3398D8;
}

.column_block .row {
    margin-bottom: 2rem;
}

.column_block .row::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

.column_block .c-column--small {
    font-size: 1.4rem;
}

.column_block .c-column--small p {
    font-size: inherit;
}

.column_block .green {
    color: var(--color-secondary);
}

.column_block .red {
    color: #cc2626;
}

.column_block .frame-default {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.column_block .ibutton__content.visible {
    margin-left: 0;
    width: 100%;
}

.column_block>table {
    height: 6.5rem;
    background: #e0e0e0;
    table-layout: fixed;
    margin-bottom: 60px;
}

.column_block>table td {
    border: 1px solid white;
    text-align: center;
    width: 130px;
}

.column_block>table td a {
    padding: 44px 0px;
    display: block;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1.0;
}

.column_block>table td.disabled a {
    color: #aaa;
}

.column_block>table td:focus,
.column_block>table td:hover {
    background: #3398D8;
}

.column_block>table td:focus a,
.column_block>table td:hover a {
    text-decoration: none;
    color: var(--color-white);
}

.column_block>table td.nolink {
    padding: 7px 0px 5px 0px;
    font-size: 1.6rem;
}

.column_block>table td.nolink:focus,
.column_block>table td.nolink:hover {
    background: #e0e0e0;
}

.column_block>table td:nth-child(3) {
    width: auto;
}

.column_block>table td.active {
    background-color: #3398D8;
}

.column_block>table td.active a {
    color: var(--color-white);
}

.column_block>table tr td.program a {
    padding: 7px 0px 7px 0px;
    line-height: 17px;
}

.m-toggle__target--hidden {
    height: 0;
    overflow: hidden;
}

.m-toggle__target--hidden.m-toggle__target--active {
    height: auto;
    overflow: visible;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    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: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    margin-left: 60px;
    margin-right: 60px;

}

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

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

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

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

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

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

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

.slick-slide .ce-left .ce-gallery,
.slick-slide .ce-column {
    float: none;
}

.slick-slide .ce-gallery figure {
    display: block;
}

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

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.teaser-list .slick-slide img {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
}

.network-partner .slick-slide img {
    border: 10px solid var(--color-white)fff;
}

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

.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: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.network-partner .slick-list {
    max-width: 100%;
    margin: 0 auto;
    margin-left: 75px;
    margin-right: 75px;
}

.slick-slide {
    margin-bottom: 0;
    padding: 0 2rem;
}

@media (max-width: 600px) {
    .slick-slide {
        margin-bottom: 0;
        padding: 0 1rem;
    }
}


.network-partner .slick-slide {
    padding: 0 1.2rem;
}

@media (max-width: 600px) {
    .network-partner .slick-slide {
        padding: 0 0.6rem;
    }
}

.slick-prev,
.slick-next {
    background: transparent;
    border: 0;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 50px;
    line-height: 0;
    outline: none;
    padding: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 30px;
    z-index: 42;
}

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

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

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

.slick-prev {
    position: absolute;
    left: 2rem;
}


.slick-prev:before {


    /*
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1900px;
    background-size: 106px 2027px;
     width: 12px;
     height: 17px;
    */

    background-image: url("../img/slider_arrow_left.png");
    height: 32px;
    width: 18px;

    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.network-partner .slick-prev {
    left: 1rem;
}

.slick-next {
    position: absolute;
    right: 2rem;
}

.slick-next:before {

    /*
    height: 17px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1900px;
    width: 12px;
    background-size: 106px 2027px;
    */

    background-image: url("../img/slider_arrow_left.png");
    height: 32px;
    width: 18px;

    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
}

.network-partner .slick-next {
    right: 2rem;
}


@media (max-width: 600px) {
    .slick-list {
        margin-left: 45px;
        margin-right: 45px;
    }

    .slick-prev {
        left: 0rem;
    }

    .slick-next {
        right: 0rem;
    }

    .network-partner .slick-list {
        margin-left: 15px;
        margin-right: 15px;
    }

    .network-partner .slick-prev {
        left: -2rem;
    }

    .network-partner .slick-next {
        right: -2rem;
    }
}

.slick-dots {
    bottom: -2rem;
}

@media (min-width: 75em) {
    .slick-dots {
        display: none;
    }
}

.slick-dots {
    bottom: -30px;
    display: block;
    list-style: none;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.slick-dots li {
    cursor: pointer;
    display: inline-block;
    height: 12px;
    margin: 0 5px;
    padding: 0;
    position: relative;
    width: 12px;
}

.slick-dots li.slick-active button {
    background: #666666;
}

.slick-dots button {
    background: #9b9b9b;
    border: 0;
    border-radius: 50%;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 12px;
    line-height: 0;
    outline: none;
    padding: 5px;
    width: 12px;
}

.slick-dots button:hover,
.slick-dots button:focus {
    outline: none;
}

.slick-dots button::before {
    content: '';
    height: 20px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 20px;
}

.slick-slide p {
    line-height: 1.4;
}

.header-meta-nav {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    color: var(--color-white);
    font-size: 1.3rem;
}

@media (min-width: 46.25em) {
    .header-meta-nav {
        clip: auto;
        height: auto;
        margin: auto;
        overflow: visible;
        position: static;
        width: auto;
        bottom: 5px;
        position: absolute;
        left: 310px;
    }
}

@media (min-width: 61.25em) {
    .header-meta-nav {
        bottom: 3px;
        left: auto;
        position: relative;
    }
}

.header-meta-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.header-meta-nav ul li {
    display: inline-block;
}

.header-meta-nav li:before {
    height: 9px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -438px;
    width: 6.6px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5ex;
}

.header-meta-nav li:not(:last-child) {
    margin-right: 1.5ex;
}

.header-meta-nav a {
    color: inherit;
    text-decoration: none;
}

.header-meta-nav a:hover,
.header-meta-nav a:focus {
    color: inherit;
    text-decoration: underline;
}

.header-logo {
    display: block;
    width: 30px;
    margin-left: 30px;
    overflow: hidden;
}

@media (min-width: 46.25em) {
    .header-logo {
        margin-right: 3.5rem;
        width: 400px;
    }
}

.header-logo #Fill-3,
.header-logo #Fill-4 {
    display: none;
}

@media (min-width: 46.25em) {

    .header-logo #Fill-3,
    .header-logo #Fill-4 {
        display: block;
    }
}

.header-logo svg {
    max-width: none;
}

@media (min-width: 46.25em) {
    .header-logo svg {
        max-width: 100%;
    }
}

@media (min-width: 46.25em) {
    .footer-meta-nav {
        margin-left: auto;
    }
}

.footer-meta-nav ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 33.75em) {
    .footer-meta-nav ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
    }
}

@media (min-width: 33.75em) {
    .footer-meta-nav ul>li {
        padding: 0 1.2rem;
    }
}

.footer-meta-nav a {
    color: var(--color-secondary);
    text-decoration: none;
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-meta-nav a:hover,
.footer-meta-nav a:focus {
    color: #42752d;
    text-decoration: underline;
}

.breadcrumb {
    font-size: 1.4rem;
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    color: var(--color-text);
    padding-bottom: 0.2rem;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb li:after {
    content: "|";
    display: inline-block;
    vertical-align: top;
    padding-right: 3px;
    padding-left: 5px;
}

.breadcrumb li.active:last-child:after {
    display: none;
}

.breadcrumb div {
    display: inline;
    font-weight: 700;
}

.breadcrumb div::after {
    content: ": ";
    display: inline;
}

.breadcrumb a {
    color: var(--color-text);
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: var(--color-text);
    text-decoration: underline;
}

.breadcrumb li.active:last-child {
    /* color:var(--color-primary); */
    font-weight: bold;
}

.strength_field {
    background-color: var(--color-white);
}

.strength_field+p {
    font-size: 1.3rem;
}

.strength_block {
    height: 5px;
    margin-bottom: 1.2rem;
}

.strength_block.strength_no {
    background-color: #cc2626;
}

.strength_block.strength_weak {
    background-color: orange;
}

.strength_block.strength_ok {
    background-color: #e8e100;
}

.strength_good {
    background-color: #52b42c;
}

.tx-srfeuserregister-pi1-captcha-response {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tx-srfeuserregister-pi1-captcha-response img,
.tx-srfeuserregister-pi1-captcha-response input {
    margin-bottom: 2rem;
}

.rezertifizierung {
    margin-bottom: 3.5rem;
    width: 100%;
}

.rezertifizierung th {
    width: auto !important;
    padding-top: 0;
    font-size: 1.6rem;
}

.rezertifizierung .submit-button,
.rezertifizierung .submit-button-disabled {
    float: right;
    max-width: 114px;
}

.rezertifizierung__overview tr,
.rezertifizierung__head tr {
    border: 0;
}

.rezertifizierung__overview td,
.rezertifizierung__head td {
    padding: 2rem;
    vertical-align: top;
}

.rezertifizierung__overview td:nth-of-type(1) {
    padding: 0rem;
    width: 24px !important;
}

.listung_kfw_head td:nth-of-type(1) {
    padding: 0.2rem;
    width: 24px !important;
}


.rezertifizierung__overview .submit-button,
.rezertifizierung__head .submit-button {
    padding: 8px 10px;
    background: var(--color-secondary);
    text-align: center;
}

.rezertifizierung__overview .submit-button:hover,
.rezertifizierung__overview .submit-button:focus,
.rezertifizierung__head .submit-button:hover,
.rezertifizierung__head .submit-button:focus {
    background: #42752d;
}

.rezertifizierung__overview .submit-button a,
.rezertifizierung__head .submit-button a {
    color: var(--color-white);
    text-decoration: none;
}

.rezertifizierung__overview .submit-button a:hover,
.rezertifizierung__overview .submit-button a:focus,
.rezertifizierung__head .submit-button a:hover,
.rezertifizierung__head .submit-button a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.rezertifizierung__overview .submit-button-disabled,
.rezertifizierung__head .submit-button-disabled {
    color: var(--color-white);
    padding: 8px 10px;
    background: #f2f2f2;
    text-align: center;
}

.rezertifizierung__detail .table_header td {
    border: 0;
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.rezertifizierung__detail .table_header td:nth-of-type(2) {
    background-color: #42752d;
}

.rezertifizierung__detail .table_header td:nth-of-type(3) {
    background-color: #888;
}

.rezertifizierung__detail tr {
    border-bottom: 1px solid #aaaaaa;
    border-top: 0;
}

.rezertifizierung__detail td {
    padding: 0;
    padding-bottom: 2rem !important;
    padding-top: 2rem !important;
    line-height: 1.2;
    vertical-align: middle;
}

.rezertifizierung__detail td:first-of-type {
    border-left: none;
    padding-left: none;
}

.rezertifizierung__detail td:last-of-type {
    padding-right: 0;
}

.rezertifizierung__detail table {
    table-layout: fixed;
}

.rezertifizierung__detail th table tr {
    border: 0;
}

.rezertifizierung__detail th table th {
    border: none;
    width: 110px;
    padding: 0;
    word-wrap: break-word;
    white-space: normal !important;
}

.rezertifizierung__detail th table th:nth-of-type(2) {
    text-align: center;
    width: 50px;
}

.rezertifizierung__detail.listung_ezm td,
.rezertifizierung__detail.listung_ezm th,
.rezertifizierung__detail.listung_programm td,
.rezertifizierung__detail.listung_programm th {
    white-space: nowrap;
}

.rezertifizierung__detail .green {
    color: var(--color-secondary);
    text-align: center;
}

.rezertifizierung__detail .red {
    color: #cc2626;
    text-align: center;
}

.legend__note {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #3398D8;
    font-weight: bold;
    color: var(--color-white)FFF;
    padding: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(51, 51, 51, 0.5);
}

.legend__note.active {
    opacity: 1;
}


.f-field-description {
    font-size: 1.2rem;
    margin-bottom: 0;
}

@media (min-width: 46.25em) {
    .f-field-description {
        font-size: 1.3rem;
    }
}

.c-column--small>.f-field-description {
    display: none;
}

@media (min-width: 46.25em) {
    .c-column--small>.f-field-description {
        display: block;
    }
}

@media (min-width: 46.25em) {
    .c-column--large .f-field-description {
        display: none;
    }
}

.joker-codes .f-field-description {
    display: none;
}

.listung_foerderprogramme {
    margin-bottom: 2rem;
}

.listung_foerderprogramme tr {
    border: 0;
    border-bottom: 1px solid #aaaaaa;
}

.listung_foerderprogramme tr th {
    width: auto !important;
    padding-top: 0;
}

.listung_foerderprogramme td {
    padding: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    vertical-align: top;
}

.listung_foerderprogramme td:nth-of-type(1) {
    padding-top: 1.4rem;
    padding-bottom: 1.6rem;
    width: 24px !important;
}

.listung_foerderprogramme td:last-of-type {
    padding: 1.2rem 0;
}

.listung_foerderprogramme .program-indent {
    padding-left: 1rem;
}

.listung_foerderprogramme+.legend tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.listung_foerderprogramme+.legend tr {
    border: 0;
    display: inline;
    margin-right: 20px;
    min-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.listung_foerderprogramme+.legend tr:last-child {
    margin-right: 0;
}

.listung_foerderprogramme+.legend tr img {
    margin-right: 5px;
}

.listung_foerderprogramme+.legend td:nth-of-type(1) {
    padding: 0rem;
    width: 24px !important;
}

.listung_foerderprogramme+.legend tr td {
    padding-top: 0;
}

.listung_foerderprogramme .submit-button {
    padding: 8px 10px;
    background: var(--color-secondary);
    text-align: center;
}

.listung_foerderprogramme .submit-button:hover,
.listung_foerderprogramme .submit-button:focus {
    background: #42752d;
}

.listung_foerderprogramme .submit-button a {
    color: var(--color-white);
    text-decoration: none;
}

.listung_foerderprogramme .submit-button a:hover,
.listung_foerderprogramme .submit-button a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.listung_foerderprogramme .submit-button-disabled {
    color: var(--color-white);
    padding: 8px 10px;
    background: #f2f2f2;
    text-align: center;
}

.overview_fortbildungen {
    border-top: 1px solid #aaaaaa;
    table-layout: fixed;
    margin-bottom: 0px;
}

.overview_fortbildungen tr {
    border: none;
}

.overview_fortbildungen th {
    background-color: #e1e1e1;
    font-weight: normal;
    padding: 0.35em 0.55em 0.45em 0.9em;
    border: 1px solid #aaaaaa;
}

.overview_fortbildungen th:first-of-type {
    border-left: none;
    padding-left: 0.5em;
}

.overview_fortbildungen th:last-of-type {
    border-right: none;
}

.overview_fortbildungen td {
    border: 1px solid #aaaaaa;
    padding: 0.4em 0.55em 0.55em 0.9em;
    line-height: 1.6;
    vertical-align: middle;
}

.overview_fortbildungen td:first-of-type {
    border-left: none;
}

.overview_fortbildungen td:last-of-type {
    padding-right: 0;
    border-right: none;
}

.overview_fortbildungen tr:first-child td {
    padding-top: 0.55em;
}

.overview_fortbildungen tr:last-child th,
.overview_fortbildungen tr:last-child td {
    padding-bottom: 0.40em;
}

.overview_fortbildungen tr:last-child td {}

.overview_fortbildungen .fortbildungen_details>td {
    padding: 0px;
}

.overview_fortbildungen .toggle__control {
    border-bottom: none;
}

.overview_fortbildungen .toggle__control .toggle__icon:before {
    top: 18px;
}

.overview_fortbildungen .toggle__control.toggle--open .toggle__icon:before {
    top: 22px;
}

.overview_fortbildungen .toggle__control h4 {
    font-weight: normal;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
}

.overview_fortbildungen .toggle__target {
    padding-top: 1.2rem;
}

.overview_fortbildungen .toggle__target .rezertifizierung__description {
    margin-bottom: 6px;
}

.overview_fortbildungen .toggle__target table {
    table-layout: fixed;
    width: 100%;
}

.overview_fortbildungen .toggle__target th {
    padding-top: 20px;
    padding-left: 0em;
    font-weight: bold;
    background: none;
    border-left: none;
    border-right: none;
}

.overview_fortbildungen .toggle__target th:nth-child(2) {
    width: 146px !important;
}

.overview_fortbildungen .toggle__target th:nth-child(3) {
    width: 78px !important;
}

.overview_fortbildungen .toggle__target th:nth-child(4) {
    width: 65px !important;
}

.overview_fortbildungen .toggle__target td {
    border: none;
    padding: 0em 0.55em 0em 0em;
}

.overview_fortbildungen .toggle__target tr:nth-child(2) td {
    padding-top: 0.6em;
}

.overview_fortbildungen .toggle--open+.toggle__target,
.overview_fortbildungen .toggle--transition+.toggle__target {
    border-bottom: none;
}

.overview_fortbildungen .fortbildungen_divider {
    height: 59px;
}

.abgelehnt {
    position: relative;
    padding-left: 30px;
}

.abgelehnt:before {
    height: 20px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -22px;
    width: 20px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 0;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.angenommen {
    position: relative;
    padding-left: 30px;
}

.angenommen:before {
    height: 20px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -106px;
    width: 20px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 0;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.veraendert {
    position: relative;
    padding-left: 30px;
}

.veraendert:before {
    height: 20px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1477px;
    width: 20px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 0;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.fortbildungen_legend {
    table-layout: fixed;
}

.fortbildungen_legend tr {
    border: none;
}

.listung_fortbildungen td:last-child {
    text-align: center;
    padding: 0rem;
    width: 24px !important;
}

.listung_ezm_head tr {
    border: 0;
}

.listung_ezm_head td {
    padding: 2rem;
    vertical-align: middle;
}

.listung_ezm_head td:nth-of-type(1) {
    padding: 0rem;
    width: 24px !important;
}

.listung_ezm_head .submit-button {
    padding: 8px 10px;
    background: var(--color-secondary);
    text-align: center;
}

.listung_ezm_head .submit-button:hover,
.listung_ezm_head .submit-button:focus {
    background: #42752d;
}

.listung_ezm_head .submit-button a {
    color: var(--color-white);
    text-decoration: none;
}

.listung_ezm_head .submit-button a:hover,
.listung_ezm_head .submit-button a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.listung_ezm_head .submit-button-disabled {
    color: var(--color-white);
    padding: 8px 10px;
    background: #f2f2f2;
    text-align: center;
}

.listung_ezm td,
.listung_ezm th {
    white-space: nowrap;
}

.listung_ezm_pn label {
    line-height: 50px;
}

/* city_selector */
#city_selector {
    border: 1px solid #999;
    border-top: none;
    height: 106px;
    overflow: hidden;
    overflow-y: scroll !important;
    padding: 4px;
    display: none;
    position: absolute;
    z-index: 10;
    background: white;
    top: 73px;
    margin-right: 0px;
    width: 264px;
}

#city_selector a {
    display: block;
}

.tx-denacalendar #city_selector {
    top: 70px;
}

#ort_box {
    position: relative;
}

#city_spinner {
    position: absolute;
    right: 40px;
    top: 30px;
}

.expert-search .suche_0905_results_count {
    background: var(--color-secondary);
    color: var(--color-white);
    display: inline-block;
    padding: 3px 12px;
    margin-bottom: 20px;
}

@media (min-width: 33.75em) {
    .expert-search .suche_0905_results_count {
        position: absolute;
        top: 0px;
        right: 0px;
    }
}

.expert-search__form legend {
    font-size: 2rem;
    font-weight: 700;
}

.js .expert-search__partners,
.js .expert-search__advanced {
    height: 0;
    overflow: hidden;
}

.js .expert-search__partners.expert-search__partners--visible,
.js .expert-search__advanced.expert-search__advanced--visible {
    height: auto;
    overflow: visible;
}

.expert-search__partners .f-type-checkbox>label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.expert-search__partners .f-type-checkbox .f-label {
    margin-bottom: 10px;
    padding-top: 2px;
}

@media (min-width: 33.75em) {
    .expert-search__advanced .f-field--tiny {
        clear: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        float: left;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 50%;
    }
}

@media (min-width: 46.25em) {
    .expert-search__advanced .f-field--tiny {
        width: 33.333%;
    }
}

@media (min-width: 61.25em) {
    .expert-search__advanced .f-field--tiny {
        width: 25%;
    }
}


.expert-search__partners .f-field--tiny {
    width: 100%;
}


.expert-search__partners-toggle,
.expert-search__advanced-toggle {
    position: relative;
    padding-left: 22px;
}

.expert-search__partners-toggle:before,
.expert-search__advanced-toggle:before {
    height: 17px;
    /*
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -395px;
    */
    background-position: center center;
    background-image: url("../img/ext_arrow.png");
    width: 17px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 0;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.expert-search__partners-toggle:active,
.expert-search__partners-toggle:focus,
.expert-search__advanced-toggle:active,
.expert-search__advanced-toggle:focus {
    outline: 0;
}

.expert-search__partners-toggle::before,
.expert-search__advanced-toggle::before {
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
}

.expert-search__partners-toggle.expert-search__partners--visible,
.expert-search__advanced-toggle.expert-search__advanced--visible {
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
}

.expert-search__partners-toggle.expert-search__partners--visible:before,
.expert-search__advanced-toggle.expert-search__advanced--visible:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ui-accordion:not(.content-box)>h3,
.ui-accordion:not(.content-box) .ui-accordion-header {
    background: var(--color-white);
    border-bottom: 1px solid #9b9b9b;
    cursor: pointer;
    margin: 0;
    padding: 2rem;
    padding-left: 60px;
    position: relative;
    outline: 0;
}

.ui-accordion:not(.content-box)>h3.ui-accordion-header-active,
.ui-accordion:not(.content-box) .ui-accordion-header.ui-accordion-header-active {
    border-bottom: 0;
}

.ui-accordion:not(.content-box)>h3:first-of-type,
.ui-accordion:not(.content-box) .ui-accordion-header:first-of-type {
    border-top: 1px solid #9b9b9b;
}

.ui-accordion:not(.content-box)>h3 a,
.ui-accordion:not(.content-box) .ui-accordion-header a {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-text);
    text-decoration: none;
}

.ui-accordion:not(.content-box)>h3 a:hover,
.ui-accordion:not(.content-box)>h3 a:focus,
.ui-accordion:not(.content-box) .ui-accordion-header a:hover,
.ui-accordion:not(.content-box) .ui-accordion-header a:focus {
    color: inherit;
    text-decoration: underline;
}

.ui-accordion:not(.content-box)>div,
.ui-accordion:not(.content-box) .ui-accordion-content {
    position: relative;
    background: var(--color-white);
    padding: 0 2.8rem;
    padding-bottom: 2rem;
    padding-left: 80px;
}

.ui-accordion:not(.content-box)>div h1,
.ui-accordion:not(.content-box) .ui-accordion-content h1 {
    display: none;
}

.ui-accordion:not(.content-box)>div .frame::after,
.ui-accordion:not(.content-box) .ui-accordion-content .frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-light-grey);
    width: 40px;
    left: 0;
}

.ui-accordion:not(.content-box)>div p,
.ui-accordion:not(.content-box) .ui-accordion-content p {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.666;
}

.ui-accordion:not(.content-box)>div.ui-accordion-content-active,
.ui-accordion:not(.content-box) .ui-accordion-content.ui-accordion-content-active {
    border-bottom: 1px solid #9b9b9b;
}

.ui-accordion:not(.content-box) .ui-accordion-header-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-light-grey);
    width: 40px;
    left: 0;
}

.ui-accordion:not(.content-box) .ui-accordion-header-icon.ui-icon-triangle-1-e {
    position: absolute;

}

.ui-accordion:not(.content-box) .ui-accordion-header-icon.ui-icon-triangle-1-e:before {
    height: 15px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1944px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 24px;
}

.ui-accordion:not(.content-box) .ui-accordion-header-icon.ui-icon-triangle-1-s {
    position: absolute;
}

.ui-accordion:not(.content-box) .ui-accordion-header-icon.ui-icon-triangle-1-s:before {
    height: 5px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1939px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 32px;
}

.ui-accordion:not(.content-box) .ui-accordion {
    margin: 0 -40px;
}

.ui-accordion:not(.content-box) .ui-accordion .ui-accordion-header-icon {
    background: #f8f8f8 !important;
}

.ui-accordion:not(.content-box) .ui-accordion .ui-accordion-content .frame-default::after {
    background: #f8f8f8 !important;
}

.ui-accordion:not(.content-box).accordion--inside>.ui-accordion-content {
    padding-bottom: 0 !important;
}

.ui-accordion:not(.content-box).accordion--inside>.ui-accordion-content.accordion--inside .frame-default {
    padding-bottom: 0 !important;
}

.ui-accordion:not(.content-box).accordion--inside>.ui-accordion-content .ui-accordion h3:nth-last-child(2) {
    border-bottom: none;
}

.ui-accordion:not(.content-box).accordion--inside>.ui-accordion-content .ui-accordion div:nth-last-child(1) {
    border-bottom: none;
}

.frame-default {
    margin-bottom: 6.5rem;
}

.frame-default:last-child {
    margin-bottom: 0;
    padding-bottom: 6.5rem;
}

.frame-default .frame-default:last-child {
    margin-bottom: 0;
    padding-bottom: 2rem;
}

.frame-default ol {
    padding: 0 2rem;
}

.frame-default ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.frame-default ol li,
.frame-default ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.666;
}

.frame-default ul li:before {
    height: 17px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -395px;
    width: 12px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 6px;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.frame-default ul a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: inherit;
}

.frame-default ul a:hover,
.frame-default ul a:focus {
    color: var(--color-secondary);
    text-decoration: underline;
}

.frame-default ul li {
    margin-bottom: 1.2rem;
}

.frame-default .f-files {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.frame-default.frame-layout-1 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.frame-default.frame-layout-2 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.frame-default header {
    margin-bottom: 0rem;
}

.csc-bulletlist {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.csc-bulletlist li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.csc-bulletlist li:before {
    height: 17px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -395px;
    width: 12px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 6px;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.csc-bulletlist a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: inherit;
}

.csc-bulletlist a:hover,
.csc-bulletlist a:focus {
    color: var(--color-secondary);
    text-decoration: underline;
}

.csc-call {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-secondary);
}

.frame-ruler-before::before {
    margin-bottom: 0;
}

.csc-textpic-right .ce-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 0.5rem;
}

.csc-textpic-center .ce-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.csc-textpic-below .ce-gallery {
    margin-top: 2rem;
}

.csc-textpic-above .ce-gallery {
    margin-bottom: 2rem;
}

.csc-textpic-intext-right .ce-gallery {
    float: right;
    margin-left: 1.2rem;
}

.csc-textpic-intext-left .ce-gallery {
    float: left;
    margin-right: 2rem;
}

.csc-textpic-intext-right-nowrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 33.75em) {
    .csc-textpic-intext-right-nowrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.csc-textpic-intext-right-nowrap .ce-gallery {
    margin-top: 2rem;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

@media (min-width: 33.75em) {
    .csc-textpic-intext-right-nowrap .ce-gallery {
        margin-top: 0;
        margin-left: 2rem;
    }
}

.csc-textpic-intext-right-nowrap .csc-textpic-text {
    width: auto;
    margin-right: 0;
}

.csc-textpic-intext-left-nowrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 33.75em) {
    .csc-textpic-intext-left-nowrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.csc-textpic-intext-left-nowrap .ce-gallery {
    margin-top: 2rem;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

@media (min-width: 33.75em) {
    .csc-textpic-intext-left-nowrap .ce-gallery {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-top: 0;
        margin-right: 2rem;
    }
}

.csc-textpic-intext-left-nowrap .csc-textpic-text {
    width: auto;
    margin-left: 0;
}

#calendar>ƒselediv:first-of-type {
    border-top: 1px solid #9b9b9b;
}


#calendar .cal_title {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    font-weight: 700;
}

#calendar .cal_title_date {
    font-size: 1.3rem;
}

#calendar .cal_info {
    display: none;
    position: relative;
    background: var(--color-white);
    padding: 0 2.8rem;
    padding-bottom: 2rem;
    padding-left: 60px;
}

#calendar .cal_info::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-light-grey);
    width: 40px;
    left: 0;
}

#calendar .cal_info>strong {
    display: block;
}

#calendar .cal_info dl {
    margin-top: 2rem;
}

#calendar .cal_info dt {
    float: left;
    clear: left;
    margin-right: 1.2rem;
    margin-top: 0;
}

#calendar .cal_info dd {
    float: left;
}

#calendar .cal_item {
    border-bottom: 1px solid #9b9b9b;
}

#calendar .cal_item dl {
    overflow: hidden;
}

#calendar .cal_title_bar {
    background: var(--color-white);
    cursor: pointer;
    margin: 0;
    padding: 2rem;
    padding-left: 60px;
    position: relative;
    outline: 0;
}

#calendar .collapse {
    position: absolute;
    top: 0;
    bottom: 0;
    background: -webkit-linear-gradient(top, #fcfcfc, var(--color-white));
    background: linear-gradient(to bottom, #fcfcfc, var(--color-white));
    width: 40px;
    left: 0;
}

#calendar .collapse_text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#calendar .ui-accordion-header-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-light-grey);
    width: 40px;
    left: 0;
}

#calendar .ui-accordion-header-icon.ui-icon-triangle-1-e {
    position: absolute;
}

#calendar .ui-accordion-header-icon.ui-icon-triangle-1-e:before {
    height: 15px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1944px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 24px;
}

.cal_open #calendar .ui-accordion-header-icon.ui-icon-triangle-1-e {
    position: absolute;
}

.cal_open #calendar .ui-accordion-header-icon.ui-icon-triangle-1-e:before {
    height: 5px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1939px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 32px;
}

#calendar .cal_open .ui-icon-triangle-1-e {
    position: absolute;
}

#calendar .cal_open .ui-icon-triangle-1-e:before {
    height: 5px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1939px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 32px;
}

.ibutton__icon {
    position: relative;
    padding-left: 32px;
    display: inline-block;
    height: 22px;
    line-height: 1;
    margin: 0;
    margin-top: 0.8rem;
    padding: 0;
    position: absolute;
    right: -4px;
    top: 0;
    -webkit-transform: translatex(100%);
    transform: translatex(100%);
    width: 22px;
}

span.header-with-ibutton .ibutton__icon {
    margin-top: 0px;
}

span.header-with-ibutton {
    display: inline-block;
    position: relative;
}

.tx-denacalendar .f-field-group .ibutton__icon {
    right: 60px;
}

.ibutton__icon:before {
    height: 22px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1917px;
    width: 22px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 0;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.f-type-radio .ibutton__icon,
.f-type-checkbox .ibutton__icon {
    margin-top: 0;
}

.ibutton__icon:focus {
    outline: 0;
}

.ibutton__content {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ibutton__content.visible {
    clip: auto;
    height: auto;
    margin: auto;
    overflow: visible;
    position: static;
    width: auto;
    background: var(--color-white);
    border: 1px solid #dcdcdc;
    box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 30px;
    position: absolute;
    text-align: left;
    z-index: 42;
    width: calc(100% - 35px);
}

@media (min-width: 33.75em) {
    .ibutton__content.visible {
        position: absolute;
        width: calc(100% - (17.5px / 2));
        width: calc(100% - 35px);
    }
}

@media (min-width: 33.75em) {
    .f-field-group .ibutton__content.visible {
        bottom: -2rem;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.c-column--large .ibutton__content.visible {
    width: calc(100% - 35px);
}

@media (min-width: 46.25em) {
    .c-column--large .ibutton__content.visible {
        width: calc(100% - 17.5px - 35px);
    }
}

@media (min-width: 46.25em) {
    .c-column--large--push .f-field-group .ibutton__content.visible {
        width: calc(100% - 35px);
    }
}

.tooltips {
    display: none;
}

.homepage-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-link {
    color: var(--color-white);
    text-decoration: none;
    background: var(--color-secondary);
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    min-width: 110px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.news-link:hover,
.news-link:focus {
    color: var(--color-white);
    text-decoration: underline;
}

#aktuelles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#aktuelles>strong {
    background: var(--color-primary);
    color: var(--color-white);
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    min-width: 110px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: .4px;
}

#aktuelles>strong a {
    color: var(--color-white);
    text-decoration: none;
}

#aktuelles>strong a:hover,
#aktuelles>strong a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-130%, 0, 0);
        transform: translate3d(-130%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-130%, 0, 0);
        transform: translate3d(-130%, 0, 0);
    }
}

.ticker-wrap {
    overflow: hidden;
    height: 5rem;
    background-color: var(--color-white);
    padding-left: 100%;
    margin-left: -110px;
    box-shadow: 0px 0px 12px rgba(100, 100, 100, 0.2);
    z-index: 1;
}

.ticker {
    display: inline-block;
    height: 5rem;
    line-height: 5rem;
    white-space: nowrap;
    padding-right: 100%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    color: white;
    border-right: 3px solid var(--color-secondary);
}

.ticker a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.6rem;
}

.ticker a:hover,
.ticker a:focus {
    color: var(--color-text);
    text-decoration: underline;
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-170%, 0, 0);
        transform: translate3d(-170%, 0, 0);
    }
}

#aktuelles_box {
    overflow: hidden;
    height: 5rem;
    background-color: #e5e5e5;
    padding-left: 100%;
    margin-left: -110px;
    box-shadow: 0px 0px 12px rgba(100, 100, 100, 0.2);
    z-index: 1;
}

#aktuelles_box ul {
    display: inline-block;
    height: 5rem;
    line-height: 5rem;
    white-space: nowrap;
    padding-right: 100%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
}

#aktuelles_box ul li {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    color: white;
    border-right: 3px solid var(--color-primary);
    color: var(--color-text);
    font-size: 1.6rem;
}

#aktuelles_box ul a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.6rem;
}

#aktuelles_box ul a:hover,
#aktuelles_box ul a:focus {
    color: var(--color-text);
    text-decoration: underline;
}

.document-section--network-partner {
    padding: 0;
}

.document-section--network-partner .l-container {
    background: #f2f2f2;
    padding: 4.8rem 0;
}

.document-section--network-partner .network-partner .frame-default {
    margin-bottom: 3.5rem;
    padding-bottom: 0;
}

.document-section--expertenbereich {
    padding: 0;
    background: #f2f2f2;
}

.document-section--expertenbereich .l-container {
    background-image: url("../img/bg_box_experts.png");
    background-repeat: no-repeat;
    background-position: center center;


    padding: 4.8rem 0;
    padding-bottom: 1.5rem;
}

.document-section--expertenbereich .expertenbereich-icon {
    text-align: center;
}


.expertendb_single.netzwerkpartner .header {
    display: block;
}

.expertendb_single.netzwerkpartner .header .header-text {
    float: none;
}

.expertendb_single.netzwerkpartner .header .experten_info {
    padding: 2rem;
}

.expertendb_single.netzwerkpartner .header .expertendb_single_box>p {
    padding: 2rem;
}

.expertendb_single.netzwerkpartner .header .expertendb_single_box>form {
    padding: 0 2rem;
}

.expertendb_single.netzwerkpartner .header .expertendb_single_box .files--complex {
    margin-bottom: 2rem;
}

.header-checks {
    background: var(--color-white);
    padding: 4.8rem 2rem;
}

.header-checks .frame-default,
.header-checks header,
.header-checks h5 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.header-checks .frame-default {
    margin-bottom: 1.2rem;
}

.header-checks .frame-default:last-child {
    margin-bottom: 0;
}

.header-checks .frame-default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.header-checks .frame-default::before {
    height: 33px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1833px;
    width: 35px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.header-checks .frame-default h5 {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.666;
}

.header-checks .frame-default::before {
    min-width: 40px;
    position: relative;
    top: -3px;
}

.header-checks .frame-space-after-medium {
    margin-bottom: 5rem;
}

.document-section--stage,
.document-section--nav,
.document-section--news {
    padding: 0;
}

.document-section--content-slider {
    padding-top: 0;
    padding-bottom: 0;
}

.document-section--content-slider .l-container {
    background: var(--color-white);
    padding: 4.8rem 0;
}

.document-section--news .l-column,
.document-section--stage .l-column {
    padding-left: 0;
    padding-right: 0;
}

.document-section--hub {
    padding: 0;
}

@media (min-width: 46.25em) {
    .document-section--hub .l-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.document-section--hub .l-column {
    padding: 0;
}

.infobox {
    height: 100%;
}

.infobox__main {
    color: var(--color-white);
    padding: 4.8rem 30px;
    text-align: center;
    height: calc(100% - 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* .infobox__main h3 {
    font-size: 1.9rem;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    letter-spacing: 1px;
    font-weight: 400;
} */

.infobox__main a {
    color: inherit;
    text-decoration: none;
    background: var(--color-white);
    border-radius: 5px;
    padding: 1.2rem 2rem;
}

.infobox__main a:hover,
.infobox__main a:focus {
    color: inherit;
    text-decoration: underline;
}

.left .infobox__main {
    background: var(--color-primary);
}

.left .infobox__main h3 {
    position: relative;
}

.left .infobox__main h3:before {
    height: 44px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1959px;
    width: 44px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.left .infobox__main h3::before {
    position: relative;
    margin-bottom: 2rem;
}

.left .infobox__main a {
    color: var(--color-primary);
}

.right .infobox__main {
    background: #42752d;
}

.right .infobox__main h3 {
    position: relative;
}

.right .infobox__main h3:before {
    height: 44px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1767px;
    width: 45px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.right .infobox__main h3::before {
    position: relative;
    margin-bottom: 2rem;
}

.right .infobox__main a {
    color: #42752d;
}

.infobox__footer {
    padding: 0 15px;
}

.left .infobox__footer {
    background: #33B5DD;
}

.right .infobox__footer {
    background: #689157;
}

.infobox__footer .frame-default {
    margin: 0;
    padding: 0;
}

.infobox__footer a {
    color: var(--color-white);
    text-decoration: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80px;
    padding: 2rem;
    padding-left: 3rem;
}

.infobox__footer a:hover,
.infobox__footer a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.infobox__footer p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.infobox__footer p a {
    position: relative;
    padding-left: 33px;
    padding-left: 40px;
    padding-right: 0;
}

.infobox__footer p a:before {
    height: 17px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1678px;
    width: 23px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 0;
    -webkit-transform: rotate(16px) scale(before);
    transform: rotate(16px) scale(before);
}

.teaser-list {
    margin-left: -2rem;
    margin-right: -2rem;
}

.teaser-list::after {
    content: " ";
    /* 1 */
    display: block;
    clear: both;
}

.teaser-list.slick-initialized .frame-default,
.teaser-list--medium.slick-initialized .frame-default {
    margin-bottom: 0;
    padding-bottom: 0;
}


.document-content__content .teaser-list--medium {
    margin-bottom: 3rem;
}

.teaser-list--medium:not(.slick-initialized) .frame-default {
    min-height: 1px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 33.75em) {
    .teaser-list--medium:not(.slick-initialized) .frame-default {
        float: left;
        width: 50%;
    }
}

.teaser-list--medium:not(.slick-initialized) .frame-default:nth-child(2n + 1) {
    clear: left;
}

.teaser-list--tiny:not(.slick-initialized) .frame-default {
    min-height: 1px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 33.75em) {
    .teaser-list--tiny:not(.slick-initialized) .frame-default {
        float: left;
        width: 50%;
    }

    .teaser-list--tiny:not(.slick-initialized) .frame-default:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--tiny:not(.slick-initialized) .frame-default {
        width: 33.333%;
    }

    .teaser-list--tiny:not(.slick-initialized) .frame-default:nth-child(2n + 1) {
        clear: none;
    }

    .teaser-list--tiny:not(.slick-initialized) .frame-default:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 61.25em) {
    .teaser-list--tiny:not(.slick-initialized) .frame-default {
        width: 25%;
    }

    .teaser-list--tiny:not(.slick-initialized) .frame-default:nth-child(2n + 1) {
        clear: none;
    }

    .teaser-list--tiny:not(.slick-initialized) .frame-default:nth-child(3n + 1) {
        clear: none;
    }

    .teaser-list--tiny:not(.slick-initialized) .frame-default:nth-child(4n + 1) {
        clear: left;
    }
}

.teaser-list--small:not(.slick-initialized) .frame-default {
    min-height: 1px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 33.75em) {
    .teaser-list--small:not(.slick-initialized) .frame-default {
        float: left;
        width: 50%;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--small:not(.slick-initialized) .frame-default {
        width: 33.333%;
    }
}

@media (min-width: 33.75em) {
    .teaser-list--small:not(.slick-initialized) .frame-default:nth-child(2n + 1) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--small:not(.slick-initialized) .frame-default:nth-child(2n + 1) {
        clear: none;
    }
}

@media (min-width: 46.25em) {
    .teaser-list--small:not(.slick-initialized) .frame-default:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 46.25em) {

    .l-column--small .teaser-list--small:not(.slick-initialized) .frame-default,
    .l-column--small .teaser-list--small:not(.slick-initialized) .frame-default:nth-child(2n + 1),
    .l-column--small .teaser-list--small:not(.slick-initialized) .frame-default:nth-child(3n + 1) {
        clear: none;
        float: none;
        width: auto;
    }
}

[name="tx_wilgebaeudedb_projekt_suche_form"] .f-type-checkbox label {
    display: block;
    margin-bottom: 10px;
}

@media (min-width: 46.25em) {
    [name="tx_wilgebaeudedb_projekt_suche_form"] .f-type-checkbox label {
        display: inline-block;
        margin-right: 0;
    }
}


.expert-search__partners .f-type-checkbox label {
    width: auto !important;
}

[name="tx_wilgebaeudedb_projekt_suche_form"] .f-button-container {
    margin-top: 2rem;
}

.suche_ergebnis .csc-firstHeader {
    margin-bottom: 2rem;
    padding-bottom: 0;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    font-size: 2.8rem;
}

.result_count {
    margin-bottom: 2rem;
}

.result_header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 4.8rem;
}

.result_header.result_header--bottom {
    display: block;
}

.result_header.result_header--bottom .button_link {
    margin-right: 0;
}

.result_header .button_link {
    margin-left: auto;
    margin-right: 2.8rem;
}

.result_header .browser {
    margin-right: 2rem;
}

.result_header .browser span:not(.ellipse),
.result_header .browser a:not(.browse_link) {
    padding: 4px 10px;
    line-height: 1;
}

.result_header .browser span:not(.ellipse) {
    background: var(--color-secondary);
    color: var(--color-white);
}

.result_header .browser .ellipse {
    color: var(--color-secondary);
}

.result_header .browser a {
    color: var(--color-secondary);
    text-decoration: none;
}

.result_header .browser a:hover,
.result_header .browser a:focus {
    color: var(--color-white);
    text-decoration: none;
}

.result_header .browser a:not(.browse_link):hover {
    background: var(--color-secondary);
}

.result_header .browser a.browse_link {
    color: var(--color-secondary);
    text-decoration: none;
}

.result_header .browser a.browse_link:hover,
.result_header .browser a.browse_link:focus {
    color: var(--color-secondary);
    text-decoration: none;
}

.result_header .sorting .f-container select {
    margin: 0;
}

.result_header #print_bar {
    float: right;
    margin-top: 2rem;
}

.result_header #print_bar .button {
    background: url("../../pix/eee/expertenprofil-02.png") right -552px no-repeat;
    border: 0;
    color: var(--color-secondary);
    cursor: pointer;
    font-size: 1.6rem;
    padding: 0;
    text-align: right;
}

#result_header_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.expertendb_single {
    margin-bottom: 4.8rem;
}

.expertendb_single .header {
    color: var(--color-white);
    padding: 25px;
    background: var(--color-primary);
    overflow: hidden;
}


.expertendb_single.expertendb_single--eee .header {
    color: var(--color-white);
    background: var(--color-primary);
}

.expertendb_single.expertendb_single--fkh .header {
    color: var(--color-text);
    background: var(--color-light-gray);
}

.expertendb_single.expertendb_single--eee .badge--fkh {
    color: var(--color-text);
    background: #AAA;
}

.expertendb_single.expertendb_single--fkh .badge--fkh {
    color: var(--color-text);
    background: var(--color-white);
}

.expertendb_single.expertendb_single-fkh .header {
    background: var(--color-light-grey);
    color: var(--color-headline);
}

.expertendb_single .header-text {
    font-size: 1.9rem;
    float: left;
}


.expertendb_single .telefon,
.expertendb_single .email,
.expertendb_single .www {
    font-size: 1.8rem;
}

.expertendb_single .header a,
.expertendb_single .header a:hover,
.expertendb_single .header a:focus {
    color: var(--color-white);
}

.expertendb_single .wbg_note {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 2rem;
}


@media (min-width: 61.25em) {
    .expertendb_single .header-small {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 1.5rem;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
    }

    .expertendb_single .header-small a {
        color: var(--color-white);
        text-decoration: none;
    }

    .expertendb_single .header-small a:hover,
    .expertendb_single .header-small a:focus {
        color: inherit;
        text-decoration: underline;
    }

    .expertendb_single .header-small>* {
        padding: 0 1.2rem;
    }
}

.expertendb_single .experten_info {
    font-size: 1.3rem;
    padding: 0.5rem 2rem;
    background: #f2f2f2;
    border-bottom: 1px solid #9b9b9b;
}

@media (min-width: 46.25em) {
    .expertendb_single .experten_info .c-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 61.25em) {
    .expertendb_single .experten_info .contact-info {
        display: none;
    }
}

.expertendb_single .experten_info p {
    margin: 0;
}

.expertendb_single .experten_info .adresse,
.expertendb_single .experten_info .ausbildung {
    padding: 1.2rem 0;
}

.expertendb_single .experten_info .contact-info {
    margin-bottom: 1.2rem;
}

.expertendb_single .fp_body dt img {
    max-height: 20px;
    max-width: 20px;
}

.expertendb_single .fp_body .c-column--small {
    margin-bottom: 2rem;
}

.expertendb_single .fp_header_big {
    font-size: 2rem;
}

.expertendb_single .fp_header_small,
.expertendb_single h5 {
    font-size: 1.6rem;
}

.expertendb_single h6 {
    font-size: 1.4rem;
}

.expertendb_single dd,
.expertendb_single dt {
    margin: 0;
}

.expertendb_single dt {
    margin-right: 0.5rem;
}

.expertendb_single .foerderprogramme {
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.expertendb_single .foerderprogramme dd,
.expertendb_single .foerderprogramme dt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.expertendb_single .fkh_sub {
    font-size: 1.3rem;
    overflow: hidden;
    padding-left: 2.6rem;
    margin-bottom: 2rem;
}

.expertendb_single .einzelmassnahmen {
    font-size: 1.3rem;
    overflow: hidden;
    padding-left: 2.6rem;
    margin-bottom: 2rem;
}

.expertendb_single .einzelmassnahmen dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.2rem;
}

.expertendb_single .netzwerkpartner {
    background: white;
}

.expertendb_single .netzwerk_images {
    padding: 2rem;
    padding-left: 60px;
}

.expertendb_single .netzwerke_logos .expertendb_single .expertendb_details {
    background: var(--color-white);
    display: none;
}

.expertendb_single .expertendb_details dl>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.expertendb_single .expertendb_details dl>div dd {
    margin-top: 0.7rem;
}

.expertendb_single .expertendb_details dl>div dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.expertendb_single .expertendb_details dd,
.expertendb_single .expertendb_details dt {
    display: inline-block;
}

.expertendb_single .expertendb_details dd {
    font-size: 1.3rem;
}

.expertendb_single .expertendb_details dt img {
    max-height: 21px;
}

@media (min-width: 46.25em) {
    .expertendb_single .technologie div {
        width: 50%;
        float: left;
    }
}

.toolbar {
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

.toolbar a {
    color: var(--color-white);
    text-decoration: none;
}

.toolbar a:hover,
.toolbar a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.toolbar__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.5rem 30px;
    background: #333;
}

.f-field--floating-label label {
    background: rgba(255, 255, 255, 0);
    bottom: auto;
    cursor: text;
    font-size: 1.6rem;
    font-weight: 400;
    height: 1em;
    left: 1.2rem;
    line-height: 1em;
    margin: auto 0;
    padding: 1px 3px;
    position: absolute;
    top: 2rem;
    -webkit-transition: all 0.1s 0s ease-out;
    transition: all 0.1s 0s ease-out;
    z-index: 1;
}

.f-field--floating-label.f-field--has-focus label,
.f-field--floating-label.f-field--has-value label {
    background: white;
    font-size: 1.3rem;
    -webkit-transform: translateY(-2.3rem);
    transform: translateY(-2.3rem);
}

.toggle__control {
    border-bottom: 1px solid #9b9b9b;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    position: relative;
}

.toggle__control.toggle--open,
.toggle__control.toggle--transition {
    border-bottom: 0;
}

.toggle__control h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0;
    padding: 2rem;
    padding-left: 60px;
}

.toggle__control--border-top {
    border-top: 1px solid #9b9b9b;
}

.toggle__icon {
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color-light-grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    width: 40px;
}

.toggle__icon:before {
    height: 15px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1944px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 24px;
}

.toggle--open .toggle__icon {
    position: absolute;
}

.toggle--open .toggle__icon:before {
    height: 5px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1939px;
    width: 15px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 32px;
}

.toggle__target {
    background: var(--color-white);
    display: none;
    padding: 2.8rem 2rem;
    padding-left: 60px;
    position: relative;
}

.toggle__target::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-light-grey);
    width: 40px;
    left: 0;
}

.toggle--open+.toggle__target,
.toggle--transition+.toggle__target {
    border-bottom: 1px solid #9b9b9b;
}

#feuser_hasBillAddress .toggle__control {
    border-top: 1px solid #9b9b9b;
}

.button_link {
    display: inline-block;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.7rem 2rem;
    background: var(--color-secondary);
    color: var(--color-white);
}

.button_link:hover,
.button_link:focus {
    color: var(--color-white);
    text-decoration: none;
}

.button_link:hover,
.button_link:focus {
    background: #42752d;
}

.profile-tabs {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 4.8rem;
}

.profile-tabs li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.profile-tabs li a {
    color: var(--color-text);
    text-decoration: none;
    background: var(--color-light-grey);
    display: block;
    padding: 1.2rem 0;
    position: relative;
}

.profile-tabs li a:hover,
.profile-tabs li a:focus {
    color: var(--color-text);
    text-decoration: underline;
}

.profile-tabs li a:hover,
.profile-tabs li a:focus {
    background: var(--color-primary);
    color: var(--color-white);
}

.profile-tabs li a:hover::after,
.profile-tabs li a:focus::after {
    border-bottom: 25px solid transparent;
    border-left: 15px solid var(--color-primary);
    border-top: 25px solid transparent;
}

.profile-tabs li a::before,
.profile-tabs li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    width: 0;
    height: 0;
    top: 0;
    z-index: 1;
}

.profile-tabs li a::before {
    border-bottom: 28px solid transparent;
    border-left: 18px solid var(--color-white);
    border-top: 28px solid transparent;
    top: -3px;
}

.profile-tabs li a::after {
    border-bottom: 25px solid transparent;
    border-left: 15px solid var(--color-light-grey);
    border-top: 25px solid transparent;
}

.profile-tabs li.active a {
    background: var(--color-primary);
    color: var(--color-white);
}

.profile-tabs li.active a::after {
    border-bottom: 25px solid transparent;
    border-left: 15px solid var(--color-primary);
    border-top: 25px solid transparent;
}

.profile-tabs li:last-child a::after,
.profile-tabs li:last-child a::before {
    content: none;
}

.profile-tabs~h1,
.profile-tabs~.m-tab__headline {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #9b9b9b;
    font-size: 2.4rem;
    margin-bottom: 0;
    margin-top: 4.8rem;
}

.missing_nachweise {
    color: #cc2626;
    list-style-type: decimal;
}

.homepage-stage .ce-gallery,
.homepage-stage .image {
    margin-bottom: 0 !important;
}

.legende ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
}

.legende ul>li {
    padding: 0 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.legende ul>li img {
    margin-right: 0.5rem;
}

.section-gewerkesuche p.bold {
    margin-bottom: 4rem;
}

.section-gewerkesuche .content__title {
    border-bottom: 1px solid #aaaaaa;
    margin-bottom: 4.8rem;
}

.section-gewerkesuche .content__title h3 {
    margin-bottom: 1rem;
}

.gewerkesuche .f-button-container {
    top: 3.2rem;
    position: relative;
    margin-bottom: 0;
}

#jfmulticontent_gewerkesuche {
    margin-bottom: 3.5rem;
}

#jfmulticontent_gewerkesuche.open h3:not(.ui-accordion-header-active) a.waermedaemmung:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1579px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche.open h3:not(.ui-accordion-header-active) a.fenster:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -798px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche.open h3:not(.ui-accordion-header-active) a.heizung:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -962px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche.open h3:not(.ui-accordion-header-active) a.lueftung:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1126px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche h3 {
    padding: 0;
    padding-left: 5rem;
}

#jfmulticontent_gewerkesuche h3 .ui-icon::before {
    top: 30px;
}

#jfmulticontent_gewerkesuche h3 a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

#jfmulticontent_gewerkesuche h3 a:hover,
#jfmulticontent_gewerkesuche h3 a:focus {
    color: inherit;
    text-decoration: none;
}

#jfmulticontent_gewerkesuche h3 a::before {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

#jfmulticontent_gewerkesuche h3 a.waermedaemmung:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1497px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche h3 a.fenster:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -716px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche h3 a.heizung:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -880px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche h3 a.lueftung:before {
    height: 82px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1044px;
    width: 82px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#jfmulticontent_gewerkesuche .ui-accordion-content {
    padding-left: 72px;
}

#jfmulticontent_gewerkesuche .ui-accordion-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-light-grey);
    width: 40px;
    left: 0;
}

.table-complex thead tr:first-child {
    border-top: 1px solid #9b9b9b;
}

.table-complex tbody tr {
    border-bottom: 1px solid #9b9b9b;
}

.table-complex th {
    border-right: 1px solid #9b9b9b;
    font-weight: 400;
    line-height: 1.2;
    padding: 1rem 2rem !important;
    text-align: center;
    vertical-align: middle;
    white-space: normal;
}

.table-complex th:last-child {
    border-right: 0;
}

.table-complex th.highlighted {
    background: #e0e0e0;
}

.table-complex th.noborder {
    border: 0;
}

.table-complex th.constrained-right {
    padding-right: 4rem !important;
    position: relative;
}

.table-complex th.constrained-right::after {
    content: "oder";
    font-weight: bold;
    position: absolute;
    right: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.table-complex th.constrained-left {
    padding-left: 4rem !important;
}

.table-complex td {
    border-right: 1px solid #9b9b9b;
    font-weight: 400;
    padding: 1rem 2rem !important;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.table-complex td:last-child {
    border-right: 0;
}

.table-complex td .until {
    padding: 0 2rem;
}

.table-complex .green {
    color: var(--color-secondary);
}

.table-complex .red {
    color: #cc2626;
}

.alert {
    border: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
}

.alert:before {
    height: 32px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -74px;
    width: 32px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.alert::before {
    padding-right: 3.5rem;
}

.referenzgebaeude .f-field-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.referenzgebaeude .f-field--upload input {
    display: none;
}

.referenzgebaeude .f-field--upload label {
    display: inline-block;
}

.referenzgebaeude .f-field--upload .ibutton__icon {
    margin: 0;
    padding: 0;
    position: relative;
    top: -2px;
    -webkit-transform: none;
    transform: none;
}

.referenzgebaeude .f-files {
    margin-top: 1.2rem;
    margin: 0;
    padding-left: 0;
}

.referenzgebaeude .f-files li:first-child {
    font-weight: bold;
}

.referenzgebaeude .previewblock,
.netzwerkpartner .previewblock {
    padding-left: 0;
}

.referenzgebaeude .previewblock a,
.netzwerkpartner .previewblock a {
    color: var(--color-text);
    font-weight: bold;
}

.referenzgebaeude .previewblock .ok,
.netzwerkpartner .previewblock .ok {
    color: var(--color-secondary);
}

.referenzgebaeude .files--complex,
.netzwerkpartner .files--complex {
    border-bottom: 1px solid #aaaaaa;
    padding-top: 1rem;
    padding-bottom: 0rem;
}

.content-box {
    border-bottom: 1px solid var(--color-white);
}

.content-box:last-child {
    border-bottom: none;
}

.content-box ul {
    display: block;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.content-box ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.content-box ul li:before {
    height: 17px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -395px;
    width: 12px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: auto;
    top: 6px;
    -webkit-transform: rotate(auto) scale(before);
    transform: rotate(auto) scale(before);
}

.content-box ul a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: inherit;
}

.content-box ul a:hover,
.content-box ul a:focus {
    color: var(--color-secondary);
    text-decoration: underline;
}

.content-box ul li {
    margin-bottom: 1.2rem;
}


.frame-custom-31.content-box--fixed >h2.head-2,
.content-box>h3,
.content-box .ui-accordion-header {
    background: #B9DCAB;
    cursor: pointer;
    margin: 0;
    padding: 1.2rem;
    padding-right: 40px;
    position: relative;
    outline: 0;
}


.content-box .ui-accordion-header h3 {
    color: #42752d;
    font-weight: normal;
}

.content-box>h3.ui-accordion-header-active,
.content-box .ui-accordion-header.ui-accordion-header-active {
    background: var(--color-secondary);
}

.content-box>h3.ui-accordion-header-active a,
.content-box .ui-accordion-header.ui-accordion-header-active {
    color: var(--color-white) !important;
}

.content-box>h3 a,
.content-box .ui-accordion-header {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    color: #42752d;
    text-decoration: none;
}

.content-box>h3 a:hover,
.content-box>h3 a:focus,
.content-box .ui-accordion-header.ui-state-active,
.content-box .ui-accordion-header.ui-state-active {
    color: inherit;
    text-decoration: underline;
}

.content-box>div,
.content-box .ui-accordion-content {
    position: relative;
    background: var(--color-light-grey);
    padding: 2rem 1.2rem;
}

.content-box>div header,
.content-box .ui-accordion-content header {
    display: none;
}

.content-box>div p,
.content-box>div li,
.content-box .ui-accordion-content p,
.content-box .ui-accordion-content li {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.666;
    font-size: 1.4rem;
}

.ui-accordion:not(.content-box) .ui-accordion-header .ui-accordion-header-icon {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

.content-box .ui-accordion-header-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    left: auto;
    right: 0;
}

.content-box .ui-accordion-header-icon.ui-icon-triangle-1-e {
    position: absolute;
}

.content-box .ui-accordion-header-icon.ui-icon-triangle-1-e:before {
    height: 12px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -1888px;
    width: 17px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 18px;
}

.content-box .ui-accordion-header-icon.ui-icon-triangle-1-s {
    position: absolute;
}

.content-box .ui-accordion-header-icon.ui-icon-triangle-1-s:before {
    height: 14px;
    background-image: url("../img/svg-sprite.svg");
    background-position: 0px -2013px;
    width: 14px;
    background-size: 106px 2027px;
    background-repeat: no-repeat;
    bottom: auto;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 18px;
}


.content-box.content-box--fixed>h3 a,
.content-box.content-box--fixed .ui-accordion-header a {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    cursor: default !important;
    text-decoration: none !important;
}

.content-box.content-box--fixed>h3 a:hover,
.content-box.content-box--fixed>h3 a:focus,
.content-box.content-box--fixed .ui-accordion-header a:hover,
.content-box.content-box--fixed .ui-accordion-header a:focus {
    color: #42752d !important;
}

.content-box.content-box--fixed h2.head-2,
.content-box.content-box--fixed h3.content-box__title {
    font-family: PTSans, Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    color: #42752d;
    cursor: default !important;
}

.faq-filter {
    margin: 0 0 2em 0;
}

.faq-filter input {
    background-image: url("../img/lupe.png");
    background-repeat: no-repeat;
    background-position: 3px 3px;
    background-size: 33px 33px;
    padding-left: 43px;
}

.faq-result-message {
    margin-top: 1rem;
    font-style: italic;
}

.faq-hidden {
    display: none;
}

.faq-hidden,
.faq-hidden+div {
    display: none !important;
}

.faq-empty:before {
    content: "Es konnten keine passenden Fragen oder Antworten gefunden werden.";
}


.pika-lendar {
    background: var(--color-white);
    border: 5px solid var(--color-secondary);
    padding: 2rem;
}

.pika-select {
    margin-left: 2rem;
}

.pika-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pika-button {
    padding: 0;
}

@media (min-width: 46.25em) {
    .pika-button {
        padding: 0 1rem;
    }
}

#calendar select {
    appearance: caret !important;
}

.form_box {
    margin: 0 -30px;
    padding: 30px;
}

.form_box .thickline {
    border-top: 2px solid var(--color-white);
    padding-top: 15px;
    padding-bottom: 5px;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}


.print-color .print-show {
    display: none;
}

.print-color .print-hide {
    display: inline-block;
}

@media print {
    @page {
        /*margin: 2cm 2cm 2cm 2cm;*/
    }

    * {
        text-shadow: none !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: none !important;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    a[href^="javascript:"]::after,
    a[href^="#"]::after {
        content: "" !important;
    }

    pre,
    blockquote {
        border: thin solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h1,
    .m-tab__headline,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    body {
        padding-top: 0 !important;
    }

    .document-header {
        position: static !important;
    }

    .document-main {
        padding-bottom: 0 !important;
    }

    .document-header {
        background: var(--color-primary) !important;
    }

    .l-column {
        padding: 0 !important;
    }

    .document-footer {
        display: none !important;
    }

    .slick-dots,
    .slick-prev,
    .slick-next {
        display: none !important;
    }

    #login,
    .header-slogan,
    .document-section--stage,
    .document-section--nav,
    .document-breadcrumbs,
    .result_header {
        display: none !important;
    }

    .suche_ergebnis .csc-firstHeader {
        display: none !important;
    }

    .suche_ergebnis .fp--privat,
    .suche_ergebnis .fp--unternehmen,
    .suche_ergebnis .fp--netzwerkpartner,
    .suche_ergebnis .fp--expertinfo,
    .suche_ergebnis .fp--single_details {
        display: none !important;
    }

    .suche_ergebnis .expertendb_single .header {
        color: var(--color-white)fff !important;
        padding: 0.5rem 2rem !important;
        background: var(--color-primary) !important;
        display: static !important;
    }

    .suche_ergebnis .experten_info {
        background: #f2f2f2 !important;
    }

    .suche_ergebnis .expertendb_single .header-text {
        font-size: 1.9rem;
        float: none !important;
        color: var(--color-white)fff !important;
    }

    .suche_ergebnis .expertendb_single .header-small {
        display: none !important;
    }

    .expertendb_single .experten_info .contact-info {
        display: block;
    }

    .expertendb_single .c-column--small {
        width: 45%;
        float: left;
    }

    .expertendb_single .c-column--large {
        width: 45%;
        float: left;
    }

    .header-logo #Fill-3,
    .header-logo #Fill-4 {
        display: block !important;
    }

    .header-logo {
        width: 400px !important;
    }

    .print-color .print-show {
        display: inline-block;
    }

    .print-color .print-hide {
        display: none;
    }
}


#search-validity.error {
    font-weight: bold;
    color: #FF0;
}

#jfmulticontent_status {
    margin-bottom: 3.5rem;
}

#jfmulticontent_status .ui-accordion-content::before {
    background: var(--color-light-grey) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

#jfmulticontent_status .ui-accordion-content {
    padding-left: 60px;
}

#jfmulticontent_status .ui-accordion-content {
    padding-left: 60px;
}

#jfmulticontent_status .ui-accordion-header {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: bold;
    text-decoration: none;
}

#jfmulticontent_status .status_date {
    font-style: italic;
    font-weight: normal;
    line-height: 2.2rem;
}


/* topic_selector */
.topic_selector,
#topic_selector {
    border: 1px solid #999;
    border-top: none;
    height: 400px;
    overflow: hidden;
    overflow-y: scroll !important;
    padding: 4px;
    display: none;
    position: absolute;
    z-index: 10;
    background: white;
    top: 50px;
    margin-right: 0px;
    width: 500px;
}

.topic_selector .topic-category,
#topic_selector .topic-category {
    font-size: 1.2rem;
}

.topic_selector a,
#topic_selector a {
    display: block;
    font-size: 1.4rem;
    padding-left: 10px;
}

#fortbildung_topic {
    position: relative;
}

.topic_spinner,
#topic_spinner {
    position: absolute;
    right: 5px;
    top: 5px;
}

[type="button"].disabled {
    background-color: #999;
    cursor: default;
}

#topic_table .topic-delete {
    cursor: pointer;
}

a.click-once.already-clicked,
button.click-once.already-clicked,
input.click-once.already-clicked {
    color: #000 !important;
    cursor: default;
}

button.click-once.already-clicked,
input.click-once.already-clicked {
    display: none;
}

.step-label {
    display: inline-block;
    background-color: #3398D8;
    padding: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    color: var(--color-white);
    font-weight: bold;
}

.step-required {
    font-weight: bold;
}

p.small-hint {
    font-size: 1.4rem;
    font-style: italic;
}

/*
.header-logo:before {

            content: url('../img/muetze.png');

            display: block;

            position:absolute;

            margin-left:-28px;

            margin-top:-24px;

}
*/

.f-field-group--inline .f-field--slider.f-field--tiny {
    padding-right: 35px !important;
    flex-basis: 50%;
}

_:-ms-lang(x),
.f-field-group--inline .f-field--slider.f-field--tiny {
    flex-basis: 54%;
}

.f-field--slider-select {}

.f-field--slider .f-container {
    padding-top: 26px;
    padding-bottom: 18px;
}

.f-field--slider-select.f-type-select .f-container select {
    padding-right: 1.2rem;
    font-weight: bold;
}


.f-field--slider-select.f-type-select .f-container select,
.f-field--slider-select.f-type-select .f-container option {
    background-color: #445662;
    color: var(--color-white);
    text-align: center;
}

.f-field--slider-select.f-type-select .f-container::before {
    display: none;
}

.ui-widget {
    font-size: inherit;
    font-family: PTSans, Helvetica, Arial, sans-serif;
}

.ui-widget-content {
    border-width: 0px;
}

.ui-accordion h3.ui-accordion-header-active {
    border-bottom-width: 0px !important;
}

.ui-widget-content.ui-slider-horizontal {
    background: none;
    background-color: #445662;
    border-width: 0px;
    border-radius: 0px;
    height: 4px;

}

.ui-widget-content.ui-slider-horizontal .ui-slider-handle {
    height: 1.4em;
    width: 1.4em;
    top: -0.65em;
    cursor: pointer;
    border-radius: 11px !important;
    background: none;
    background-color: #f07100;
    border-width: 0px;
    -webkit-box-shadow: 1px 4px 10px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 4px 10px -3px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 4px 10px -3px rgba(0, 0, 0, 0.75);

    background-image: url("../img/slider_stripes.png");
    background-position: center center;
    background-repeat: no-repeat;
    outline: 0;
}

.f-field-datepicker .f-container:before {
    position: absolute;
    top: 16px;
    right: 10px;
    background-image: url("../img/datepicker.png");
    background-position: center center;
    background-repeat: no-repeat;
    height: 23px;
    width: 20px;
    content: "";
    display: block;
}


.contact-mainheadline {
    background-color: var(--color-light-grey);
    color: var(--color-primary);
    padding: 1.2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: bold;

    background-position: right 2rem center;
    background-repeat: no-repeat;
}


#my-adresses {
    background-image: url("../img/vcard.png");
}

#my-visibility {
    background-image: url("../img/eye.png");
}

.f-contact {
    margin-bottom: 1.8rem;
    position: relative;
}

.f-contact.f-contact--last {
    margin-bottom: 3rem;
}

.contact-kfw {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    background-color: var(--color-light-grey);
    width: 22rem;
    height: 5rem;
    padding-left: 9.5rem;
    border-left: 0.2rem solid var(--color-white);

    background-position: left 2rem center;
    background-repeat: no-repeat;
    /*background-image: url("../img/kfw_blue.png");*/
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.8rem;
    padding-top: 0.7rem;
}

.contact-kfw:before {
    content: "BEG";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 34px;
    font-weight: bold;
    color: var(--color-white);
    color: #069;
}

.contact-kfw--selected {
    background-color: #6cb74e;
    /*background-image: url("../img/kfw_white.png");*/
    font-weight: bold;
    color: var(--color-white);
    padding-top: 1.6rem;
}

.contact-kfw--selected:before {
    color: var(--color-white);
}

.contact-kfw:hover {
    background-color: #6cb74e;
    /*background-image: url("../img/kfw_white.png");*/
    font-weight: bold;
    color: var(--color-white);
}

.contact-kfw:hover:before {
    color: var(--color-white);
}

.contact-kfw a {
    color: #000;
    text-decoration: underline;
}

.contact-kfw:hover a {
    color: var(--color-white);
}

.contact-toggle {
    position: relative;
}

.contact-toggle:before {
    width: 7rem;
    background-image: url("../img/address_plus.png");
    background-position: center center;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    content: "";
    display: block;
    position: absolute;
    background-color: var(--color-white);
}

.contact-toggle--visible:before {
    background-image: url("../img/address_minus.png");
}

.contact-toggle:active,
.contact-toggle:focus,
.contact-toggle:active,
.contact-toggle:focus {
    outline: 0;
}

.contact-body {
    height: 0;
    overflow: hidden;
    display: none;
}

.contact-body.contact-toggle--visible {
    height: auto;
    overflow: visible;
    display: block;
}

.contact-headline {
    cursor: pointer;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: bold;
    text-transform: uppercase;
    padding: 1.2rem;
    padding-left: 9rem;
    padding-right: 0rem;
    height: 5rem;
}

.contact-body {
    position: relative;
    background: var(--color-white);
    padding: 2rem 2rem 2rem 9rem;
    background: var(--color-light-grey);
    margin-top: 0.3rem;

}

.contact-body::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--color-white);
    width: 7rem;
    left: 0;
}

.contact-edit {
    position: absolute;
    right: 0rem;
    top: 0rem;

    background-position: left 0rem top 0rem;
    background-repeat: no-repeat;
    background-image: url("../img/address_edit.png");
    font-size: 0;
}

.contact-edit a {
    display: inline-block;
    width: 56px;
    height: 46px;
}

.contact-full-address,
.contact-email,
.contact-telephone,
.contact-mobile,
.contact-fax,
.contact-website,
.contact-telefax {
    background-position: left 0rem top 0rem;
    background-repeat: no-repeat;
    padding-left: 3.5rem;
    margin-bottom: 1rem;
}

.contact-mobile {
    background-image: url("../img/mobile.png");
    background-position: left 0.5rem top 0rem;
}

.contact-website {
    background-image: url("../img/www.png");
}

.contact-full-address {
    background-image: url("../img/building.png");
    position: relative;
    line-height: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact-telephone {
    background-image: url("../img/phone.png");
}

.contact-email {
    background-image: url("../img/mail.png");
    background-position: left 0rem top 0.4rem;
}

.contact-telefax {
    background-image: url("../img/fax.png");
}

.map-canvas {
    border: 1px solid #aaaaaa;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    color: var(--color-white)fff !important;
}

@media (max-width: 800px) {}

.homepage-stage img {
    height: auto;
    width: auto;
    max-width: none;
}

.page-19385 a {
    color: var(--color-primary);
}

.page-19385 a:hover,
a:focus {
    color: var(--color-primary);
}


.downloads-link a,
.veranstaltungen-link a {
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
    display: block;
    padding-top: 80px;
    padding-bottom: 40px;
}

.veranstaltungen-link a {
    background-image: url("../img/cal_icon.png");
    background-repeat: no-repeat;
    background-position: center 0px;
}

.downloads-link a {
    background-image: url("../img/info_icon.png");
    background-repeat: no-repeat;
    background-position: center 0px;
}


.networkpartner-link {
    text-transform: uppercase;
    text-align: center;
    font-size: 1.7rem;
}

.networkpartner-link a {
    text-align: left;
}

.downloads-link a,
.veranstaltungen-link a,
.networkpartner-link a,
.downloads-link a:focus,
.veranstaltungen-link a:focus,
.networkpartner-link a:focus,
.downloads-link a:hover,
.veranstaltungen-link a:hover,
.networkpartner-link a:hover {
    color: inherit;
}

.networkpartner-link a {
    background-image: url("../img/icon_nwp.png");
    background-repeat: no-repeat;
    background-position: 0px 0px;

    padding-left: 40px;
    display: inline-block;
    padding-top: 3px;
    padding-bottom: 8px;
}

.networkpartner2-link a {
    background-image: url("../img/icon_nwp_logo.png");
    padding-left: 30px;
}

.page-20122 .document-section__main h1,
.page-19385 .document-section__main h1 {
    text-align: center;
    text-transform: uppercase;
}

.news-template-2 h2 a,
.news-template-2 h3 a {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--color-primary);
}

.page-19385 .document-section__main h2:after {
    width: 75px;
    height: 1px;
    background-color: var(--color-primary);
    margin: auto;
    content: "";
    margin-top: 2rem;
    display: block;
}


.page-19385 .document-section__main .teaser-list h2:after {
    display: none;
}


.page-19385 .button_link {
    background: var(--color-primary);
    color: var(--color-white);
}

.page-19385 .button_link:hover,
.button_link:focus {
    background: #198bb4;
    color: var(--color-white);

}


.page-19385 .frame-default ul li::before {
    height: 15px;
    background-position: center center;
    background-image: url("../img/ext_arrow.png");
    width: 12px;
    background-size: auto;
}

.expert-search-quickform:not(.page-19385 .expert-search-quickform):not(.page-20262 .expert-search-quickform) {
    display: none;
}

.expert-search-quickform [type="submit"],
.expert-search-quickform [type="button"] {
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 3.7rem;
}

.expert-search-quickform [type="submit"]:hover,
.expert-search-quickform [type="button"]:hover,
.expert-search-quickform [type="submit"]:focus,
.expert-search-quickform [type="button"]:focus {
    background: #198bb4;
}


.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.ce-headline-left {
    text-align: left
}

.ce-headline-right {
    text-align: right
}

.ce-headline-center {
    text-align: center
}

.homepage-stage {
    position: relative;
    min-height: 300px;
}

.expert-search-quickform {
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 100%;
}

.expert-search-quickform-wg,
.expert-search-quickform-nwg,
.expert-search-quickform-industrie {
    background-color: var(--color-white);
    margin-left: 5%;
    margin-right: 5%;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    padding-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 20px;
    clear: both;

}

.expert-search-quickform>.expert-search-tab-input,
.expert-search-quickform figure>div {
    display: none;
}

.expert-search-quickform #expert-search-wg-tab:checked~figure .expert-search-quickform-wg,
.expert-search-quickform #expert-search-nwg-tab:checked~figure .expert-search-quickform-nwg,
.expert-search-quickform #expert-search-industrie-tab:checked~figure .expert-search-quickform-industrie {
    display: block;
}

.expert-search-quickform-tab {
    padding: 10px;
    background-color: #e5e5e5;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #e5e5e5;
    font-weight: bold;
    text-transform: uppercase;
    border-right: 1px solid var(--color-white);
}

.expert-search-quickform-tab:last-child {
    border-right: 0px solid var(--color-white);
}

.expert-search-quickform nav {
    margin-left: 7%;
    margin-right: 7%;

    display: flex;
}


@media (max-width: 700px) {
    .expert-search-quickform-tab {
        padding-left: 4%;
        padding-right: 4%;
        font-size: 1.3rem;
    }

    .expert-search-quickform label {
        line-height: 2rem;
    }

    .expert-search-icon {
        display: none;
    }
}

@media (max-width: 500px) {
    .expert-search-quickform-tab {
        padding-left: 3%;
        padding-right: 3%;
        font-size: 1.2rem;
    }
}

#expert-search-wg-tab:checked~nav label[for="expert-search-wg-tab"],
#expert-search-nwg-tab:checked~nav label[for="expert-search-nwg-tab"],
#expert-search-industrie-tab:checked~nav label[for="expert-search-industrie-tab"] {
    background: var(--color-white);
    border: 1px solid #999;
    border-bottom: 1px solid var(--color-white);
}


.expert-search-quickform .expert-search-quickform-headline {
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 2rem;
    color: var(--color-primary);
}

.expert-search-quickform .expert-search-icon {
    float: left;
    padding-right: 2rem;
    padding-top: 1rem;
}

.expert-search-quickform figure label {
    display: none;
}

.expert-search-quickform .f-field-group {
    margin: 0px;
}

.expert-search-quickform .f-field {
    margin: 0px;
    padding-right: 0px;
}

.expert-search-quickform .f-field input {
    margin: 0px;
    width: 100%;
}

.expert-search-quickform .f-field input::placeholder {
    color: #000;
}

.expert-search-quickform .f-field select {
    margin: 0px;
}

.expert-search-quickform .f-fieldset {
    margin: 0px;
}

.expert-search-quickform .m-toggle.expert-search__advanced--visible {
    display: none;
}

.expert-search__advanced {
    padding-top: 5px;
}

.expert-search-quickform .f-type-select .f-container select#tx_wilgebaeudedb_projekt_suche_umkreis {
    /*border-left:0px;*/
}

.f-field-group--inline .f-field--search {
    flex-basis: 55%;
    padding-right: 1%;
}

.f-field-group--inline .f-field--umkreis {
    flex-basis: 25%;
}

.f-field-group--inline .f-field--button {
    flex-basis: 20%;
}

.f-field-group--inline .f-field--name {
    flex-basis: 80%;
}

.expert-search-quickform .f-field.f-field--umkreis,
.expert-search-quickform .f-field.f-field--name {
    padding-right: 10px;
}

@media (max-width: 900px) {
    .f-field-group--inline .f-field--search {
        flex-basis: 45%;
    }

    .f-field-group--inline .f-field--umkreis {
        flex-basis: 35%;
    }
}

@media (max-width: 540px) {
    .expert-search-quickform {
        bottom: 15px;
    }

    .expert-search-quickform .expert-search-quickform-headline {
        display: none;
    }

    .expert-search-quickform-wg,
    .expert-search-quickform-nwg,
    .expert-search-quickform-industrie {
        padding: 20px;
        padding-bottom: 0px;
    }

    .expert-search-quickform .f-field.f-field--umkreis,
    .expert-search-quickform .f-field.f-field--name {
        padding-right: 0px;
    }

    .expert-search-quickform .f-type-select .f-container select#tx_wilgebaeudedb_projekt_suche_umkreis {
        border-left: 1px solid #aaaaaa;
    }

    .expert-search-quickform .f-field-group--inline .f-field {
        margin-bottom: 10px;
    }
}

.frame.image-box .ce-textpic {
    position: relative;
}

.frame.image-box .ce-gallery {
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .frame.image-box .ce-bodytext {
        position: absolute;
        top: 5%;
        background-color: rgba(255, 255, 255, 0.9);
        width: 40%;
        padding: 3%;
        line-height: 1.3;
    }

    .frame.image-box .ce-left .ce-bodytext {
        left: 3%;
    }

    .frame.image-box .ce-center .ce-bodytext{
        left: 50%;
        transform: translateX(-50%);
    }

    .frame.image-box .ce-right .ce-bodytext {
        right: 3%;
    }

    .frame.image-box {
        height: 400px;
        overflow: hidden;
    }
}

@media (max-width: 800px) and (min-width: 600px) {
    .frame.image-box .ce-bodytext {
        width: 60%;
    }
}

.frame.image-box h1,
.frame.image-box h2,
.frame.image-box h3,
.frame.image-box h4 {
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.document-footer #weitere {
    padding-bottom: 4rem;
}


.col-wrap {
    clear: both;
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
}

.col-wrap::after,
.col-wrap .col::after {
    content: " ";
    display: block;
    clear: both;
}

.col-wrap .col {
    overflow: hidden;
    min-height: 1px;
    height: auto;
    position: relative;
}

.col-wrap.two .col1 {
    width: 48.5%;
    margin-right: 3%
}

.col-wrap.two .col2 {
    width: 48.5%;
    margin: 0%
}

.col-wrap.two.two_60_40 .col1 {
    width: 60%;
}

.col-wrap.two.two_60_40 .col2 {
    width: 37%;
}

.col-wrap.two.two_40_60 .col1 {
    width: 37%;
}

.col-wrap.two.two_40_60 .col2 {
    width: 60%;
}

.col-wrap.two.two_75_25 .col1 {
    width: 72%;
}

.col-wrap.two.two_75_25 .col2 {
    width: 25%;
}

.col-wrap.two.two_25_75 .col1 {
    width: 25%;
}

.col-wrap.two.two_25_75 .col2 {
    width: 72%;
}

.col-wrap.three .col1 {
    width: 30%;
    margin-right: 5%
}

.col-wrap.three .col2 {
    width: 30%;
    margin-right: 5%
}

.col-wrap.three .col3 {
    width: 30%;
    margin: 0%
}


@media (max-width: 650px) {

    .col-wrap.three .col1,
    .col-wrap.three .col2,
    .col-wrap.three .col3 {
        width: 100%;
        margin: 0%;
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {

    .col-wrap.two .col1,
    .col-wrap.two .col2 {
        width: 100% !important;
        margin: 0%;
        margin-bottom: 20px;
    }
}

.expert-search-result .expert-search-filter-used {
    background-color: #e5f7fb;
    padding: 30px;
    margin-bottom: 15px;
}

.expert-search-result .expert-search-headline {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.expert-search-result .expert-search-search-from {
    font-size: 1.7rem;
}

.expert-search-result .expert-search-search-filter {
    font-size: 1.7rem;
    font-weight: bold;
}

.expert-search-result .expert-search-filter-button {
    margin-bottom: 15px;
}

.expert-search-result .f-fieldset .f-field,
.expert-search-result .f-field-group .f-field {
    margin-bottom: 0;
}

.expert-search-result .expertendb_single_box {
    border: 1px solid var(--color-primary);
    margin-bottom: 5px;
}

.expert-search-result .expertendb_single.expertendb_single-fkh .expertendb_single_box {
    border-color: var(--color-light-grey);
}

.expertendb_single p {
    font-size: 1.3rem;
}

.expertendb_single p.small-hint {
    font-style: normal;
}

.fp--expertinfo p.small-hint {
    font-size: 1.3rem;
}

.expert-search-result .toggle__control {
    background-color: #f5f5f5;
}

.expert-search-result .expertendb_single.expertendb_single-fkh .toggle__control {
    background-color: var(--color-light-grey);
}

.expert-search-result .toggle__control,
.expert-search-result .toggle--open+.toggle__target,
.expert-search-result .toggle--transition+.toggle__target {
    border-width: 0px;
}

.expert-search-result .toggle__icon {
    background: none;
}

.expert-search-result .toggle__target {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


.expert-search-result .toggle__target::after {
    background: none;
}

.expert-search-result .toggle__control h4 {
    color: var(--color-primary);
    font-size: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.expert-search-result .expertendb_single.expertendb_single-fkh .toggle__control h4 {
    color: var(--color-headline);
}

.page-navigation,
.expert-search-pagebrowser {
    text-align: center;
}

.page-navigation {
    margin-bottom: 2rem;
}

.page-navigation p {
    display: none;
}

.page-navigation ul {
    margin: 0;
    padding: 0;
}

.page-navigation li {
    display: inline-block;
}

.page-navigation a,
.expert-search-pagebrowser a {
    padding: 1rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    font-size: 1.8rem;
    background-color: #e5f7fb;
    color: inherit;
    margin-right: 1px;
}

.page-navigation a:hover,
.expert-search-pagebrowser a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.page-navigation li.current,
.expert-search-pagebrowser span.active {
    padding: 1rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    font-size: 1.8rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    margin-right: 1px;
}

.page-navigation li.current {
    line-height: 2.3rem;
}

.expert-search-pagebrowser span.dots {
    padding: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1.8rem;
}

.page-navigation li.previous a,
.expert-search-pagebrowser span.prev a {
    font-size: 0;
    display: inline-block;
    padding: 1rem;
    padding-left: 1.5rem;
    padding-right: 2.5rem;
    background: none;
    background-image: url("../img/slider_arrow_left.png");
    background-position: left center;
    background-repeat: no-repeat;
}

.page-navigation li.next a,
.expert-search-pagebrowser span.next a {
    font-size: 0;
    display: inline-block;
    padding: 1rem;
    padding-left: 1.5rem;
    padding-right: 2.5rem;
    background: none;
    background-image: url("../img/slider_arrow_right.png");
    background-position: right center;
    background-repeat: no-repeat;
}

.page-navigation li.previous a:before,
.page-navigation li.next a:before,
.expert-search-pagebrowser span.prev a:before,
.expert-search-pagebrowser span.next a:before {
    font-size: 1.8rem;
    content: " ";
    display: inline;
    line-height: auto;
}

.expert-search-pagebrowser-info {
    display: none;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width:800px) {
    .expert-search-pagebrowser-info {
        display: block;
    }

    .expert-search-pagebrowser>a,
    .expert-search-pagebrowser>span.dots {
        display: none;
    }
}


.f-field--sorting .f-field,
.f-field--sorting.f-field {
    padding-right: 0px;
    text-align: right;
}

.f-field--inline-label label {
    display: inline-block;
    vertical-align: middle;
    padding-left: 1.2rem;
    padding-top: 0.7rem;
    margin-top: 0.8rem;
    height: 4rem;
}

.f-field--sorting .f-type-select .f-container select {
    border: none;
    width: auto;
    color: var(--color-primary);
    font-weight: bold;
    margin-left: 10px;
}

.expert-search-result .toggle__icon {
    width: 60px;
}

.expert-search-result .toggle__icon::before {
    background-image: url("../img/icon_plus.png");
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    width: 29px;
    height: 29px;
    top: 13px;
}


.expert-search-result .toggle--open .toggle__icon::before {
    background-image: url("../img/icon_minus.png");
}

.expert-search-result .expertendb_single.expertendb_single-fkh .toggle__icon::before {
    background-image: url("../img/icon_plus_fkh.png");
}

.expert-search-result .expertendb_single.expertendb_single-fkh .toggle--open .toggle__icon::before {
    background-image: url("../img/icon_minus_fkh.png");
}


.expert-search-filterbutton {
    padding-top: 0.7rem;
    margin-top: 0.8rem;
    height: 4rem;
    display: inline-block;
    color: var(--color-primary);
    cursor: pointer;
    width: 18rem;
    padding-left: 45px;
    font-weight: bold;

    background-image: url("../img/icon_filter.png");
    background-position: left center;
    background-repeat: no-repeat;
}

/*
.expert-search-filterbutton:focus {
    outline: 2px solid var(--color-secondary);
}
*/

#move-top {
    color: var(--color-white);
    width: 99px;
    height: 50px;
    position: fixed;
    left: 48%;
    bottom: 0px;
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url('../img/movetop.png');
    background-position: center center;
}

#move-top:hover {
    cursor: pointer;
}

@media (max-width:740px) {
    #move-top {
        left: auto;
        right: 5%;
    }
}


#mask-page {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    /* You can make this slightly transparent black rgba(0,0,0,.3); or transparent */
    ;
    opacity: 0.3;
    top: 0;
    left: 0;
    display: none;
}

#expert-search-filterbar-button {
    color: var(--color-white);
    width: 67px;
    height: 137px;
    position: fixed;
    right: 0px;
    top: 150px;
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url('../img/lasche_filter.png');
    background-position: center center;
    display: none;
}

#expert-search-filterbar-button span.label {
    display: block;
    text-align: center;
    padding-top: 35px;
    font-size: 14px;
}

#expert-search-filterbar-button:after {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-image: url('../img/lasche_filtericon.png');
    background-position: center center;
    margin-top: 5px;
    width: 67px;
    height: 31px;
}

#expert-search-filterbar-button:hover {
    cursor: pointer;
}

#expert-search-filterbar {
    display: block;
    position: fixed;
    z-index: 101;
    top: 0px;
    width: 470px;
    right: -470px;
    bottom: 0px;
    background-color: #01a3d4;
    overflow: auto;
    color: var(--color-white);

    box-shadow: 0 0 8px #666;
    -moz-box-shadow: 0 0 8px #666;
    -webkit-box-shadow: 0 0 8px #666;
}

@media (max-width:560px) {
    #expert-search-filterbar {
        width: 370px;
        right: -370px;
    }
}

@media (max-width:420px) {
    #expert-search-filterbar {
        width: 100%;
        right: -100%;
    }
}

#close-filter {
    position: relative;
    background-image: url("../img/btn_close.png");
    background-position: 5% center;
    background-repeat: no-repeat;
    height: 60px;
    cursor: pointer;
}

#close-filter span {
    display: block;
    position: absolute;
    right: 0px;
    top: 3px;
    font-weight: bold;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
    padding-left: 45px;
    background-image: url('../img/icon_filter_white.png');
    background-position: left center;
    background-repeat: no-repeat;

}

#expert-search-form-filter {
    display: none;
}

#expert-search-filterbar .expert-search {
    padding-left: 5%;
    padding-right: 5%;
}

#expert-search-filterbar .f-fieldset .f-field {
    padding-right: 5px;
    margin-bottom: 0.7rem;
}

#expert-search-filterbar f-field-group .f-field {
    padding-right: 0;
}

#expert-search-filterbar f-field-group .f-field:last-child {
    padding-right: 0;
}

#expert-search-filterbar label {
    font-size: 1.5rem;
}

#expert-search-filterbar #search-validity {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}


#expert-search-filterbar [type="color"],
#expert-search-filterbar [type="date"],
#expert-search-filterbar [type="datetime"],
#expert-search-filterbar [type="datetime-local"],
#expert-search-filterbar [type="email"],
#expert-search-filterbar [type="file"],
#expert-search-filterbar [type="number"],
#expert-search-filterbar [type="password"],
#expert-search-filterbar [type="phone"],
#expert-search-filterbar [type="range"],
#expert-search-filterbar [type="search"],
#expert-search-filterbar [type="tel"],
#expert-search-filterbar [type="text"],
#expert-search-filterbar [type="time"],
#expert-search-filterbar [type="url"] {
    background-color: #00b7f0;
    border: 0px solid #aaaaaa;
    color: var(--color-white);
    margin-top: 0px;
}

#expert-search-filterbar .f-field input {
    color: var(--color-white);
}

#expert-search-filterbar .f-type-select .f-container select {
    background-color: #00b7f0;
    border: 0px solid #aaaaaa;
    color: var(--color-white);
    margin-top: 0px;
}

#expert-search-filterbar .f-type-select .f-container::before {
    background-image: url('../img/dropdown_arrow_white.png');
    background-position: center center;
    background-size: auto;
}

#expert-search-filterbar option {
    color: #000;
}

#expert-search-filterbar label[for="tx_wilgebaeudedb_projekt_suche_plz"],
#expert-search-filterbar label[for="tx_wilgebaeudedb_projekt_suche_umkreis"],
#expert-search-filterbar label[for="tx_wilgebaeudedb_projekt_suche_name"] {
    display: none;
}

#expert-search-filterbar .f-field-group {
    margin-bottom: 0px;
}

#expert-search-filterbar ::placeholder {
    color: var(--color-white);
}

#expert-search-filterbar .experten-search-headline {
    text-transform: uppercase;
    color: var(--color-white);
    font-size: 1.8rem;
    border-bottom: 1px solid #68c7e3;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    padding-top: 2px;
}

.experten-search-headline-fp-wg {
    background-image: url("../img/icon_fp_wg.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.experten-search-headline-fp-nwg {
    background-image: url("../img/icon_fp_nwg.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.experten-search-headline-fp-industrie {
    background-image: url("../img/icon_fp_industrie.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

#expert-search-filterbar .f-legend-sub {
    padding-left: 35px;
}

#expert-search-filterbar .f-legend-headline {
    padding-left: 35px;
}

#expert-search-filterbar .f-type-divider {
    border-top: 1px solid #68c7e3;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.f-legend-beratung {
    background-image: url("../img/icon_eb.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.f-legend-sanierung {
    background-image: url("../img/icon_bf_san_wg.png");
    background-position: left top;
    background-repeat: no-repeat;
}

.f-legend-neubau {
    background-image: url("../img/icon_bf_nb_wg.png");
    background-position: left top;
    background-repeat: no-repeat;
}

.f-legend-fp-wg {
    padding-left: 35px;
}

.f-legend-fp-wg-denkmal {
    background-image: url("../img/icon_bf_eg_wg_dm.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.f-legend-fp-enw {
    background-image: url("../img/icon_eb.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.f-legend-fp-nwg {
    padding-left: 35px;
}

.f-legend-headline.f-legend-fp-nwg {

    background-image: url('../img/icon_bf_eg_nwg.png');
    background-position: left top;
    background-repeat: no-repeat;
}

.f-legend-fp-enk {
    background-image: url("../img/icon_bf_ee_w.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.f-legend-fp-nwg-denkmal {
    background-image: url("../img/icon_bf_eg_wg_dm.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.f-legend-umsetzung {
    background-image: url("../img/icon_umsetzung.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 35px;
}


#expert-search-filterbar .f-type-checkbox .f-label::before {
    background-color: #00b7f0;
    border: thin solid var(--color-white);
}

#expert-search-filterbar .f-type-checkbox .f-label::after {
    background-color: transparent;
    background-image: url("../img/check.png");
    background-position: center center;
    background-repeat: no-repeat;
}

#expert-search-filterbar .f-type-checkbox .f-label {
    line-height: 2rem;
}


#expert-search-filterbar .f-legend {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    line-height: 1.5;
    font-weight: bold;
}

#expert-search-filterbar .f-legend-headline {
    font-size: 1.8rem;
}


#expert-search-filterbar .f-fieldset-box {
    background-color: #00b7f0;
    padding: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0.8rem;
}

#expert-search-filterbar .expert-search-hint {
    font-size: 1.2rem;
    padding-top: 1rem;
}

#expert-search-filterbar [type="submit"] {
    width: 100%;
    text-transform: uppercase;
    border: 1px solid var(--color-white);
    background-color: #00b7f0;
}

#expert-search-filterbar [type="submit"]:focus,
#expert-search-filterbar [type="submit"]:hover {
    background-color: #198bb4;
}


.expert-search__partners .f-type-checkbox label {
    margin: 0;
}

.expert-search__partners .f-type-checkbox .f-label {}

.expert-search__partners-toggle {
    text-transform: uppercase;
    color: var(--color-white);
    font-size: 1.8rem;
    border-bottom: 1px solid #68c7e3;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    padding-top: 6px;
    width: 100%;
    text-align: left;
}


.expert-search__partners-toggle::before {
    background-image: url('../img/arrow_right_white.png');
}

.expert-search-result .expertendb_single .header-text {
    font-size: 2.2rem;
    text-transform: uppercase;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;

    background-image: url("../img/flag.png");
    background-position: left 3px;
    background-repeat: no-repeat;
    padding-left: 50px;
}

.expert-search-result .expertendb_single.expertendb_single-fkh .header-text {
    background-image: none;
    padding-left: 0px;
}


.teaser-list h3 a,
.teaser-list h3 a:focus,
.teaser-list h3 a:hover {
    color: var(--color-primary);
}


/* Mobile Main Nav*/
#nav-main,
#nav-main .nav-wrap {
    display: none;
}

/* MOBILE BUTTON */
#menu-mobile-button {
    margin-left: auto;
    margin-right: 0;
}

#menu-mobile-button a {
    background-repeat: no-repeat;
    background-image: url('../img/burger.png');
    background-position: left center;
    padding-left: 30px;
    color: var(--color-white);
    text-transform: uppercase;
}

@media (max-width: 26.25em) {
    /*
    #menu-mobile-button {
    }
    #menu-mobile-button a {
        display:inline-block;
        height:20px;
        width:40px;
        text-indent:-99999px;
    }
    */

    #login_label {
        font-size: 0rem;
    }
}

#swipe-border {
    position: fixed;
    height: 100%;
    width: 10px;
    top: 0;
    left: 0;
}

#nav-mobile {
    display: block;
    color: #000;
    z-index: 10010;
    position: fixed;
    top: 0;
    width: 500px;
    left: -500px;
    bottom: 0;
    background-color: #e5e5e5;
    overflow: auto;
    box-shadow: 0 0 8px #666;
    -moz-box-shadow: 0 0 8px #666;
    -webkit-box-shadow: 0 0 8px #666;
    padding: 0px;
}

#nav-mobile a:hover,
#nav-mobile a:hover:before {
    text-decoration: none !important;
}

#nav-mobile .fa-home {
    position: absolute;
    left: 15px;
    top: 17px;
    font-size: 28px;
    color: var(--color-white);
    z-index: 1;
    text-decoration: none;
    width: 40px;
    height: 40px;

    background-repeat: no-repeat;
    background-image: url('../img/mobile_nav_home.png');
    background-position: center center;
}

#nav-mobile .fa-home:hover {
    color: var(--color-white);
}

#page.preventScrolling:after {
    content: " ";
    z-index: 10009;
    display: block;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#close-mobile {
    position: relative;
    background-color: #18b7f0;
    height: 75px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 50px;
}

#close-mobile:after {
    content: 'Menü';
    color: var(--color-white);
    position: absolute;
    top: 22px;
    right: 20px;
    font-weight: normal;
    font-size: 2rem;
    background-repeat: no-repeat;
    background-image: url('../img/mobile_nav_arrow_left.png');
    background-position: left center;
    padding-left: 25px;
}

#menu-mobile {
    background-color: #17a2d2;
    color: var(--color-white);
}


#nav-mobile ul {
    padding: 0px;
    border-top: 1px solid #1bb6f1;
    margin: 0;
}

#nav-mobile ul ul {
    padding: 20px;
    border: none;
}

#nav-mobile li {
    display: block;
    list-style-type: none;
    height: auto;
    border-bottom: 1px solid #1bb6f1;
}

#nav-mobile li.closed {
    height: 44px;
}

#nav-mobile li li.closed {
    height: auto;
}

#nav-mobile li li.last {
    border-bottom: 0;
}

#nav-mobile li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 17px;
    display: block;
    padding: 0px 20px;
    line-height: 44px;
}

#menu-mobile li a {
    color: var(--color-white);
}

#nav-mobile li a:hover,
#nav-mobile li.nav-link-aktiv>a,
#nav-mobile li.nav-link-aktiv .main-menu a,
#menu-mobile li li.nav-cur>a {
    background-color: var(--color-primary);
}

#nav-mobile li.closed ul,
#nav-mobile ul.closed {
    display: none;
}

#nav-mobile li ul {
    margin-bottom: 0px;
}

#nav-mobile li li {
    margin-bottom: 1px;
    border-bottom: 0;
}

#nav-mobile ul ul ul {
    padding: 0px 0px 10px;
}

#nav-mobile li li a {
    height: auto;
    width: auto;
    text-decoration: none;
    text-transform: inherit;
    font-size: 16px;
    font-weight: 300;
    text-shadow: none;
    color: #c6c6c6;
    text-align: left;
    margin: 0;
    padding: 12px 15px;
    padding-left: 30px;
    line-height: 17px;
    margin-bottom: 1px;

    background-repeat: no-repeat;
    background-image: url('../img/mobile_subnav_arrow_right.png');
    background-position: 15px center;
}

#nav-mobile li li li a {
    background-position: 33px center;
}

#nav-mobile li li a.menu-image {
    padding-bottom: 0;
    padding-top: 18px;
}

#nav-mobile li li li a {
    padding-left: 45px;
}

#nav-mobile li li li li a {
    padding-left: 60px;
}

#nav-mobile #menu-mobile>ul>li>a:hover,
#nav-mobile #menu-mobile>ul>li>.main-menu>a:hover,
#nav-mobile #menu-mobile>ul>li.nav-aktiv>.main-menu>a,
#nav-mobile #menu-mobile>ul>li.nav-aktiv {
    background-color: #198bb4;

    color: var(--color-white);
}

#nav-mobile #menu-mobile>ul>li.nav-aktiv a {
    color: var(--color-white);
}

#menu-mobile li li.nav-cur>a,
#menu-mobile li li.nav-cur,
#menu-mobile li li>a:hover,
#menu-mobile li li:hover,
#menu-mobile li li:hover>a {
    color: var(--color-white) !important;
}

#menu-mobile li li:hover>a:before,
#menu-mobile li li.nav-cur>a:before {
    content: none;
    position: absolute;
    left: 12px;
}

#menu-mobile li li:hover>a.menu-image:before,
#menu-mobile li li.nav-cur>a.menu-image:before {
    content: none;
}

#nav-mobile li a.open-submenu {
    display: block;
    position: absolute;
    right: 0;
    border: none;
    border-left: 1px solid #1bb6f1;
    border-bottom: 1px solid #1bb6f1;
    font-size: 15px;
    height: 44px;
    width: 10px;
    z-index: 1;
}

#nav-mobile li a.open-submenu:hover:before {
    color: var(--color-white);
}

.fa-angle-double-down::before {
    content: " ";
    background-repeat: no-repeat;
    background-image: url('../img/mobile_subnav_doublearrow.png');
    background-position: left center;
    width: 10px;
    height: 12px;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
}

@media (max-width: 550px) {
    #nav-mobile {
        width: 320px;
        left: -320px;
    }
}

#divider-mobile-navigation {
    background-color: #878785;
    height: 15px;
    display: none;
}

#menu-fakt-mobile {
    background-color: #e5e5e5;
}

#menu-fakt-mobile ul {
    border-top: 1px solid #a4a4a4;
}

#menu-fakt-mobile li {
    border-bottom: 1px solid #a4a4a4;
}

#menu-fakt-mobile li a {
    text-transform: none;
    color: #a4a4a4;
}


#menu-fakt-mobile li a.open-submenu {
    border-left: 1px solid #a4a4a4;
    border-bottom: 1px solid #a4a4a4;
}

#nav-mobile #menu-fakt-mobile li a:hover,
#nav-mobile #menu-fakt-mobile li.nav-link-aktiv>a,
#nav-mobile #menu-fakt-mobile li.nav-link-aktiv .main-menu a,
#menu-fakt-mobile li li.nav-cur>a {
    background-color: #ddd9d5;
    color: #a4a4a4;
}

#nav-mobile #menu-fakt-mobile>ul>li>a:hover,
#nav-mobile #menu-fakt-mobile>ul>li>.main-menu>a:hover,
#nav-mobile #menu-fakt-mobile>ul>li.nav-aktiv>.main-menu>a,
#nav-mobile #menu-fakt-mobile>ul>li.nav-aktiv {
    background-color: #d3cec8;
}

#nav-mobile #menu-fakt-mobile li li a {
    color: #000;
}

#nav-mobile #menu-fakt-mobile li a.open-submenu:hover:before {
    color: #000;
}


.news-list-date {
    font-size: 1.4rem;
}

.news-single .news-img-wrap img {
    width: 100%;
}

.news-single ul.pager li {
    display: block;
}

.news-single ul.pager li.previous {
    float: right;
}

.news-single ul.pager li.next {
    float: left;
}

.news-template-2.article {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #cccccc;
}

.news-template-2 .teaser-text p {
    margin-bottom: 2rem;
}

.news-template-2 .news-img-wrap img {
    width: 100%;
    height: auto;
}

.news-template-2 .news-list-date {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.news-template-2 .button_link {
    background: var(--color-primary);
    color: var(--color-white);
}

.news-template-2 .button_link:hover,
.news-template-2 .button_link:focus {
    background: #198bb4;
    color: var(--color-white);
}


.frame-default .news-single ul.pager li a {
    color: var(--color-primary);
}

.frame-default .news-single ul.pager li {
    padding-left: 0;
}

.frame-default .news-single ul.pager li.previous::before {
    display: none;
}

.frame-default .news-single ul.pager li.next::before {
    display: none;
}

.news-img-caption {
    font-size: 1.2rem;
    padding-top: 3px;
    font-style: italic;
}

.password-visible-switch {
    position: relative;
}

.password-visible-switch .visible-switch {
    content: "";
    position: absolute;
    top: 18px;
    right: 10px;
    width: 25px;
    height: 22px;
    cursor: pointer;

    background-repeat: no-repeat;
    background-image: url('../img/pw_view.png');
    background-position: center center;
}

.password-visible-switch input[type=password]+.visible-switch {
    background-image: url('../img/pw_view_.png');
}


/* Autocomplete --------------------------------  */


.autoComplete_wrapper {
    position: relative;
}

.autoComplete_wrapper>ul {
    position: absolute;
    max-height: 226px;
    min-width: 300px;
    overflow-y: auto;
    box-sizing: border-box;
    left: 0;
    right: 0px;
    margin: 2px 0 0 0;
    padding: 0;
    z-index: 5;
    list-style: none;
    background-color: var(--color-white);
    border: 1px solid rgba(33, 33, 33, 0.07);
    box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
    outline: none;
    transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    -webkit-transition: opacity 0.15s ease-in-out;
}


.autoComplete_wrapper>ul[hidden],
.autoComplete_wrapper>ul:empty {
    display: block;
    opacity: 0;
    transform: scale(0);
}

.autoComplete_wrapper>ul>li {
    margin: 0.3rem;
    padding: 0.3rem 0.5rem;
    text-align: left;
    font-size: 1.8rem;
    color: var(--color-text);
    background-color: var(--color-white)fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
    display: flex;
    gap: 5px;
}

.autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: rgba(25, 139, 180, 1);
    font-weight: bold;
}

.autoComplete_wrapper>ul>li:hover {
    cursor: pointer;
    background-color: rgba(25, 139, 180, 0.1);
}

.autoComplete_wrapper>ul>li[aria-selected="true"] {
    background-color: rgba(25, 139, 180, 0.1);
}

.autoComplete_wrapper>ul>li .city {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.autoComplete_wrapper>ul>li .zip {
    display: flex;
    align-items: center;
    font-weight: 100;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
}

@media only screen and (max-width: 600px) {
    .autoComplete_wrapper>ul {
        right: 0px;
    }
}

#expert-search-filterbar .autoComplete_wrapper>ul {
    right: -210px;
}


@media (max-width:33.75em) {
    #expert-search-filterbar .autoComplete_wrapper>ul {
        right: 0px;
    }
}

.frame-default .autoComplete_wrapper ul li::before {
    display: none;
}

figure.image,
.news-img-wrap .mediaelement-image {
    position: relative;
}

span.copyright-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #e5e5e5;
    color: var(--color-primary);
    padding: 5px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 2rem;
    line-height: 1.1;
    z-index: 1;
    cursor: pointer;

    display: none;
}


span.copyright-icon~span.copyright {
    /*display:none;*/
    position: absolute;
    /*top:0px;*/
    bottom: 0px;
    right: 0px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-white);

    /*
    padding:6px;
    padding-right:40px;
    padding-left:10px;
    font-size:1.4rem;
    */

    font-size: 1.2rem;
    padding: 3px;
    padding-right: 5px;
    padding-left: 5px;
    /*
    letter-spacing:0.5px;
    line-height:1.5;

    text-orientation: sideways-right;
    writing-mode: vertical-rl;
    transform: translateZ(0) rotate(180deg);
    */
}

.frame-custom-34 span.copyright-icon~span.copyright,
.document-section--stage span.copyright-icon~span.copyright {
    top: 0px;
    bottom: auto;
}

@media (max-width:1140px) {
    .document-section--stage span.copyright-icon~span.copyright {
        right: calc((100% - 100vw) / 2);
    }
}


.proof-type-selection .proof-type-menu {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    margin-top: 15px;
}

.proof-type-selection .proof-type-menu-item {
    cursor: pointer;
    font-size: 1.4rem;
    padding: 0.7rem 1rem;
    background-color: #e0e0e0;
    margin-bottom: 1px;
    margin-right: 1px;
    box-sizing: border-box;
    width: calc((100% / 3) - 3px);
}

.proof-type-selection .proof-type-menu-item.open,
.proof-type-selection .proof-type-menu-item:hover {
    background-color: #3398D8;
    color: var(--color-white);
}

.proof-type-selection .proof-type-item.closed {
    display: none;
}

.proof-type-item .row__title {
    margin-top: 0;
}

.proof-list .program-group {
    font-weight: bold;
    font-style: italic;
}


/* #67480 - accessible headlines */
.head-1 {
  font-size: var(--h1-font-size);
  font-weight: bolder;
  color: var(--color-headline);
}

.head-2 {
  font-size: var(--h2-font-size);
  font-weight: 400;
  color: var(--color-headline);
}

.head-3 {
  font-size: var(--h3-font-size);
  font-weight: 400;
  color: var(--color-headline);
}

.head-4 {
  font-size: var(--h4-font-size);
  font-weight: 400;
  color: var(--color-headline);
}

.copy {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
}

.small {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text);
}

body.fbk,
body.fu,
body.nwp {
    .l-column.l-column--tiny {
        @media (min-width: 61.25em) {
            width: 33.333%;
        }
    }

    .ce-column {
        display: flex;
        justify-content: center;
    }
}

.c-iframe-privacy-wrapper {
    display: grid;
    margin-bottom: 2rem;
}

@media (min-width: 61.25em) {
    .c-iframe-privacy-wrapper {
        margin: 0 2rem 2rem;
    }
}

.c-iframe-privacy__caption {
    margin: 1rem 0 0;
}

.c-iframe-privacy {
    position: relative;
}



.c-iframe-privacy__content {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    box-sizing: border-box;
    position: relative;
}

.c-iframe-privacy__content img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.c-iframe-privacy__content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.c-iframe-privacy__text {
    z-index: 2;
    color: var(--color-black);
    font-size: 1.4rem;
    max-width: 75%;
    margin-bottom: 1.2rem;
}

.c-iframe-privacy__text a {
    color: var(--color-black);
    text-decoration: underline;
}

@media (min-width: 33.75em) {
    .c-iframe-privacy__text {
        font-size: 1.6rem;
    }
}

@media (min-width: 61.25em) {
    .c-iframe-privacy__text {
        font-size: 2rem;
    }
}

.c-iframe-privacy__badge {
    background-color: #FEEFDF;
    color: #30302F;
    display: inline-flex;
    padding: .2rem .6rem;
    align-items: center;
    justify-content: center;

}
.c-iframe-privacy__badge svg {
    margin-right: .8rem;
}

.c-iframe-privacy__head {
    color: var(--color-black);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

@media (min-width: 33.75em) {
    .c-iframe-privacy__head {
        font-size: 3.5rem;
    }
}

@media (min-width: 61.25em) {
    .c-iframe-privacy__head {
        font-size: 5rem;
    }
}

.c-iframe-privacy__text .c-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.c-iframe-privacy > .u-aspect-ratio-16x9 {
    display: none;
}

.c-iframe-privacy.iframe-loaded > .u-aspect-ratio-16x9 {
    display: block;
}

.c-iframe-privacy.iframe-loaded .c-iframe-privacy__content {
    opacity: 0;
    pointer-events: none;
}

.c-iframe-privacy iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;

}

.c-iframe-privacy.iframe-loaded iframe {
    opacity: 1;
    pointer-events: auto;
}

figcaption.video-caption {
    display: none;
}

/* #70578 update - update pagination */
.f3-widget-paginator li.disabled span {
    opacity: 0.5;
}

.f3-widget-paginator li.previous a,
.f3-widget-paginator li.previous span {
    font-size: 0;
    display: inline-block;
    padding: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--color-white);
    background-image: url("../img/slider_arrow_left.png");
    background-position: left center;
    background-repeat: no-repeat;
}

.f3-widget-paginator li.next a,
.f3-widget-paginator li.next span {
    font-size: 0;
    display: inline-block;
    padding: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--color-white);
    background-image: url("../img/slider_arrow_right.png");
    background-position: right center;
    background-repeat: no-repeat;
}

.f3-widget-paginator li.first a,
.f3-widget-paginator li.first span {
    font-size: 0;
    display: inline-block;
    padding: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    background-color: var(--color-white);
    background-position: 38% center, 62% center;
    background-image: url("../img/slider_arrow_left.png"), url("../img/slider_arrow_left.png");
    background-repeat: no-repeat, no-repeat;
}

.f3-widget-paginator li.last a,
.f3-widget-paginator li.last span {
    font-size: 0;
    display: inline-block;
    padding: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    background-color: var(--color-white);
    background-position: 38% center, 62% center;
    background-image: url("../img/slider_arrow_right.png"), url("../img/slider_arrow_right.png");
    background-repeat: no-repeat, no-repeat;
}

.f3-widget-paginator li.previous a:before,
.f3-widget-paginator li.previous span:before,
.f3-widget-paginator li.next a:before,
.f3-widget-paginator li.next span:before,
.f3-widget-paginator li.first a:before,
.f3-widget-paginator li.first span:before,
.f3-widget-paginator li.last a:before,
.f3-widget-paginator li.last span:before {
    font-size: 1.8rem;
    content: " ";
    display: inline;
    line-height: auto;
}


.button-v2 {
    padding: 0.5rem 1.5rem;
}

.button-v2.button-v2--with-icon {

}

.button-v2.button-v2--eee {
    background-color: var(--color-primary);
}

.button-v2.button-v2--fkh {
    background-color: var(--color-secondary);
}

.grid-30-70 {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 2rem;
    width: 100%;
}

.grid-30-70__right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-30-70__compartment {
    padding-top: 5px;
    padding-bottom: 5px;
}

.compartment-element {
    position: relative;
    padding-left: 30px;
}

.compartment-element:not(:last-child) {
    padding-bottom: 5px;
}

/* Icon line support - reserves space for icons even if only some lines have them */
.compartment-element > i {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 4px;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Different icon types */
i.icon-user {
    background-image: url("../img/v2/user.svg");
}

i.icon-company {
    background-image: url("../img/v2/map-pin.svg");
}
i.icon-phone {
    background-image: url("../img/v2/phone.svg");
}
i.icon-mail {
    background-image: url("../img/v2/mail.svg");
}
i.icon-link {
    background-image: url("../img/v2/link.svg");
}

i.icon-eee {
    background-image: url("../img/v2/icon_eee.svg");
}

i.icon-fkh {
    background-image: url("../img/v2/icon_fkh.svg");
}


.badge {
    padding: 0.4rem 1rem 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
}

.badge--eee {
    color: var(--color-white);
    background-color: var(--color-primary-dark);
}

/* 73956 */
/* Language Autosuggest Styles */
.checkbox-group-language {
    overflow: visible !important;
}

.language-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.language-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--color-light-grey);
    border-radius: 2rem;
    font-size: 16px;
    min-height: 36px;
}

.language-chip svg {
    margin-right: 4px;
}

.language-chip--selected {
    background: var(--color-light-green);
    color: var(--color-dark-green);
    cursor: pointer;
}

.language-chip--selected:hover {
    opacity: 0.85;
}

.language-chip__remove {
    margin-left: 8px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    padding: 0;
    line-height: 1;
    color: #6c757d;
}

.language-chip__remove:hover {
    color: #dc3545;
}

.language-autosuggest-wrapper {
    position: relative;
    width: 100%;
}

.language-suggestions {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: #ffffff !important;
    border: 2px solid #007bff !important;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    z-index: 99999 !important;
    margin-top: 2px;
    opacity: 1 !important;
}

.language-suggestions[style*="display: block"] {
    display: block !important;
}

.language-suggestion-item {
    padding: 10px 12px !important;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    background-color: #ffffff !important;
    color: #212529 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.language-suggestion-item:hover,
.language-suggestion-item.active {
    background-color: #e7f3ff !important;
    color: #000000 !important;
}

.language-suggestion-item:last-child {
    border-bottom: none;
}

.language-suggestion-item strong {
    font-weight: 600 !important;
    color: #0056b3 !important;
}

/* Primary Language Chips */
.primary-language-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--color-light-grey);
    border-radius: 2rem;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    user-select: none;
    min-height: 36px;
}

.primary-language-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.primary-language-chip__checkmark {
    width: 0;
    margin-right: 0;
    opacity: 0;
    transform: scale(0.3);
    transition: width 0.3s ease, margin-right 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.primary-language-chip--selected {
    background: var(--color-light-green);
    color: var(--color-dark-green);
    padding-left: 8px;
}

.primary-language-chip--selected .primary-language-chip__checkmark {
    width: 24px;
    margin-right: 4px;
    opacity: 1;
    transform: scale(1);
}

.primary-language-chip:hover {
    opacity: 0.85;
}

.primary-language-chip__label {
    line-height: 1;
}

/* #73961 - Additional FU Mail addresses */
.fu-mail-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.fu-mail-row .fu-mail-input-wrapper {
    flex: 1;
}

.fu-mail-row .fu-mail-input {
    width: 100%;
    box-sizing: border-box;
}

.fu-mail-row .fu-mail-error {
    color: #c00;
    font-size: 12px;
    display: none;
}

.fu-mail-row .fu-mail-remove {
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.8rem

}

.fu-mail-row .fu-mail-input--error {
    border-color: #c00;
}

.fu-mail-row .fu-mail-error--visible {
    display: block;
}

.fu-mail-row .fu-mail-remove--hidden {
    display: none;
}

#fuMailCreateMore:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* FKH SEARCH FORM STYLING START */

/* issue: #74481 */
/* https://eee.ddev.site/fuer-experten/landing-page-fkh */
.expert-search-quickform.expert-search-quickform--fkh {
    background: blue;
    color: var(--color-white);
    padding: 10rem 2rem 2rem;
    position: relative;
    bottom: unset;
    left: unset;
    background-size: cover;
    background-position: center center;
    background-image: url('../img/csm_shutterstock_Alexander-Raths_182175542_fd729801ac.jpg');
}

@media (min-width: 61.25em) {
    .expert-search-quickform.expert-search-quickform--fkh {
        padding: 15rem 4rem 4rem;
    }
}

.expert-search-quickform.expert-search-quickform--fkh .expert-search-quickform-wg {
    background-color: rgba(0 162 212 / .9);
    margin: 0;
}

.expert-search-quickform.expert-search-quickform--fkh .expert-search-quickform-headline {
    color: var(--color-white);
    font-size: 3rem;
}

@media (min-width: 61.25em) {
    .expert-search-quickform.expert-search-quickform--fkh .expert-search-quickform-headline {
        font-size: 3rem;
    }
}

.expert-search-quickform.expert-search-quickform--fkh [type='submit'] {
    color: var(--color-white);
    background-color: transparent;
    border-color: 1px solid var(--color-white);
}
.expert-search-quickform.expert-search-quickform--fkh .f-field-group {
    display: flex;
    gap: 0.8rem;
}
.expert-search-quickform.expert-search-quickform--fkh .f-field-group .f-field {
    flex-basis: calc(100%/3);
}
.expert-search-quickform.expert-search-quickform--fkh .f-field--search label,
.expert-search-quickform.expert-search-quickform--fkh .f-field--umkreis label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.expert-search-quickform.expert-search-quickform--fkh .m-toggle {
    color: var(--color-white);
}
.expert-search-quickform.expert-search-quickform--fkh .expert-search__advanced-toggle::before {
    background-image: url("../img/ext_arrow_white.png");
}
/* FKH SEARCH FORM STYLING END */

/* FKH SEARCH RESULT STYLING START */
/* issue: #74481 */
.expert-search-result .expertendb_single.expertendb_single--fkh .toggle__icon::before {
    background-image: url("../img/icon_plus_fkh.png");
}

.expert-search-result .expertendb_single.expertendb_single--fkh .toggle--open .toggle__icon::before {
    background-image: url("../img/icon_minus_fkh.png");
}

.expert-search-result .expertendb_single.expertendb_single--fkh .header-text {
    background-image: none;
    padding-left: 0px;
}

.expertendb_single.expertendb_single--fkh .header {
    background: var(--color-light-grey);
    color: var(--color-headline);
}

.expert-search-result .expertendb_single.expertendb_single--fkh .expertendb_single_box {
    border-color: var(--color-light-grey);
}

.expert-search-result .expertendb_single.expertendb_single--fkh .toggle__control {
    background-color: var(--color-light-grey);
}

.expert-search-result .expertendb_single.expertendb_single--fkh .toggle__control h4 {
    color: var(--color-headline);
}

/* V2 Header Layout - issue: #73062 */
.expertendb_single.expertendb_single--v2 .header .badge--eee,
.expertendb_single.expertendb_single--v2 .header .badge--fkh {
    color: var(--color-white);
    background-color: var(--color-primary-dark);
}

.expertendb_single.expertendb_single--v2.expertendb_single--fkh .header .badge--fkh {
    color: var(--color-text);
    background-color: var(--color-white);
}

.expertendb_single.expertendb_single--v2 .header .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.expertendb_single.expertendb_single--v2 .header .header-badges {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 30em) {
    .expertendb_single.expertendb_single--v2 .header .header-badges {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 8px;
    }
}

.expert-search-result .expertendb_single.expertendb_single--v2 .header-text {
    text-transform: capitalize;
}

@media (max-width: 30em) {
    .expertendb_single.expertendb_single--v2 .header-text {
        margin-bottom: 0px;
    }
}

.expertendb_single.expertendb_single--v2 .header .header-badges .eee-house,
.expertendb_single.expertendb_single--v2 .header .header-badges .fkh-waves {
    flex-shrink: 0;
    margin-right: 4px;
}

.expertendb_single.expertendb_single--v2 .header .c-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.expertendb_single.expertendb_single--v2 .header .c-column {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
}

.expertendb_single.expertendb_single--v2 .telefon,
.expertendb_single.expertendb_single--v2 .email {
    font-size: 100%;
}

.expertendb_single.expertendb_single--v2 .header .c-column:last-child {
    margin-bottom: 0;
}

@media (min-width: 46.25em) {
    .expertendb_single.expertendb_single--v2 .header .c-column {
        width: 33.333%;
        padding-right: 2rem;
        margin-bottom: 0;
    }

    .expertendb_single.expertendb_single--v2 .header .c-column:last-child {
        padding-right: 0;
    }
}


.fkh-waves {
    width: 20px;
    height: 20px;
    padding: 0 !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MDQ5MyAxNi42OTVDNC4wNzU0NiAxNi4wODk0IDMuMzA2NCAxNC41NzAyIDMuMzA2NCAxMi41MDY4QzMuMzA2NCAxMC4wNDcxIDUuMDkxNDYgOS4zMzkzMyA1LjA5MTQ2IDcuNDI2MTJDNS4wOTE0NiA1LjEyNyA0LjU0MTU4IDMuOTg3NTkgNC4yNjc1NiAzLjMwNjY0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTEwLjIwNiAxNi42OTVDOS44NzY0OSAxNi4wODk0IDkuMTA3NDIgMTQuNTcwMiA5LjEwNzQyIDEyLjUwNjhDOS4xMDc0MiAxMC4wNDcxIDEwLjg5MjUgOS4zMzkzMyAxMC44OTI1IDcuNDI2MTJDMTAuODkyNSA1LjEyNyAxMC4zNDI2IDMuOTg3NTkgMTAuMDY4NiAzLjMwNjY0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTE2LjAwNyAxNi42OTVDMTUuNjc3NSAxNi4wODk0IDE0LjkwODQgMTQuNTcwMiAxNC45MDg0IDEyLjUwNjhDMTQuOTA4NCAxMC4wNDcxIDE2LjY5MzUgOS4zMzkzMyAxNi42OTM1IDcuNDI2MTJDMTYuNjkzNSA1LjEyNyAxNi4xNDM2IDMuOTg3NTkgMTUuODY5NiAzLjMwNjY0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9zdmc+");
}

.fkh-waves.fkh-waves--large {
    width: 45px;
    height: 45px;
}

.eee-house {
    width: 20px;
    height: 20px;
    padding: 0 !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuOTUwMTk1IDEwLjE2NzJMMTAgMi44ODg2N0wxOS4wNDk5IDEwLjE2NzIiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMS4zNTk4NyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik00LjExMjMgMTAuNDUwMlYxNy4xMTE0SDE1Ljg4NzJWMTAuNDUwMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjM1OTg3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

.eee-house.eee-house--large {
    width: 45px;
    height: 45px;
}

.fkh-waves.fkh-waves--white {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MDQ5MyAxNi42OTVDNC4wNzU0NiAxNi4wODk0IDMuMzA2NCAxNC41NzAyIDMuMzA2NCAxMi41MDY4QzMuMzA2NCAxMC4wNDcxIDUuMDkxNDYgOS4zMzkzMyA1LjA5MTQ2IDcuNDI2MTJDNS4wOTE0NiA1LjEyNyA0LjU0MTU4IDMuOTg3NTkgNC4yNjc1NiAzLjMwNjY0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTEwLjIwNiAxNi42OTVDOS44NzY0OSAxNi4wODk0IDkuMTA3NDIgMTQuNTcwMiA5LjEwNzQyIDEyLjUwNjhDOS4xMDc0MiAxMC4wNDcxIDEwLjg5MjUgOS4zMzkzMyAxMC44OTI1IDcuNDI2MTJDMTAuODkyNSA1LjEyNyAxMC4zNDI2IDMuOTg3NTkgMTAuMDY4NiAzLjMwNjY0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTE2LjAwNyAxNi42OTVDMTUuNjc3NSAxNi4wODk0IDE0LjkwODQgMTQuNTcwMiAxNC45MDg0IDEyLjUwNjhDMTQuOTA4NCAxMC4wNDcxIDE2LjY5MzUgOS4zMzkzMyAxNi42OTM1IDcuNDI2MTJDMTYuNjkzNSA1LjEyNyAxNi4xNDM2IDMuOTg3NTkgMTUuODY5NiAzLjMwNjY0IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9zdmc+") !important;
}

.eee-house.eee-house--white {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTIiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA1MiA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuODE0NDUgMjQuNDQ1OEwyNS45NjI3IDUuMDI0MTdMNTAuMTEwOSAyNC40NDU4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMuNjI4NjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTAuMjUyOSAyNS4yMDEzVjQyLjk3NTlINDEuNjcyN1YyNS4yMDEiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMy42Mjg2MyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}

.expertendb_single.expertendb_single--v2 div[class^="fkhSpecialization-"] + h4 {
    margin-top: 1.3334em;
}

.homepage-stage:has(h1.head-1) .expert-search-quickform {
    bottom: calc(var(--h1-font-size) * 1.25 + 20px + 2rem);
}

.homepage-stage:has(h1.head-1) h1.head-1 {
    margin-top: 2rem;
}
    
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.button-v2 {
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}

.button-v2.button--primary {
    background-color: var(--color-primary);
    color: var(--color-black);
}

.button-v2.button--secondary {
    background-color: var(--color-secondary);
    color: var(--color-black);
}

.button-v2.with-icon::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
}

.button-v2.button--primary.with-icon::before {
  background-image: url("../img/button_eee.png");
}

.button-v2.button--secondary.with-icon::before {
  background-image: url("../img/button_fkh.png");
}
