
:root {
    --c-yellow: #fbd035;
    --c-lighter-blue: #f2f2f2  !important;;
    --bkui_blue-3: #23386f !important;
    --bkui_blue: #23386f !important;
    --bkui_blue-2: #23386f !important;
    --c-blue: #243a74 !important;;
    --c-base: #243a74 !important;;
    --bkui_light-blue: #ffffff !important;;
    --bkui_gray-4: #ffffff !important;
    --bkui_dark-blue-2: #b4c7df !important;
}


.bkui_table > table tbody > tr:nth-child(2n+1) > td,
.bkui_table > table tbody > tr:nth-child(2n+1) > th {
    color: var(--bkui_heading) !important;
    background-color: var(--bkui_light-blue) !important;
}

.section-beraterportal .info-msg {

    color: var(--bkui_heading) !important;
    background-color: var(--bkui_light-blue) !important;

}

.bkui_btn:hover {
    background-color: #314377 !important;
    border-color: #314377 !important;
    color: #b4c6e0 !important;
}

.bkui_btn:focus{
    background-color: #b4c7df !important;
    border-color: #314377 !important;
    color: #314377 !important;
}

.section-beraterportal {
    color: #314377;
    padding-bottom: 27px;
    padding-top: 50px;
}


.select:before {
    all: unset;
}

/* Container wie dein normales Select */
.select2-container .select2-selection--single {
    height: 5.6rem; /* feste Höhe */
    border: .1rem solid #dadee3;
    border-radius: .6rem;
    padding: 0 3.3rem 0 1.3rem; /* Platz für Icon rechts */
    background: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    display: flex; /* Flex hilft bei Mittigsetzung */
    align-items: center; /* Text vertikal mittig */
    box-sizing: border-box;
}

/* Text im Inneren */
.select2-container .select2-selection__rendered {
    padding: 0;
    line-height: normal; /* Flex kümmert sich um Zentrierung */
    flex: 1; /* nimmt restliche Breite ein */
}

/* Standard-Pfeil verstecken */
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 0;
    height: 0;
    display: none;
}

/* Pfeil-Icon bleibt absolut positioniert */
.select2-container .select2-selection--single::after {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: .9rem;
    background-image: url(../images/svg/arrow-down.svg);
    background-size: 1.5rem .9rem;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 1.7rem;
    pointer-events: none;
}

/* Optional: beim Öffnen drehen */
.select2-container--open .select2-selection--single::after {
    transform: rotate(180deg);
}

/* Fokus/Hover – nur Border-Farbe ändern wie bei dir */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-selection--single:hover {
    border-color: #c9d0d6; /* passe ggf. an */
}

/* Dropdown an deinen Stil angleichen */
.select2-container .select2-dropdown {
    border: .1rem solid #dadee3;
    border-radius: .6rem;
    overflow: hidden;
}

.select2-results__option {
    padding: 1.2rem 1.3rem;
    font-size: 1.6rem;
    font-family: "Source Sans Pro", sans-serif;
}

/* Disabled-Zustand (optional) */
.select2-container--disabled .select2-selection--single {
    background: #f6f8fa;
    color: #98a2ad;
    cursor: not-allowed;
}


.select2-container--open .select2-dropdown {
    top: 100% !important; /* unterhalb der Auswahl */
    bottom: auto !important;
}


.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
}


/* rote Markierung im Dropdown */
.select2-results__option .marked-opt {
    background: #b4c6e0 !important;
    color: #fff !important;
    padding: 4px 6px;
    border-radius: 4px;
}

/* Badge im Select2-Eingabefeld rechts */
.select2-container .count-badge {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #b4c6e0;
    color: #314479;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
    line-height: 1.4;
    display: none; /* nur einblenden wenn > 0 */
    z-index: 2;
}

.select2-container .count-badge .reset-x {
    background: transparent;
    border: 0;
    color: #314479;
    margin-left: 6px;
    cursor: pointer;
    font-size: 12px;
}


@media (max-width: 767px) {
    .grid__col {
        margin-bottom: 10px; /* Adjust margin for mobile */
        max-width: 100%; /* Ensure full width on mobile */
        flex: 0 0 100%; /* Full width flex on mobile */
    }
}

@media (min-width: 768px) {
    .grid .grid__col--size-1 {
        max-width: 48.4%;
        flex: 0 0 48.4%;
    }

    .grid .grid__col--size-2 {
        max-width: 25.4%;
        flex: 0 0 25.4%;
    }
}

@media (min-width: 768px) {
    .page-berater-detail .section-alt {
        padding: 70px !important;
    }
}







.form.form--login .info-msg,
.form.form--login .success-msg,
.form.form--login .warning-msg,
.form.form--login .error-msg {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 3px 3px 3px 3px;
}

.form.form--login .info-msg {
    color: #059;
    background-color: #BEF;
}

.form.form--login .success-msg {
    color: #270;
    background-color: #DFF2BF;
}

.form.form--login .warning-msg {
    color: #9F6000;
    background-color: #FEEFB3;
}

.form.form--login .warning-msg h2 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #9F6000;
}

.form.form--login .error-msg {
 
    color: #D8000C;
    background-color: #FFBABA;
}


.form.form--login .default-msg {
    color: #606060;
    background-color: #d5d3d3;
}

.icon-svg{
    width: 22px;
    height: 22px;
}

.icon-svg {
    color: #233971;
    fill: #ffffff;
}

.list-actions .icon-svg{
    width: 26px;
    height: 26px;
}

.profile__aktueller__hinweis{
    margin-bottom: 0;
}

.section__body{
    min-height: 400px;
}