@font-face {
    font-family: 'museoSans-Light';
    src: url('fonts/museoSans_300.otf') format('opentype');
}

@font-face {
    font-family: 'museoSans-Regular';
    src: url('fonts/museoSans_500.otf') format('opentype');
}

@font-face {
    font-family: 'museoSans-Bold';
    src: url('fonts/museoSans_700.otf') format('opentype');
}

@font-face {
    font-family: 'VEH-Regular';
    src: url('fonts/veh.TTF') format('truetype');
}

@font-face {
    font-family: 'VEH-Bold';
    src: url('fonts/veh_bold.TTF') format('truetype');
}

:root {
    --primary-color: #F07A00;
    --primary-tint-color: #FFF8F0;
    --secondary-color: #352171;
    --secondary-tint-color: #F6F5F9;
    --light-secondary-color: #9A90B8;
    --primary-button-color: #F07A00;
    --primary-button-text-color: #fff;
    --primary-button-border-color: var(--primary-button-color);
    --primary-button-text-hover-color: #fff;
    --primary-button-hover-color: var(--secondary-color);
    --primary-button-border-hover-color: var(--secondary-color);
    --secondary-button-color: var(--secondary-color);
    --secondary-button-text-color: #fff;
    --secondary-button-hover-color: var(--primary-color);
    --secondary-button-text-hover-color: #fff;
    --accent-color: #594E4E;
    --light-accent-bg: #FFEDD7;
    --text-color: #594E4E;
    --secondary-text-color: var(--secondary-color);
    --label-text-color: var(--secondary-text-color);
    --input-border-color: #E1DEEA;
    --input-background-color: var(--secondary-tint-color);
    --input-text-color: var(--secondary-text-color);
    --header-color: #fff;
    --link-color: var(--primary-color);
    --link-hover-color: var(--secondary-color);
    --secondary-link-color: var(--secondary-color);
    --background-color: #fff;
    --light-background-color: var(--secondary-tint-color);
    --border-color: #E1DEEA;
    --border: 1px solid var(--border-color);
    --logo: url('images/logo.svg');
    --table-background: var(--secondary-tint-color);
    --table-background-hover: var(--primary-color);
    --empty-msg-bg: #F4F4FB;
    --border-radius-small: 8px;
    --border-radius-reg: 10px;
    --border-radius-large: 16px;
    --border-radius-card: 0;
    --text-danger: #ED1C24;
    --positive-color: #7FC241;
    --card-shadow: none;
    --card-border-color: var(--border-color);
    --card-header-color: var(--secondary-color);
    --heading-shadow: none;
    --heading-color: var(--secondary-color);
    --logo-width: 144px;
    --logo-height: 48px;
    --font-light: 'museoSans-Light', sans-serif;
    --font-reg: 'museoSans-Regular', sans-serif;
    --font-bold: 'museoSans-Bold', sans-serif;
    --veh-reg: 'VEH-Regular', sans-serif;
    --veh-bold: 'VEH-Bold', sans-serif;
}

/* BASELINE */

body {
    font-family: var(--font-light);
}

.text {
    color: var(--text-color);
}

.app-theme-white.app-container,
.app-theme-white .app-footer .app-footer__inner,
.app-theme-white .app-header {
    background-color: var(--background-color);
}

.navbar .logo-src {
    background-image: var(--logo);
    width: var(--logo-width);
    height: var(--logo-height);
    background-repeat: no-repeat;
    background-size: var(--logo-width);
    margin: 0;
}

.navbar .nav-item::after {
    color: var(--primary-color);
}

.btn {
    height: 56px;
    width: 100%;
    font-size: 18px;
    font-family: var(--font-bold);
    border-radius: var(--border-radius-reg);
    transition-property: background-color;
    transition-duration: 0.2s;
}

.btn-primary {
    background-color: var(--primary-button-color);
    border: var(--primary-button-border-color);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:focus-within,
    .btn.btn-primary.sr:hover,
    .btn.btn-primary.sr:focus-within {
        background-color: var(--secondary-button-color);
        border: var(--secondary-button-border-color);
    }

.btn-secondary {
    background-color: var(--secondary-button-color);
    border: var(--secondary-button-border-color);
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:focus-within {
        background-color: var(--primary-button-color);
        border: var(--primary-button-border-color);
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:focus-within,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:focus-within,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:focus-within {
    border: var(--border);
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
    font-size: 18px !important;
}

    input:-webkit-autofill::first-line {
        font-size: 18px;
    }

a {
    text-decoration: none !important;
}

a, .btn, .primary-link, .secondary-link, .hamburger {
    transition-property: all;
    transition-duration: 0.2s;
    cursor: pointer;
}

.primary-link {
    color: var(--link-color);
}

    .primary-link:hover,
    primary-link:focus-within {
        color: var(--link-hover-color);
    }

.subtitle {
    font-size: 38px;
    color: var(--secondary-color);
    font-family: var(--veh-bold);
}

/* --BASELINE END-- */
/* HEADER */
.admin {
    color: var(--text-color) !important;
}

.custom-header {
    width: 100%;
    position: absolute;
    background-color: var(--secondary-tint-color);
    height: 40px;
    padding: 0 30px;
    top: 0;
    left: 0;
    z-index: 111;
}

    .custom-header a {
        margin-left: 25px;
        color: var(--secondary-color);
    }

        .custom-header a:hover,
        .custom-header a:focus-within {
            color: var(--primary-color);
        }

.headerMenu {
    margin: auto;
    max-width: 1580px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* --HEADER END-- */


/* LOGIN */
.primary-title,
.secondary-title,
h1, [data-styletype="title"],
[data-styletype="Title"] {
    font-size: 56px;
    font-family: var(--veh-bold);
}

.primary-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.secondary-title {
    color: var(--secondary-color);
    margin-bottom: -15px;
}

input#BtnLogin, button#BtnLogin {
    margin-top: 30px;
}

h1 {
    color: var(--secondary-color);
}

input:not(.btn), input.form-control:not(.btn),
.sr .bb-selectfield-column select,
textarea.form-control {
    height: 56px !important;
    background-color: var(--input-background-color) !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-family: var(--font-reg);
    color: var(--secondary-color) !important;
    border: var(--border);
    border-radius: var( --border-radius-small);
}

    input:not(.btn):focus, input.form-control:not(.btn):focus,
    input:not(.btn):focus-within, input.form-control:not(.btn):focus-within {
        border-color: rgb(49, 130, 206);
        box-shadow: rgb(49, 130, 206) 0px 0px 0px;
    }

textarea.form-control {
    height: unset !important;
}


label {
    color: var(--label-text-color);
    font-family: var(--font-light);
}

.lid-container {
    margin-top: 125px;
    background-color: var(--secondary-tint-color);
    border-radius: var(--border-radius-large);
}

    .lid-container .col-sm-8 {
        display: flex;
        height: 56px;
        align-items: flex-end;
    }

        .lid-container .col-sm-8 > .bb-linefield {
            margin-left: 30px;
        }

            .lid-container .col-sm-8 > .bb-linefield::before {
                content: '\f061';
                font-family: "Font Awesome 5 Pro", sans-serif;
                color: var(--primary-color);
                position: absolute;
                margin-top: 0px;
                margin-left: 8px;
            }

    .lid-container .check-list {
        height: 100%;
    }

        .lid-container .check-list > div {
            display: flex;
            align-items: center;
        }

        .lid-container .check-list .form-group {
            margin: 0;
            color: var(--secondary-color);
            font-size: 16px;
        }

            .lid-container .check-list .form-group::before {
                content: '\f00c';
                font-family: "Font Awesome 5 Pro", sans-serif;
                color: var(--primary-color);
                position: absolute;
                margin-left: -15px;
            }

.login-services {
    background-color: var(--secondary-tint-color);
    margin-bottom: 15px;
    font-family: var(--font-light);
    height: 120px;
    color: var(--text-color);
    border-radius: var(--border-radius-large);
    max-width: 500px;
}

    .login-services .subtitle {
        font-size: 18px;
        font-family: var(--font-bold);
        color: var(--secondary-color);
    }

    .login-services > .row {
        display: flex;
        height: 100%;
        align-items: center;
    }

        .login-services > .row > div {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    .login-services .form-group {
        margin: 0;
    }

    .login-services > .row > .col-sm-3 {
        max-width: 90px;
    }

    .login-services > .row > .col-sm-8 {
        padding-left: 0;
        padding-right: 0;
    }

.login-row {
    justify-content: space-around;
}

    .login-row .col-sm-6:last-child {
        max-width: 500px;
    }

/* --LOGIN END-- */

/* --FOOTER-- */

.app-wrapper-footer {
    margin-top: 6.5rem;
}

.app-footer {
    padding: 6.5rem 15px;
}

    .app-footer,
    .app-footer .app-footer__inner,
    .app-theme-white .app-footer .app-footer__inner {
        height: auto;
        background-color: var(--secondary-color);
    }

.app-wrapper-footer .app-footer,
.app-wrapper-footer .app-footer .app-footer__inner {
    border: none;
}

.footer-content {
    max-width: 1640px !important;
    margin: auto;
}

.app-footer__inner,
.app-footer-left,
.footer-content,
.top-footer,
.bottom-footer {
    width: 100%;
}

    .top-footer h3 {
        margin-bottom: 1.5rem;
        font-size: 18px;
        font-family: var(--font-bold);
    }

    .top-footer a {
        margin-bottom: 1rem;
        display: block;
        font-family: var(--font-light);
        font-size: 16px;
    }

        .top-footer a:hover,
        .top-footer a:focus-within {
            text-decoration: underline !important;
        }

    .top-footer .col-sm-4 {
        margin-bottom: 1.5rem;
    }

    .footer-content a,
    .footer-content h3 {
        color: #fff;
    }

    .footer-content .col-sm-10 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-right: 50px;
    }

        .footer-content .col-sm-10 a {
            color: var(--light-secondary-color);
            margin-right: 30px;
        }

.bottom-footer {
    margin-top: 6.5rem;
    border-top: 1px solid #49377f;
}

    .bottom-footer > .row {
        padding-top: 30px;
    }

/* --FOOTER END-- */

/* --BANNER-- */

.banner {
    height: 180px;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
}

    .banner h1 {
        position: relative;
        padding-top: 0;
        margin-top: -15px;
        word-wrap: break-word;
    }

    .banner .primary-link {
        margin-left: 0px !important;
    }

    .banner::before {
        content: "";
        position: absolute;
        inset: 0px 0px -10%;
        width: 100%;
        background-color: var(--secondary-tint-color);
        clip-path: polygon(100% 0px, 100% 83%, 21% 100%, 12% 90%, 0px 95%, 0px 0px);
        bottom: 0px;
        height: 200px;
    }

    .banner.home {
        height: 230px;
    }

        .banner.home::before {
            height: 250px;
        }


        .banner.home .img-holder {
            display: none;
            text-align: right;
            margin-top: -340px;
            position: relative;
            z-index: 1000000;
        }

        .banner.home img {
            max-width: 500px;
        }

/* --BANNER END-- */

/* GEGEVENS */

.card {
    box-shadow: none;
    border: var(--border);
    border-radius: var(--border-radius-large);
}

.title-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 35px 0 15px;
    flex-wrap: wrap;
}

    .title-row .primary-link {
        margin-left: 25px !important;
    }

.gegevens-card {
    color: var(--secondary-color);
}

    .gegevens-card .bb-textfield span, .gegevens-card .bb-selectfield span {
        font-family: var(--font-reg);
        font-size: 16px;
    }


    .gegevens-card .title-row .bb-textfield span {
        font-size: 22px;
        font-family: var(--font-bold);
        color: var(--secondary-color);
    }

    .gegevens-card .form-group.bb-textfield.row {
        margin-bottom: 24px;
    }

    .gegevens-card .gegevens-row {
        margin-left: 25px;
    }

    .gegevens-card .text-danger {
        margin-top: 15px;
        margin-left: 25px !important;
    }

        .gegevens-card .text-danger:hover,
        .gegevens-card .text-danger:focus-within {
            color: #9a0025 !important;
        }

.icon-input {
    padding-right: 25px;
}

    .icon-input::before {
        content: '';
        position: absolute;
        left: -25px;
        width: 24px;
        height: 24px;
        top: -30px;
        background-repeat: no-repeat;
    }

    .icon-input.naam::before {
        background-image: url('images/icons/gebruiker.svg');
    }

    .icon-input.geslacht::before {
        background-image: url('images/icons/geslacht.svg');
    }

    .icon-input.telefoon::before {
        background-image: url('images/icons/telefoon.svg');
    }

    .icon-input.voorletters::before {
        background-image: url('images/icons/gebruiker.svg');
    }

    .icon-input.geboortedatum::before {
        background-image: url('images/icons/taart.svg');
    }

    .icon-input.mobiel::before {
        background-image: url('images/icons/mobiel.svg');
    }

    .icon-input.wachtwoord::before {
        background-image: url('images/icons/ww.svg');
    }

    .icon-input.mail::before {
        background-image: url('images/icons/mail.svg');
    }

    .icon-input.euro::before {
        background-image: url('images/icons/euro.svg');
    }

    .icon-input.home::before,
    .icon-input.huis::before {
        background-image: url('images/icons/huis.svg');
    }

    .icon-input.nummer::before {
        background-image: url('images/icons/hashtag.svg');
    }

    .icon-input.datum::before {
        background-image: url('images/icons/date.svg');
    }

    .icon-input.familie::before {
        background-image: url('images/icons/family.svg');
    }

    .icon-input.auto::before {
        background-image: url('images/icons/car.svg');
    }

    .icon-input.company::before {
        background-image: url('images/icons/bedrijf.svg');
    }


/* GEGEVENS END */

/* HOME */

.menuType {
    background-color: var(--primary-tint-color);
    text-align: center;
    border: none;
    width: 250px;
    height: 220px;
    display: flex;
    justify-content: center;
}

    .menuType svg {
        height: 88px;
    }

    .menuType:hover,
    .menuType:focus-within {
        background-color: var(--primary-color);
    }

        .menuType:hover .bb-textfield,
        .menuType:focus-within .bb-textfield {
            color: #fff;
        }

        .menuType:hover svg *,
        .menuType:focus-within svg * {
            fill: #fff;
            stroke: #fff;
        }

    .menuType .bb-buttonfield {
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100% + 30px);
        height: 100%;
    }

        .menuType .bb-buttonfield .btn {
            height: 100%;
            width: 100%;
            opacity: 0;
        }

    .menuType .bb-linefield-column > div {
        margin-left: 0 !important;
    }

    .menuType .bb-textfield {
        font-size: 22px;
        color: var(--secondary-color);
        font-family: var(--font-bold);
        margin-top: 25px;
    }

.contact-container {
    margin-top: 150px;
}

    .contact-container .contact-card {
        background-color: var(--primary-tint-color);
        border: none;
        color: var(--secondary-color);
    }

        .contact-container .contact-card .card-body {
            padding: 30px;
        }

        .contact-container .contact-card .contact-title {
            font-family: var(--font-bold);
            font-size: 22px;
            margin-left: 33px;
        }

        .contact-container .contact-card .bb-textfield {
            min-height: 52px;
            margin-bottom: 0;
        }

    .contact-container > .row:not(.bb-textfield) {
        margin-top: 35px;
    }

.contact-card .icon::before {
    content: '';
    background-image: unset;
    background-repeat: no-repeat;
    position: absolute;
    left: 15px;
    top: 5px;
    width: 100%;
    height: 100%;
}

.contact-card .icon.chat::before {
    background-image: url('images/icons/chat.svg');
}

.contact-card .icon.call::before {
    background-image: url('images/icons/telefoon2.svg');
}

.contact-card .icon.whatsapp::before {
    background-image: url('images/icons/whatsapp.svg');
}

.contact-card .icon.form::before {
    background-image: url('images/icons/mail2.svg');
}

.contact-card .icon.insurance::before {
    background-image: url('images/icons/insurance.svg');
}

.contact-card .icon.user::before {
    background-image: url('images/icons/user.svg');
}

button.btn.btn-primary.btn-action {
    display: flex;
    flex-direction: row;
    height: 50px;
    align-items: center;
    margin: 15px 0px 15px 15px;
    position: relative;
}

    button.btn.btn-primary.btn-action i {
        padding-right: 15px;
    }

table i.fa.fa-fragile {
    margin-left: 3px;
}


/* HOME END */


/* ENSURANCE */

.verzekering-card, [data-styletype="Tile"] {
    background-color: var(--secondary-tint-color) !important;
    border: none !important;
    text-align: center;
    border-radius: var(--border-radius-large) !important;
}

    [data-styletype="Tile"] .card-body * {
        color: var(--text-color);
        font-family: var(--font-light);
    }

    .verzekering-card svg {
        margin-left: -15px;
        height: 104px;
    }

    .verzekering-card .bb-linefield, [data-styletype="Tile"] .bb-linefield {
        min-height: 70px;
    }

    .verzekering-card .btn, [data-styletype="Tile"] .btn {
        background-color: #fff !important;
        color: var(--primary-color) !important;
        border: var(--border) !important;
        font-size: 15px;
        font-family: var(--font-bold);
    }

        .verzekering-card .btn:hover,
        [data-styletype="Tile"] .btn:hover,
        [data-styletype="Tile"] .btn:focus-within {
            background-color: var(--primary-color) !important;
            color: #fff !important;
            border-color: var(--primary-color) !important;
            font-size: 15px;
        }

    [data-styletype="Tile"] .bb-textfield:nth-child(2) span {
        font-size: 20px !important;
        word-wrap: break-word;
        font-family: var(--font-bold);
        color: var(--secondary-color);
        padding: 0;
    }

    [data-styletype="Tile"] .bb-buttonfield {
        position: absolute;
        bottom: 10px;
        width: 100%;
        left: 15px;
    }

    [data-styletype="Tile"] svg {
        margin-left: -15px;
        max-height: 104px;
        max-width: 104px;
        width: 100%;
        height: 100%;
    }

[data-styletype="Kentekenrow"] {
    margin-left: 5px;
}

div[data-type="kenteken"] input {
    height: 42px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: -6px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 20px !important;
    font-weight: 700;
}

.bb-textfield-column > [data-type="kenteken"] {
    background-color: #FECD23 !important;
    background-image: url(../../Images/kenteken_NL.svg) !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: left !important;
    outline: none;
    box-shadow: none !important;
    padding-left: 10px;
    height: 67px;
    padding-top: 6px;
    text-transform: uppercase !important;
    color: #000;
    font-weight: 700;
    overflow: hidden;
    border-radius: 3px !important;
    text-align: center !important;
    font-size: 20px !important;
    width: 310px;
    margin: 15px 0 15px 0;
    display: flex;
}

    .bb-textfield-column > [data-type="kenteken"] span {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 5px;
        font-size: 32px;
    }


.downloads {
    border: none;
    background-color: var(--secondary-tint-color);
}

    .downloads .btn {
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

        .downloads .btn em {
            margin-right: 15px;
        }

    .downloads .voowaarden {
        margin-top: 35px;
    }

        .downloads .voowaarden tr {
            display: flex;
            justify-content: flex-end;
            flex-direction: row-reverse;
            text-align: left;
            align-items: center;
            color: var(--secondary-color);
        }

            .downloads .voowaarden tr:hover
            .downloads .voowaarden tr:focus-within {
                color: var(--primary-color);
            }

            .downloads .voowaarden tr .fas {
                margin-right: 10px;
            }

/* ENSURANCE END*/

/* BOOTSTRAP FIXES */

.modal {
    background-color: rgb(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

    .modal .modal-content {
        border: none;
    }

        .modal .modal-content b {
            color: var(--primary-color);
            font-family: var(--veh-reg);
            font-weight: inherit;
            font-size: 20px;
        }

.lds-spinner {
    background-image: url(images/loader.svg);
    width: 120px;
    height: 120px;
    margin-left: calc(50% - 60px);
}

    .lds-spinner > div {
        display: none;
    }

.table-container {
    border: none;
    background-color: var(--secondary-tint-color);
}

.header-megamenu.nav > li > .nav-link.active {
    color: var(--primary-color);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff
}

.table-hover tbody tr:hover, .table-hover tbody tr:hover td,
.table-hover tbody tr:focus-within, .table-hover tbody tr:focus-within td {
    background-color: #F2F0F8
}

.table-responsive.nowrap .table th {
    font-size: 16px;
    color: var(--text-color) !important;
    padding: 0 15px 10px 15px !important;
    border: none;
}

.table th, .table td {
    border: none;
}

.table-hover tbody tr .extraInfo tr:hover td,
.table-hover tbody tr .extraInfo tr:focus-within td {
    background-color: rgba(000, 000, 000, 0.1);
}

.table-responsive.nowrap .table td, .table-responsive.nowrap .table th {
    color: var(--secondary-color);
    padding: 15px;
}

.table-responsive.nowrap > .table td:last-child i,
.table-responsive.nowrap > .dt-bootstrap4 td:last-child i {
    color: var(--primary-color);
}

.table-responsive.nowrap.clausuleTable .table-hover tbody tr .extraInfo tr td {
    padding-left: 20px !important;
}

.table-responsive.nowrap.clausuleTable .table-hover tbody tr:hover, .table-responsive.nowrap.clausuleTable .table-hover tbody tr:hover td,
.table-responsive.nowrap.clausuleTable .table-hover tbody tr:hover, .table-responsive.nowrap.clausuleTable .table-hover tbody tr:focus-within td {
    background-color: #fff !important;
}

.table-container .table-responsive.nowrap .dt-bootstrap4 .justify-content-between {
    padding: 0 25px;
}

.page-item.active .page-link, .pagination .active.page-number .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--primary-color);
    border-color: #dee2e6;
}

.clausules .btn {
    max-width: 160px;
}

.clausules .card-header {
    color: var(--secondary-color);
    font-size: 24px;
    height: auto;
    text-align: left !important;
    padding: 15px 15px 15px 5px;
    font-family: var(--veh-bold);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
input.form-control.is-invalid {
    border-color: var(--text-danger) !important;
}

.app-header .app-header__content.header-mobile-open {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    box-shadow: none;
    min-height: calc(100vh - 90px) !important;
    padding: 15px;
}

.hamburger {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-small);
    align-items: center;
}

    .hamburger:active {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

        .hamburger:active .hamburger-box span,
        .hamburger:active .hamburger-inner::before,
        .hamburger:active .hamburger-inner::after {
            background-color: #fff;
        }

    .hamburger-inner, .hamburger-inner::before,
    .hamburger-inner::after,
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: var(--secondary-color);
    }

.table-container .table-responsive.nowrap {
    margin-left: -20px;
    width: calc(100% + 40px);
}

.table-container .bb-tablefield > .table > tbody > tr > td:last-child, .table-container .bb-tablefield > .table > tbody > tr > td:first-child {
    max-width: 20px !important;
    width: unset !important;
}

.table-container .bb-tablefield .row-sub-icon {
    display: none;
}

.table-container .table-responsive.nowrap .table th:first-child, .table-container .table-responsive.nowrap .table th:last-child {
    width: unset !important;
    min-width: 50px !important;
}

.table-container .table-responsive.nowrap > .table td:last-child .fa-folder-open {
    display: none !important;
}

.table-container .table-responsive.nowrap .table td:first-child {
    text-align: left !important;
}

table.dataTable.table.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: #fff;
    box-shadow: none;
}

    table.dataTable.table.table-striped > tbody > tr:nth-of-type(2n+1) > * {
        box-shadow: none;
    }

iframe {
    width: 100%;
    min-height: 100vh;
    border: none;
}

.navbar .nav-item .nav-link {
    font-family: var(--font-light);
}

@media (max-width: 991.98px) {
    .navbar .nav-item .nav-link {
        color: var(--secondary-color);
        font-family: var(--font-bold);
        width: 100%;
        font-size: 22px;
    }

    .app-header .app-header__content .app-header-left .nav-item::after,
    .logoutContainer .nav-item::after {
        font-family: "Font Awesome 5 Pro", sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: var(--primary-color);
        position: absolute;
        right: 30px;
        margin-top: 12px;
    }

    .app-header .app-header__content .app-header-left .nav-item::after {
        content: '\f061';
    }

    .logoutContainer .nav-item::after {
        margin-top: -35px;
        content: '\f08b';
    }

    .navbar .nav-item .nav-link:hover,
    .navbar .nav-item .nav-link:active,
    .navbar .nav-item .nav-link:focus {
        color: var(--primary-color);
    }

    .app-header .app-header__content {
        background: #fff;
    }
}


@media (max-width: 997px) {
    .custom-header {
        display: none;
        visibility: hidden;
        opacity: 0;
        position: unset;
        padding: 0;
        width: unset;
        height: unset;
    }

    .app-header-inner {
        margin: 0;
        align-items: center;
        flex-direction: row-reverse;
    }
}

@media (max-width: 1089.99px) {
    [data-styletype="AanvullendeDekking"] > .show > .card-body {
        padding-bottom: 0;
    }

    [data-styletype="HoofdDekking"] > .show > .card-body > .row:first-child > .col-sm-9 {
        max-width: 70%;
        flex: 0 0 70%;
    }

    [data-styletype="HoofdDekking"] > .show > .card-body > .row:first-child > .col-sm-3 {
        max-width: 30%;
        flex: 0 0 30%;
    }

    [data-styletype="Collapsible"] .col-sm-9 {
        margin-bottom: 0;
    }

    [data-styletype="AanvullendeDekking"] > .show > .card-body > .row:last-child * {
        justify-content: flex-start;
    }

    [data-styletype="PakketOnderdeel"] [data-styletype="TotaalKolom"] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    [data-styletype="Collapsible"] .col-sm-3[data-align="Right"] {
        display: flex;
        justify-content: flex-start;
    }
}

@media (min-width: 1089.99px) {
    [data-styletype="PremieRow"] {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding-right: 10px;
    }

    [data-styletype="Collapsible"] .col-sm-3[data-align="Right"] {
        margin-left: -80px;
        margin-top: -35px;
    }

    [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > div > .card-body {
        padding-left: 30px;
    }

    [data-styletype="PakketOnderdeel"] > .show > .card-body > .row > .col-sm-12 {
        margin-top: -35px;
    }

    [data-styletype="Tile"] .card-body {
        min-height: 360px;
    }

    [data-styletype="Tile"] .bb-textfield:nth-child(2) {
        height: 70px;
    }

    [data-styletype="BasisDekking"] .col-sm-9, [data-styletype="BasisDekking"] .col-sm-3 {
        margin-bottom: 20px;
    }

    [data-styletype="PakketOnderdeel"] [data-styletype="TotaalKolom"] {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

@media (min-width: 1090px) {
    [data-styletype="Tile"] .card-body {
        min-height: 360px;
    }

    [data-styletype="Tile"] .bb-textfield:nth-child(2) {
        height: 70px;
    }

    .btn-row {
        max-width: 585px;
    }
}

@media (max-width: 1090px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        flex: 0 0 100%;
        max-width: 100%;
    }

    [data-styletype="ConfirmationRow"] {
        display: flex;
        flex-direction: row !important;
    }

        [data-styletype="ConfirmationRow"] > .col-sm-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }

    [data-styletype="ConfirmationPopup"] .bb-textfield {
        font-size: 18px;
    }

    .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-8, .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-9 {
        width: 80%;
        max-width: 80% !important;
    }

    .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-4, .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-3 {
        width: 20%;
        max-width: 20% !important;
        padding-top: 5px;
    }

    .lid-container {
        margin-left: -30px;
        padding: 30px;
        width: calc(100% + 60px);
    }

        .lid-container .col-sm-8 > .bb-linefield {
            margin-left: -6px;
        }

        .lid-container .check-list .form-group {
            margin: 0 0 0 15px;
        }

    .login-row .col-sm-6:last-child, .login-services {
        max-width: unset;
    }

        .login-services > .row {
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

            .login-services > .row > .col-sm-1 {
                width: 40px;
                padding: 0;
            }

            .login-services > .row > .col-sm-8 {
                flex: 0 0 calc(76.66667% - 40px);
                max-width: calc(76.66667% - 40px);
            }

    .primary-title, .secondary-title {
        font-size: 38px;
    }

    .login-row .primary-title {
        margin-bottom: 25px;
    }

    .right.login-container {
        margin-top: 125px;
    }

    .login-services svg {
        max-width: 40px;
    }

    .login-services > .row > .col-sm-3 {
        max-width: 70px;
    }

    .banner .primary-link {
        margin: 0 !important;
    }

    .app-header .app-header__logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: baseline;
    }
}

@media (min-width: 1089.99px) {
    .login-row hr {
        margin: 0;
        height: 450px;
        width: 1px;
        background-color: var(--border-color);
    }

    .lid-container {
        margin-top: 125px;
        padding: 30px 30px;
        position: relative;
        width: calc(100% + 60px);
        margin-left: -30px;
    }
}

/* --BOOTSTRAP FIXES END-- */

/* RESPONSIVE */

@media (min-width: 1720px) {
    .app-main .app-main__inner, .app-header-inner, .footer .footer-nav ul, .footer .footer-content {
        width: 1640px;
        margin: auto;
        box-shadow: none;
    }

    .app-header-inner {
        margin-top: 45px;
    }

    .footer .footer-content {
        padding: 0 30px;
    }

    .lid-container {
        border-radius: var(--border-radius-large);
    }
}

@media (min-width: 1240px) {
    .login-row {
        margin-top: 35px;
    }

        .login-row .col-sm-6 {
            max-width: 600px;
        }
}


@media (max-width: 767px) {
    .lid-container {
        margin-left: -30px;
        padding: 30px;
        width: calc(100% + 45px);
    }

    .footer-content .col-sm-10 {
        display: flex;
        align-items: self-start;
        flex-direction: column;
    }

        .footer-content .col-sm-10 a {
            margin-bottom: 1rem;
        }

    .footer-content .col-sm-2 {
        margin-bottom: 1rem;
    }

    .bottom-footer > .row {
        padding-top: 30px;
        flex-direction: column-reverse;
    }

    .bottom-footer {
        margin-top: 2.5rem;
    }

    [data-styletype="Formulier"] > .show > .card-body {
        padding: 0;
    }
}

/* --RESPONSIVE END-- */

/* SOFTRULES */

[data-styletype="TotalePremie"] .col-sm-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    text-align: right;
    flex: 0 0 35%;
    max-width: 35%;
}

[data-styletype="BasisDekking"] [data-styletype="Message"] span {
    color: var(--secondary-color) !important;
    font-size: 21px !important;
}

[data-styletype="HoofdDekking"] .show .card-body .card {
    padding: 10px 0 20px 0;
}

.bb-container.card.page.sr {
    border: none;
    background-color: transparent;
    max-width: 1140px;
    margin: 0 auto;
}

.row.pagination-row .btn.btn-primary.sr-nextpage,
.btn.btn-primary.sr-previouspage {
    width: fit-content;
    display: block;
    position: inherit;
    border-radius: var(--border-radius-reg);
}

[data-styletype="Formulier"] .bb-textfield-column [data-displaytype="Kenteken"] {
    background-color: #FECD23 !important;
    width: 310px !important;
    border: unset;
    font-size: 31px !important;
}

.sr.card {
    border: none;
    border-radius: unset;
    background-color: transparent;
}

    .sr.card[data-styletype="ReadonlyContainer"] {
        font-size: 16px;
        box-shadow: none;
        border-radius: var(--border-radius-reg);
        border: var(--border);
        margin: 25px 0;
        width: 90%;
        font-family: var(--font-bold);
        color: var(--secondary-color);
    }

        .sr.card[data-styletype="ReadonlyContainer"] label {
            font-family: var(--font-light) !important;
        }

    .sr.card[data-styletype="popup"] {
        background: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
    }

        .sr.card[data-styletype="popup"] .card {
            background-color: #fff;
            border-radius: var(--border-radius-small);
            padding: 10px 20px;
        }

[data-styletype="ConfirmationPopup"] .bb-textfield {
    font-size: 24px;
    color: var(--secondary-color);
    font-family: var(--font-reg);
    padding: 15px 0 30px 0;
}

[data-styletype="ConfirmationRow"] > :first-child .btn {
    background-color: transparent !important;
    color: var(--secondary-button-color) !important;
    border: 2px solid var(--secondary-button-color) !important;
}

    [data-styletype="ConfirmationRow"] > :first-child .btn:hover,
    [data-styletype="ConfirmationRow"] > :first-child .btn:focus-within {
        background-color: var(--secondary-color) !important;
        color: #fff !important;
        border: 2px solid var(--secondary-button-color) !important;
    }

[data-styletype="ReadonlyContainer"] .card-body > .row > div > .bb-textfield:first-child {
    font-family: var(--font-light);
    font-size: 14px;
    margin-top: 10px;
}

[data-styletype="Formulier"] [data-styletype="ReadonlyContainer"] .bb-textfield.isReadonly .bb-textfield-column {
    height: auto !important;
    max-width: unset !important;
    padding-right: 30px !important;
}

.grid.sr .row.sr:last-child .col-sm-12.sr .card .col-sm-4 {
    font-size: unset;
    font-weight: initial;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    padding-right: 0;
}

.bb-container.card.page.sr, [data-styletype="minimal"],
[data-styletype="minimal"] .card-header, [data-styletype="FormulierSlotvragen"],
[data-styletype="FormulierSlotvragen"] .card-header {
    background-color: #fff;
}

.bb-selectfield.row .bb-selectfield-column.col-sm-8,
.bb-textfield.row .bb-textfield-column.col-sm-8,
.bb-togglefield.row .bb-togglefield-column.col-sm-8,
.bb-selectfield.row .bb-selectfield-column.col-sm-7,
.bb-textfield.row .bb-textfield-column.col-sm-7,
.bb-togglefield.row .bb-togglefield-column.col-sm-7,
[data-styletype="Formulier"] .col-sm-4 {
    max-width: 90% !important;
    flex: 0 0 90% !important;
}

[data-styletype="Formulier"] .col-sm-1,
[data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] .col-sm-1 {
    flex: 0 0 5% !important;
    max-width: 5% !important;
    padding: 0;
}

.isReadonly .bb-textfield-column.col-sm-7 div, .isReadonly .bb-textfield-column.col-sm-8 div {
    border: none;
}

.bb-togglefield .btn-group.btn-radio {
    width: 100%;
}

.bb-togglefield-column .btn-group.btn-radio button {
    height: 56px;
    font-family: var(--font-bold);
    background-color: #fff;
    border: var(--border);
    color: #495057;
    border-radius: 0;
    font-size: 10pt;
    padding: 0;
    font-weight: 400;
}

    .bb-togglefield-column .btn-group.btn-radio button:first-child {
        border-bottom-left-radius: var(--border-radius-small);
        border-top-left-radius: var(--border-radius-small);
    }

    .bb-togglefield-column .btn-group.btn-radio button:last-child {
        border-bottom-right-radius: var(--border-radius-small);
        border-top-right-radius: var(--border-radius-small);
    }

    .bb-togglefield-column .btn-group.btn-radio .active,
    .bb-togglefield-column .btn-group.btn-radio button:hover,
    .bb-togglefield-column .btn-group.btn-radio button:focus-within,
    .activeButDisabled {
        background-color: var(--secondary-button-color) !important;
        color: #fff;
    }

.sr .card-header {
    font-family: var(--font-bold);
    font-size: 22px;
    border: none;
    border-radius: var(--border-radius-reg);
}

[data-styletype="Formulier"] .show .card-body .card .bb-textfield.isReadonly .bb-textfield-column {
    height: 56px;
    max-width: 100% !important;
    padding-right: 15px;
}

.isReadonly .bb-textfield-column.col-sm-7 span,
.isReadonly .bb-textfield-column.col-sm-8 span,
.isReadonly .bb-selectfield-column.col-sm-7 select,
.isReadonly .bb-selectfield-column.col-sm-8 select,
[data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column span {
    height: 56px !important;
    background-color: var(--input-background-color) !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-family: var(--font-reg);
    color: var(--secondary-color) !important;
    border: var(--border);
    border-radius: var(--border-radius-small);
    opacity: 0.5;
    cursor: not-allowed;
    padding-left: 10px;
    display: flex;
    align-items: center;
    width: 100%;
}

.has-error .bb-textfield-column .input-group, .has-error .bb-selectfield-column select,
.has-error .bb-togglefield-column .btn-group.btn-radio {
    border-radius: var(--border-radius-small);
}

[data-styletype="AanvullendeDekking"],
[data-styletype="AanvullendeDekkingen"] [data-styletype="MeerInfo"] .card .card-header,
[data-styletype="MeerInfo"] .card .collapse {
    background-color: var(--secondary-tint-color) !important;
    border-radius: var(--border-radius-reg) !important;
}

[data-styletype="AanvullendeDekkingen"] {
    margin-top: 25px;
    margin-bottom: 15px;
}

.switch-slider.round {
    background-color: var(--border-color);
}

.sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-8,
.sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-9,
.sr[data-styletype="AanvullendeDekking"] > .show > .card-body > .row.sr:nth-child(1) .col-sm-12,
[data-styletype="HoofdDekking"] > .show > .card-body > .row.sr:nth-child(1) .row.sr:nth-child(1) .bb-textfield {
    color: var(--secondary-color);
    font-family: var(--veh-bold);
    font-size: 28px;
}

[data-styletype="PremieKolom"] {
    padding-left: 0;
    padding-right: 35px;
}

    [data-styletype="PremieKolom"] > .row {
        display: flex;
        justify-content: flex-end;
    }

        [data-styletype="PremieKolom"] > .row:first-child * {
            font-size: 21px;
            margin-bottom: 0;
        }

[data-styletype="AanvullendeDekkingen"] [data-styletype="MeerInfo"] .card .card-header span {
    color: var(--primary-color) !important;
}

[data-styletype="MeerInfo"] .card .collapse {
    color: var(--secondary-color);
    font-family: var(--font-light);
}

[data-styletype="HoofdDekking"] > .show > .card-body > .row.sr:first-child {
    background-color: var(--secondary-tint-color);
    border-top-left-radius: var(--border-radius-large);
    border-top-right-radius: var(--border-radius-large);
    padding-top: 15px;
    height: 90px;
}

[data-styletype="HoofdDekkingen"], [data-styletype="VerkoperHoofdDekkingen"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: unset;
}

[data-styletype="HoofdDekking"] {
    box-shadow: rgb(186, 190, 196, .3) 0px 12px 24px;
    border-radius: var(--border-radius-large) !important;
}

    [data-styletype="HoofdDekking"] > .show > .card-body,
    [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
        outline: 1px solid transparent;
        border-radius: var(--border-radius-large);
    }

[data-styletype="DekkingGekozen"] [data-styletype="HoofdDekking"] > .show > .card-body,
[data-styletype="DekkingGekozen"] [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
    outline: 3px solid var(--primary-color);
    border-radius: var(--border-radius-large);
}


[data-styletype="BasisDekking"] {
    outline: 2px solid var(--primary-color);
    border-radius: var(--border-radius-reg) !important;
}

    [data-styletype="BasisDekking"] .card-body {
        padding: 0 0 20px 0;
        color: var(--secondary-color);
    }

        [data-styletype="BasisDekking"] .card-body > .row {
            margin: 0;
        }

    [data-styletype="BasisDekking"] .col-sm-9, [data-styletype="BasisDekking"] .col-sm-3 {
        background-color: var(--secondary-tint-color);
        padding: 15px;
    }

    [data-styletype="BasisDekking"] .col-sm-9 {
        border-top-left-radius: 10px;
    }

        [data-styletype="BasisDekking"] .col-sm-9 span {
            font-size: 28px;
            font-family: var(--veh-bold);
            color: var(--secondary-color);
        }

    [data-styletype="BasisDekking"] .col-sm-3 {
        border-top-right-radius: 10px;
        align-items: center;
    }

        [data-styletype="BasisDekking"] .col-sm-3 span {
            color: var(--secondary-color);
            font-family: var(--font-reg);
            font-size: 16px;
        }

    [data-styletype="BasisDekking"] .show > .card-body > .row > .col-sm-12 {
        padding: 0px 40px;
    }

        [data-styletype="BasisDekking"] .show > .card-body > .row > .col-sm-12 span {
            font-size: 14px;
            color: var(--secondary-color);
            font-family: var(--font-light);
        }

@media (min-width: 1200px) {
    .banner.home .img-holder {
        display: block;
    }

    .banner.home .bb-textfield {
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    [data-styletype="BasisDekking"] .col-sm-9 {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    [data-styletype="BasisDekking"] .col-sm-3 [data-align="Right"] {
        display: flex;
        justify-content: flex-start;
    }

    [data-styletype="HoofdDekking"] {
        min-height: 170px;
    }

    [data-styletype="HoofdDekkingen"] .col-sm-4, [data-styletype="VerkoperHoofdDekkingen"] .col-sm-4 {
        max-width: 50% !important;
        width: 50% !important;
        margin-bottom: 15px;
    }

    [data-styletype="HoofdDekkingen"] .col-sm-10.sr {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    [data-styletype="HoofdDekking"] .col-sm-8 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    [data-styletype="HoofdDekking"] .col-sm-4 {
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }
}

[data-styletype="Text"] {
    padding-left: 0 !important;
    font-size: 14px !important;
    color: var(--secondary-color);
    font-family: var(--font-light);
}

[data-styletype="AanvullendeDekking"] .bb-selectfield select {
    width: 100% !important;
    max-width: unset !important;
    text-align: left;
    margin: 15px 0;
    font-size: 14px !important;
}

[data-styletype="TotalePremie"] {
    box-shadow: none;
    border: none !important;
    margin-left: unset;
    margin-top: 20px;
    margin-bottom: 75px;
    width: calc(100% + 30px);
    padding: unset;
    background-color: transparent;
    border-radius: unset;
    font-size: 13pt;
    font-weight: bold;
}

    [data-styletype="TotalePremie"] .card .card-body {
        background-color: transparent;
    }

@media (max-width: 991.98px) {
    [data-styletype="HoofdDekking"] .card {
        display: none;
    }

    [data-styletype="HoofdDekking"] > .show > .card-body,
    [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
        min-height: 60px;
    }

    .navbar {
        height: 80px;
    }
}

@media (min-width: 991.98px) {
    .navbar {
        margin-top: 40px;
    }

    [data-styletype="PremieKolom"] {
        padding-left: 0;
        padding-right: 35px;
        position: absolute;
        right: 0;
        width: 200px;
        max-width: unset !important;
    }
}

@media (min-width:700px) and (max-width:1200px) {
    .contact-container .col-sm-4,
    .verzekering-row .col-sm-4,
    [data-styletype="VerzekeringRow"] .col-sm-4 {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 690px) {
    [data-styletype="HoofdDekking"] .show .card-body .row.sr .col-sm-8,
    [data-styletype="HoofdDekking"] .show .card-body .row.sr .col-sm-4 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    [data-styletype="HoofdDekking"] .col-sm-4 * {
        padding-left: 3px;
        padding-right: 4px;
        justify-content: start;
    }

    [data-styletype="HoofdDekkingen"] .col-sm-4, [data-styletype="VerkoperHoofdDekkingen"] .col-sm-4 {
        max-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .verzekering-card .bb-linefield {
        min-height: unset;
    }
}

@media (min-width: 576px) {
    [data-styletype="TotalePremie"] .col-sm-6 {
        flex: 0 0 65%;
        max-width: 65%;
    }

    [data-styletype="Tile"] .card-body {
        padding-bottom: 75px;
    }

    [data-styletype="BasisDekking"] .col-sm-9, [data-styletype="BasisDekking"] .col-sm-3 {
        padding: 15px 15px 15px 40px
    }

    [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 {
        margin-left: 30px;
    }
}

@media (min-width: 699px) {
    [data-styletype="VerzekeringRow"] [data-styletype="Tile"] .card-body {
        min-height: 400px !important;
    }
}

@media (min-width: 575px) {
    [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
        width: 40%;
        flex: 0 0 40%;
    }

    [data-styletype="BasisDekking"] .col-sm-9 {
        width: 60%;
        flex: 0 0 60%;
    }

    [data-styletype="BasisDekking"] .col-sm-9, [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
        height: 125px;
    }
}

@media (max-width: 575px) {
    button.btn.btn-primary.btn-action {
        margin: 0px 0px 15px 15px;
    }

    [data-styletype="BasisDekking"] [data-styletype="Message"] span {
        color: var(--secondary-color) !important;
        font-size: 16px !important;
    }

    [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row {
        display: flex;
        justify-content: flex-start;
    }

    [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
        padding-left: 30px;
        margin-top: -25px;
        padding-top: 0;
        margin-bottom: 25px !important;
    }

    [data-styletype="BasisDekking"] .show > .card-body > .row > .col-sm-12 {
        padding: 15px 15px 0 15px;
    }

    .banner h1 {
        font-size: 36px;
        margin-top: 0px;
    }

    .title-row .primary-link {
        margin-top: 8px;
    }

    .banner::before, .banner {
        height: 150px;
    }

    .menuType {
        width: 100%;
    }

    [data-styletype="TotalePremie"] .col-sm-6, [data-styletype="TotalePremie"] .col-sm-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    [data-styletype="Formulier"] .bb-textfield .col-sm-1, [data-styletype="Formulier"] .bb-selectfield .col-sm-1, [data-styletype="Formulier"] .bb-togglefield .col-sm-1 {
        text-align: right;
        width: 10%;
        padding: 0;
        margin-left: -8px;
    }

    .banner .subtitle {
        font-size: 24px;
    }

    [data-styletype="TotalePremie"] .col-sm-6:last-child {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: wrap;
        text-align: left;
    }

        [data-styletype="TotalePremie"] .col-sm-6:last-child > .row {
            justify-content: start !important;
            text-align: left !important;
        }
}

[data-styletype="Betaaltermijn"] * {
    width: auto;
}

[data-styletype="TotalePremie"] .col-sm-6:last-child > .row {
    width: auto;
    margin-right: 25px;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.sr [data-styletype="Betaaltermijn"] .bb-selectfield .col-sm-8 {
    width: 200px;
    flex: unset !important;
    max-width: 100% !important;
    margin-top: -3px;
    margin-right: -25px;
}

[data-styletype="TotalePremie"] .col-sm-6:last-child .bb-textfield {
    font-size: 42px;
    color: var(--secondary-color);
    font-family: var(--veh-reg);
}

[data-styletype="HoofdDekkingen"]::after, [data-styletype="VerkoperHoofdDekkingen"]::after {
    display: none;
}

.sr [data-type="text"] [data-styletype="Download"] a {
    display: block;
    background-color: var(--secondary-color);
    color: #fff !IMPORTANT;
    width: 280px;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 15px;
    font-family: var(--font-reg);
    text-decoration: none !important;
    margin-left: 0 !important;
    border-radius: var( --border-radius-small);
}

    .sr [data-type="text"] [data-styletype="Download"] a:hover,
    .sr [data-type="text"] [data-styletype="Download"] a:focus-within {
        background-color: var(--primary-color);
    }

[data-styletype="Download"] a::before {
    content: '\f019';
    font-family: 'Font Awesome 5 Pro', sans-serif;
    font-weight: 500;
    margin-right: 10px;
}

.pagination-row {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
    flex-wrap: wrap;
}

    .pagination-row.single {
        justify-content: flex-end;
    }

[data-styletype="Titel"] .bb-textfield .bb-textfield-column span {
    font-family: var(--font-bold);
    font-size: 28px;
}

[data-styletype="AanvullendeDekkingen"] .bb-selectfield.row .bb-selectfield-column.col-sm-8 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

[data-styletype="MeerInfo"] {
    margin-top: 10px;
}

[data-styletype="AanvullendeDekking"] span[data-type="currency"] {
    padding-left: 10px;
}

[data-styletype="AanvullendeDekkingen"] .col-sm-6 .col-sm-9 .bb-textfield-column span {
    margin-top: 0;
    line-height: normal;
}

.btn.btn-primary.sr-previouspage:hover,
.btn.btn-primary.sr-nextpage:hover,
.btn.btn-primary.sr-previouspage:focus-within,
.btn.btn-primary.sr-nextpage:focus-within {
    color: #fff;
    background-color: var(--secondary-color);
}

[data-styletype="Formulier"] .show .card-body .bb-textfield {
    padding: 0;
}

[data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column, [data-styletype="Formulier"] .bb-textfield.isReadonly .bb-textfield-column {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-left: 0px;
    margin-bottom: unset;
    max-width: 297px;
    margin-right: 15px;
}

[data-styletype="Bestanden"] .bb-textfield-column {
    height: auto !important;
}

.sr [type="text"] a {
    color: var(--primary-color);
    text-decoration: underline !important;
}

[data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 {
    max-width: 20px;
}

[data-styletype="NegatiefPunt"] .col-sm-2 span,
[data-styletype="NegatiefPunt"] .col-sm-1 span {
    color: var(--negative-color) !important;
    visibility: hidden;
}

[data-styletype="PositiefPunt"] .col-sm-2 span,
[data-styletype="PositiefPunt"] .col-sm-1 span {
    color: var(--positive-color) !important;
    visibility: hidden;
}

[data-styletype="BasisDekking"] [data-styletype="NegatiefPunt"] .col-sm-2 span,
[data-styletype="BasisDekking"] [data-styletype="NegatiefPunt"] .col-sm-1 span {
    color: var(--primary-color) !important;
}

[data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-2 span,
[data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 span {
    color: var(--primary-color) !important;
}

.btn.btn-primary[value="Pakket aanvragen"] {
    left: calc(100% - 230px) !important;
}

[data-styletype="BasisDekking"] .col-sm-9 .bb-textfield:nth-child(2) span {
    font-size: 14px;
    font-family: var(--font-light);
}

[data-styletype="PakketOnderdeel"] {
    border-radius: var(--border-radius-reg) !important;
}

    [data-styletype="PakketOnderdeel"] * {
        color: var(--secondary-color);
    }

    [data-styletype="PakketOnderdeel"] .card-body {
        padding: 0 15px;
    }

    [data-styletype="PakketOnderdeel"], [data-styletype="PakketOnderdeel"] .card-header {
        background-color: var(--secondary-tint-color) !important;
        padding: 0 10px;
    }

        [data-styletype="PakketOnderdeel"] .btn,
        [data-styletype="Collapsible"] .col-sm-3 .btn {
            background-color: transparent !important;
            padding: 0 !important;
            width: auto;
            font-size: 14px;
            margin-right: 10px;
        }

            [data-styletype="PakketOnderdeel"] .btn[value="Wijzigen"],
            [data-styletype="PakketOnderdeel"] .btn[value="Royeren"],
            [data-styletype="Collapsible"] .col-sm-3 .btn[value="Wijzigen"] {
                color: var(--primary-color) !important;
                font-family: var(--font-light);
            }

            [data-styletype="PakketOnderdeel"] .btn[value="Verwijderen"],
            [data-styletype="PakketOnderdeel"] .btn[value="Beeindigen"] {
                color: var(--text-danger) !important;
                font-family: var(--font-light);
            }

        [data-styletype="PakketOnderdeel"] .bb-buttonfield:first-child .bb-buttonfield-column::after,
        [data-styletype="Collapsible"] .col-sm-3 .bb-buttonfield .bb-buttonfield-column::after {
            content: '\f040';
            font-family: 'Font Awesome 5 Pro', sans-serif;
            color: var(--primary-color);
        }

        [data-styletype="PakketOnderdeel"] .bb-buttonfield-column::after {
            content: '\f2ed';
            font-family: 'Font Awesome 5 Pro', sans-serif;
            color: var(--text-danger);
        }

        [data-styletype="PakketOnderdeel"] [data-styletype="TotaalKolom"] > div:last-child {
            font-family: var(--veh-bold);
            font-size: 24px;
            margin-top: -10px;
        }

        [data-styletype="PakketOnderdeel"] .bb-buttonfield-column * {
            color: var(--secondary-color) !important;
            font-family: var(--font-reg);
        }

[data-styletype="Formulier"] .show .card-body [data-styletype="Verzekeringskaart"] .bb-textfield.isReadonly .bb-textfield-column {
    height: auto;
}

[data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column {
    border: none;
    padding-left: 15px;
    align-items: flex-start;
}

    [data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column span {
        display: flex;
        align-items: center;
        font-size: 18px !important;
        font-family: var(--font-reg);
    }

[data-styletype="AanvullendeDekking"] .bb-textfield:not(.isReadonly) div[data-type="currency"] > div::before {
    top: 18px;
}

[data-styletype="AanvullendeDekking"] > .show > .card-body > .row:last-child * {
    color: var(--secondary-color);
}

[data-styletype="PakketOnderdeel"] > .show > .card-body > .row > .col-sm-12 {
    display: flex;
    width: auto;
    flex-wrap: wrap;
    flex-direction: row;
}

    [data-styletype="PakketOnderdeel"] > .show > .card-body > .row > .col-sm-12 > div > div {
        width: 140px;
        padding-right: 0;
    }

[data-styletype="AanvullendeDekking"] > .show > .card-body {
    color: var(--secondary-color);
}

[data-styletype="AanvullendeDekking"] > .show, [data-styletype="AanvullendeDekking"], [data-styletype="AanvullendeDekking"] > .show > .card-body {
    height: 100%;
}

[data-styletype="AanvullendeDekkingen"] > .col-sm-6 {
    margin-bottom: 15px;
}

[data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > div > .card-body {
    max-width: 750px;
    padding-left: 0;
}

[data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > .show > .card-body [data-styletype="Minimal"] .header-col, [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > .show > .card-body [data-styletype="Minimal"] > .show > .card-body {
    padding: 15px 0;
}

.sr.card[data-styletype="Collapsible"] {
    border: var(--border);
    padding: 15px;
    border-radius: var(--border-radius-reg);
}

[data-styletype="Collapsible"] .col-sm-4.align-self-center {
    max-width: 100%;
    flex: 0 0 100%;
}

[data-styletype="Collapsible"] .card {
    margin-bottom: 0 !important;
}

[data-styletype="ButtonRow"], .btn-row {
    display: flex;
    flex-direction: row;
    width: calc(100% - 40px);
    justify-content: space-between;
}

    [data-styletype="ButtonRow"] > div, .btn-row > div {
        display: flex;
        width: auto;
        max-width: unset;
        flex: unset;
    }

[data-styletype="Collapsible"] .col-sm-9 {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: var(--font-light);
    margin-bottom: 15px;
    margin-top: -15px;
}

[data-styletype="PremieRow"] > .col-sm-6:last-child {
    color: var(--secondary-color);
    font-family: var(--font-bold);
    font-size: 18px;
}

[data-styletype="Formulier"] .col-sm-4 {
    color: var(--secondary-color);
    font-family: var(--font-reg);
}

[data-styletype="Formulier"] .sr .bb-selectfield-column select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-left: 12px !important;
}

[data-styletype="Formulier"] .sr .bb-selectfield-column::after {
    content: '\f078';
    display: block;
    font-family: "Font Awesome 5 Pro", sans-serif;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: bold;
}

[data-styletype="HoofdDekking"] [data-styletype="SubTitle"] * {
    font-size: 14px;
    margin-top: 3px;
}

[data-styletype="HoofdDekking"] > .show > .card-body > .row:first-child > .col-sm-9 > .row > .col-sm-12:first-child {
    margin-bottom: -25px;
    margin-top: 0px;
}

[data-styletype="PositiefPunt"] .col-sm-2 span::before, [data-styletype="PositiefPunt"] .col-sm-1 span::before {
    content: '\f058';
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Pro", sans-serif;
    visibility: visible;
}

[data-styletype="NegatiefPunt"] .col-sm-2 span::before, [data-styletype="NegatiefPunt"] .col-sm-1 span::before {
    content: '\f056';
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Pro", sans-serif;
    visibility: visible;
}

[data-styletype="PositiefPunt"] .col-sm-2, [data-styletype="PositiefPunt"] .col-sm-1, [data-styletype="NegatiefPunt"] .col-sm-2, [data-styletype="NegatiefPunt"] .col-sm-1 {
    max-width: 24px;
}

[data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-2 span::before, [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 span::before {
    content: '\f00c';
}

[data-styletype="Formulier"] .show .card-body .bb-textfield.isReadonly .bb-textfield-column.col-sm-12 {
    height: unset !important;
}

[data-styletype="minimal"] .bb-textfield-column span, [data-styletype="minimal"] .bb-textfield-column label span, [data-styletype="minimal"] .bb-selectfield-column span, [data-styletype="minimal"] .bb-selectfield-column label span {
    padding-left: unset;
}

.container.body-content {
    max-width: unset;
    background-color: #fff;
}

.checkbox.sr {
    display: flex;
    justify-content: end;
    align-content: end;
    float: right;
}

span[data-styletype="SubTitle"] {
    font-family: var(--font-bold);
    font-size: 16px;
}

[data-styletype="VerzekeringRow"] [data-styletype="Tile"] .bb-textfield:nth-child(2) [data-styletype="Title"] {
    font-size: 38px !important;
    color: var(--secondary-color) !Important;
    font-family: var(--veh-bold) !Important;
}

[data-styletype="VerzekeringRow"] [data-styletype="Tile"] .card-body {
    min-height: 360px;
}

[data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
    margin-bottom: 0;
    padding-bottom: 2px;
    padding-right: 40px;
}

    [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row:first-child span {
        font-size: 24px !important;
        font-family: var(--veh-bold);
    }

    [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row:last-child span {
        font-size: 12px;
        font-family: var(--font-light);
    }

[data-styletype="Formulier"] .sr .isReadonly .bb-selectfield-column::after {
    display: none;
}

[data-styletype="TotalePremie"] [data-styletype="SubTitle"] {
    color: var(--secondary-color);
    font-size: 24px;
}

[data-styletype="TotalePremie"] [data-styletype="SmallTitle"] {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: var(--font-light);
}

[data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--font-light);
    font-weight: 400;
}

[data-styletype="TotalePremie"] [data-styletype="FinePrint"] {
    color: var(--text-color);
    font-size: 12px;
    font-family: var(--font-light);
    font-weight: 400;
}

.sr-loader {
    background-image: url(images/loader.svg);
    width: 120px;
    height: 120px;
}

.sr-loader-text {
    margin-top: 5px;
}

[data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] .col-sm-2 {
    padding: 0;
}

[data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] .col-sm-10 {
    max-width: calc(100% - 25px) !important;
    flex: 0 0 calc(100% - 25px) !important;
    padding-left: 5px;
}

[data-styletype="Tile"] {
    min-height: 300px;
}

.bb-selectfield.row .bb-selectfield-column.col-sm-7 .form-control-static.sr {
    width: 100%;
}

[data-styletype="AanvullendeDekkingen"] [data-styletype="AanvullendeDekking"] .bb-selectfield label {
    display: block;
}

[data-styletype="AanvullendeDekkingen"] .bb-selectfield label.col-sm-4 {
    display: flex;
    max-width: 100%;
    flex: 0 0 100%;
}

[data-styletype="AanvullendeDekking"] .bb-selectfield .col-sm-8 {
    display: flex;
    justify-content: flex-start;
}

    [data-styletype="AanvullendeDekking"] .bb-selectfield .col-sm-8 span {
        font-family: var(--font-bold);
    }

[data-styletype="ContactRow"] .form-group {
    margin-bottom: 0;
}

[data-styletype="ContactRow"] div span {
    color: var(--text-danger);
}

    [data-styletype="ContactRow"] div span::before {
        font-family: "Font Awesome 5 Pro", sans-serif;
        content: '\f671';
        color: var(--text-danger);
        margin-right: 5px;
    }


[data-styletype="Header"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 92px;
    padding: 0;
    align-items: center;
}

[data-styletype="layoutContainer"] > .show > .card-body,
[data-styletype="LayoutContainer"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
}

[data-styletype="Header"] * {
    margin: 0 !important;
}

[data-styletype="MultipleInput"] .card-body {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

[data-styletype="QuestionContainer"] {
    max-width: 800px;
}

[data-styletype="Summarycard"] > .show > .card-body {
    display: flex;
    align-items: center;
}

[data-styletype="Imagecard"] {
    max-width: 150px;
}

[data-styletype="Checklistcard"] .card-body,
[data-styletype="HorizontalContainer"] .card-body {
    padding: 0;
}

[data-styletype="EditPopup"].hidden {
    display: none !important;
    visibility: hidden;
}

    [data-styletype="EditPopup"].hidden [data-styletype="Edit"] {
        transform: translateX(-525px);
        transition: 0.2s ease-out;
    }

[data-styletype="Edit"] {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 525px;
    height: 100%;
    margin-left: 0;
    transition: 0.55s ease-in;
    transform: translateX(0px);
}

[data-styletype="Middle"] svg {
    width: 120px;
    height: 40px;
}

/* SOFTRULES END */


/* EAA */

.toggle-switch input:focus-within ~ .switch-slider.round {
    outline: 2px solid #fcb064;
}

.toggle-switch input {
    display: block;
    visibility: visible;
}

    .toggle-switch input[type=checkbox]::after {
        display: none;
    }

.datepicker {
    display: block !important;
}


/* FASE 2 start */
body:has([data-styletype="Fase2"]) {
    --primary-color: #F07A00;
    --primary-tint-color: #FFF8F0;
    --secondary-color: #352171;
    --secondary-tint-color: #F6F5F9;
    --light-secondary-color: #9A90B8;
    --primary-button-color: #352171;
    --primary-button-text-color: #fff;
    --primary-button-border-color: var(--primary-button-color);
    --primary-button-text-hover-color: #fff;
    --primary-button-hover-color: #F07A00;
    --primary-button-border-hover-color: #F07A00;
    --secondary-button-color: var(--secondary-color);
    --secondary-button-border-color: var(--primary-button-color);
    --secondary-button-text-color: #fff;
    --secondary-button-hover-color: var(--primary-color);
    --secondary-button-text-hover-color: #fff;
    --accent-color: #594E4E;
    --light-accent-bg: #FFEDD7;
    --text-color: #594E4E;
    --secondary-text-color: var(--secondary-color);
    --label-text-color: var(--secondary-text-color);
    --input-border-color: #E1DEEA;
    --input-background-color: #fff;
    --input-text-color: var(--secondary-text-color);
    --header-color: #fff;
    --link-color: var(--primary-color);
    --link-hover-color: var(--secondary-color);
    --secondary-link-color: var(--secondary-color);
    --background-color: #fff;
    --light-background-color: var(--secondary-tint-color);
    --border-color: #E1DEEA;
    --border: 1px solid var(--border-color);
    --logo: url('images/logo.svg');
    --table-background: var(--secondary-tint-color);
    --table-background-hover: var(--primary-color);
    --empty-msg-bg: #F4F4FB;
    --border-radius-small: 8px;
    --border-radius-reg: 10px;
    --border-radius-large: 16px;
    --border-radius-card: 0;
    --text-danger: #CF0008;
    --positive-color: #7FC241;
    --card-shadow: none;
    --card-border-color: var(--border-color);
    --card-header-color: var(--secondary-color);
    --heading-shadow: none;
    --heading-color: var(--secondary-color);
    --form-bg-color: #F6F5F9;
    --logo-width: 144px;
    --logo-height: 48px;
    --font-light: 'museoSans-Light', sans-serif;
    --font-reg: 'museoSans-Regular', sans-serif;
    --font-bold: 'museoSans-Bold', sans-serif;
    --veh-reg: 'VEH-Regular', sans-serif;
    --veh-bold: 'VEH-Bold', sans-serif;
    --fa: "Font Awesome 5 Pro", sans-serif;
}

    /* BASELINE */
    body:has([data-styletype="Fase2"]) .app-main .app-main__inner {
        padding: 0 !important;
    }

    body:has([data-styletype="Fase2"]) body {
        font-family: var(--font-light);
        color: var(--text-color);
    }

    body:has([data-styletype="Fase2"]) .text {
        color: var(--text-color);
    }

    body:has([data-styletype="Fase2"]) #FormContent > .card {
        min-height: 450px !important;
        overflow: visible;
    }

    body:has([data-styletype="Fase2"]) .app-theme-white.app-container,
    body:has([data-styletype="Fase2"]) .app-theme-white .app-footer .app-footer__inner,
    body:has([data-styletype="Fase2"]) .app-theme-white .app-header {
        background-color: var(--form-bg-color);
    }

    body:has([data-styletype="Fase2"]) .navbar .logo-src {
        background-image: var(--logo);
        width: var(--logo-width);
        height: var(--logo-height);
        background-repeat: no-repeat;
        background-size: var(--logo-width);
        margin: 0;
    }

    body:has([data-styletype="Fase2"]) .navbar .nav-item::after {
        color: var(--primary-color);
    }

    body:has([data-styletype="Fase2"]) .btn {
        height: 56px;
        width: 100%;
        font-size: 18px;
        font-family: var(--font-bold);
        border-radius: var(--border-radius-reg);
        transition-property: background-color;
        transition-duration: 0.2s;
    }

    body:has([data-styletype="Fase2"]) .btn-primary {
        background-color: var(--primary-button-color) !important;
        border: var(--primary-button-border-color) !important;
    }

        body:has([data-styletype="Fase2"]) .btn-primary:hover,
        body:has([data-styletype="Fase2"]) .btn-primary:focus,
        body:has([data-styletype="Fase2"]) .btn-primary:focus-within,
        body:has([data-styletype="Fase2"]) .btn.btn-primary.sr:hover,
        body:has([data-styletype="Fase2"]) .btn.btn-primary.sr:focus-within {
            background-color: var(--primary-button-hover-color) !important;
            border: var(--primary-button-border-hover-color) !important;
        }

    body:has([data-styletype="Fase2"]) .btn-secondary {
        background-color: var(--secondary-button-color);
        border: var(--secondary-button-border-color);
    }

        body:has([data-styletype="Fase2"]) .btn-secondary:hover,
        body:has([data-styletype="Fase2"]) .btn-secondary:focus,
        body:has([data-styletype="Fase2"]) .btn-secondary:focus-within {
            background-color: var(--primary-button-color);
            border: var(--primary-button-border-color);
        }

    body:has([data-styletype="Fase2"]) input:-webkit-autofill,
    body:has([data-styletype="Fase2"]) input:-webkit-autofill:hover,
    body:has([data-styletype="Fase2"]) input:-webkit-autofill:focus,
    body:has([data-styletype="Fase2"]) input:-webkit-autofill:focus-within,
    body:has([data-styletype="Fase2"]) textarea:-webkit-autofill,
    body:has([data-styletype="Fase2"]) textarea:-webkit-autofill:hover,
    body:has([data-styletype="Fase2"]) textarea:-webkit-autofill:focus,
    body:has([data-styletype="Fase2"]) textarea:-webkit-autofill:focus-within,
    body:has([data-styletype="Fase2"]) select:-webkit-autofill,
    body:has([data-styletype="Fase2"]) select:-webkit-autofill:hover,
    body:has([data-styletype="Fase2"]) select:-webkit-autofill:focus,
    body:has([data-styletype="Fase2"]) select:-webkit-autofill:focus-within {
        border: var(--border);
        -webkit-text-fill-color: var(--secondary-color);
        -webkit-box-shadow: none;
        transition: background-color 5000s ease-in-out 0s;
        font-size: 18px !important;
    }

        body:has([data-styletype="Fase2"]) input:-webkit-autofill::first-line {
            font-size: 18px;
        }

    body:has([data-styletype="Fase2"]) a {
        text-decoration: none !important;
    }

    body:has([data-styletype="Fase2"]) a, body:has([data-styletype="Fase2"]) .btn, body:has([data-styletype="Fase2"]) .primary-link, body:has([data-styletype="Fase2"]) .secondary-link, body:has([data-styletype="Fase2"]) .hamburger {
        transition-property: all;
        transition-duration: 0.2s;
        cursor: pointer;
    }

    body:has([data-styletype="Fase2"]) .primary-link {
        color: var(--link-color);
    }

        body:has([data-styletype="Fase2"]) .primary-link:hover,
        body:has([data-styletype="Fase2"]) .primary-link:focus-within {
            color: var(--link-hover-color);
        }

    body:has([data-styletype="Fase2"]) .btn.btn-primary[data-styletype="Link"] {
        color: var(--secondary-color);
        text-align: left !important;
        background-color: transparent !important;
        padding: 0 !important;
        text-decoration: underline !important;
        font-size: 14px !important;
        height: auto;
        width: auto;
        box-shadow: none !important;
    }

        body:has([data-styletype="Fase2"]) .btn.btn-primary[data-styletype="Link"]:hover,
        body:has([data-styletype="Fase2"]) .btn.btn-primary[data-styletype="Link"]:focus-within {
            color: var(--link-color);
            background-color: transparent !important;
            text-decoration: none !important;
        }

    body:has([data-styletype="Fase2"]) .subtitle {
        font-size: 38px;
        color: var(--secondary-color);
        font-family: var(--veh-bold);
    }

    /* --BASELINE END-- */
    /* HEADER */
    body:has([data-styletype="Fase2"]) .admin {
        color: var(--text-color) !important;
    }

    body:has([data-styletype="Fase2"]) .custom-header {
        width: 100%;
        position: absolute;
        background-color: var(--secondary-tint-color);
        height: 40px;
        padding: 0 30px;
        top: 0;
        left: 0;
        z-index: 111;
    }

        body:has([data-styletype="Fase2"]) .custom-header a {
            margin-left: 25px;
            color: var(--secondary-color);
        }

            body:has([data-styletype="Fase2"]) .custom-header a:hover,
            body:has([data-styletype="Fase2"]) .custom-header a:focus-within {
                color: var(--primary-color);
            }

    body:has([data-styletype="Fase2"]) .headerMenu {
        margin: auto;
        max-width: 1580px;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }


    /* --HEADER END-- */


    /* LOGIN */
    body:has([data-styletype="Fase2"]) .primary-title,
    body:has([data-styletype="Fase2"]) .secondary-title,
    body:has([data-styletype="Fase2"]) h1, body:has([data-styletype="Fase2"]) [data-styletype="title"],
    body:has([data-styletype="Fase2"]) [data-styletype="Title"] {
        font-size: 48px;
        font-family: var(--veh-bold);
        color: var(--secondary-color);
        line-height: normal;
    }

    body:has([data-styletype="Fase2"]) .primary-title {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    body:has([data-styletype="Fase2"]) .secondary-title {
        color: var(--secondary-color);
        margin-bottom: -15px;
    }

    body:has([data-styletype="Fase2"]) input#BtnLogin, body:has([data-styletype="Fase2"]) button#BtnLogin {
        margin-top: 30px;
    }

    body:has([data-styletype="Fase2"]) h1 {
        color: var(--secondary-color);
    }

    body:has([data-styletype="Fase2"]) input:not(.btn), body:has([data-styletype="Fase2"]) input.form-control:not(.btn),
    body:has([data-styletype="Fase2"]) .sr .bb-selectfield-column select,
    body:has([data-styletype="Fase2"]) textarea.form-control {
        height: 56px !important;
        background-color: var(--input-background-color) !important;
        box-shadow: none !important;
        font-size: 18px !important;
        font-family: var(--font-reg);
        color: var(--secondary-color) !important;
        border: 1px solid #fff;
        border-radius: var( --border-radius-small);
    }

        body:has([data-styletype="Fase2"]) input:not(.btn):focus, body:has([data-styletype="Fase2"]) input.form-control:not(.btn):focus,
        body:has([data-styletype="Fase2"]) input:not(.btn):focus-within, body:has([data-styletype="Fase2"]) input.form-control:not(.btn):focus-within,
        body:has([data-styletype="Fase2"]) select:focus-within {
            border-color: rgb(49, 130, 206) !important;
            box-shadow: rgb(49, 130, 206) 0px 0px 0px !important;
        }

    body:has([data-styletype="Fase2"]) textarea.form-control {
        height: unset !important;
    }


    body:has([data-styletype="Fase2"]) label {
        color: var(--label-text-color);
        font-family: var(--font-light);
    }

    body:has([data-styletype="Fase2"]) .lid-container {
        margin-top: 125px;
        background-color: var(--secondary-tint-color);
        border-radius: var(--border-radius-large);
    }

        body:has([data-styletype="Fase2"]) .lid-container .col-sm-8 {
            display: flex;
            height: 56px;
            align-items: flex-end;
        }

            body:has([data-styletype="Fase2"]) .lid-container .col-sm-8 > .bb-linefield {
                margin-left: 30px;
            }

                body:has([data-styletype="Fase2"]) .lid-container .col-sm-8 > .bb-linefield::before {
                    content: '\f061';
                    font-family: "Font Awesome 5 Pro", sans-serif;
                    color: var(--primary-color);
                    position: absolute;
                    margin-top: 0px;
                    margin-left: 8px;
                }

        body:has([data-styletype="Fase2"]) .lid-container .check-list {
            height: 100%;
        }

            body:has([data-styletype="Fase2"]) .lid-container .check-list > div {
                display: flex;
                align-items: center;
            }

            body:has([data-styletype="Fase2"]) .lid-container .check-list .form-group {
                margin: 0;
                color: var(--secondary-color);
                font-size: 16px;
            }

                body:has([data-styletype="Fase2"]) .lid-container .check-list .form-group::before {
                    content: '\f00c';
                    font-family: "Font Awesome 5 Pro", sans-serif;
                    color: var(--primary-color);
                    position: absolute;
                    margin-left: -15px;
                }

    body:has([data-styletype="Fase2"]) .login-services {
        background-color: var(--secondary-tint-color);
        margin-bottom: 15px;
        font-family: var(--font-light);
        height: 120px;
        color: var(--text-color);
        border-radius: var(--border-radius-large);
        max-width: 500px;
    }

        body:has([data-styletype="Fase2"]) .login-services .subtitle {
            font-size: 18px;
            font-family: var(--font-bold);
            color: var(--secondary-color);
        }

        body:has([data-styletype="Fase2"]) .login-services > .row {
            display: flex;
            height: 100%;
            align-items: center;
        }

            body:has([data-styletype="Fase2"]) .login-services > .row > div {
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

        body:has([data-styletype="Fase2"]) .login-services .form-group {
            margin: 0;
        }

        body:has([data-styletype="Fase2"]) .login-services > .row > .col-sm-3 {
            max-width: 90px;
        }

        body:has([data-styletype="Fase2"]) .login-services > .row > .col-sm-8 {
            padding-left: 0;
            padding-right: 0;
        }

    body:has([data-styletype="Fase2"]) .login-row {
        justify-content: space-around;
    }

        body:has([data-styletype="Fase2"]) .login-row .col-sm-6:last-child {
            max-width: 500px;
        }

    /* --LOGIN END-- */

    /* --FOOTER-- */

    body:has([data-styletype="Fase2"]) .app-wrapper-footer {
        margin-top: 6.5rem;
    }

    body:has([data-styletype="Fase2"]) .app-footer {
        padding: 6.5rem 15px;
    }

        body:has([data-styletype="Fase2"]) .app-footer,
        body:has([data-styletype="Fase2"]) .app-footer .app-footer__inner,
        body:has([data-styletype="Fase2"]) .app-theme-white .app-footer .app-footer__inner {
            height: auto;
            background-color: var(--secondary-color);
        }

    body:has([data-styletype="Fase2"]) .app-wrapper-footer .app-footer,
    body:has([data-styletype="Fase2"]) .app-wrapper-footer .app-footer .app-footer__inner {
        border: none;
    }

    body:has([data-styletype="Fase2"]) .footer-content {
        max-width: 1640px !important;
        margin: auto;
    }

    body:has([data-styletype="Fase2"]) .app-footer__inner,
    body:has([data-styletype="Fase2"]) .app-footer-left,
    body:has([data-styletype="Fase2"]) .footer-content,
    body:has([data-styletype="Fase2"]) .top-footer,
    body:has([data-styletype="Fase2"]) .bottom-footer {
        width: 100%;
    }

        body:has([data-styletype="Fase2"]) .top-footer h3 {
            margin-bottom: 1.5rem;
            font-size: 18px;
            font-family: var(--font-bold);
        }

        body:has([data-styletype="Fase2"]) .top-footer a {
            margin-bottom: 1rem;
            display: block;
            font-family: var(--font-light);
            font-size: 16px;
        }

            body:has([data-styletype="Fase2"]) .top-footer a:hover,
            body:has([data-styletype="Fase2"]) .top-footer a:focus-within {
                text-decoration: underline !important;
            }

        body:has([data-styletype="Fase2"]) .top-footer .col-sm-4 {
            margin-bottom: 1.5rem;
        }

        body:has([data-styletype="Fase2"]) .footer-content a,
        body:has([data-styletype="Fase2"]) .footer-content h3 {
            color: #fff;
        }

        body:has([data-styletype="Fase2"]) .footer-content .col-sm-10 {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding-right: 50px;
        }

            body:has([data-styletype="Fase2"]) .footer-content .col-sm-10 a {
                color: var(--light-secondary-color);
                margin-right: 30px;
            }

    body:has([data-styletype="Fase2"]) .bottom-footer {
        margin-top: 6.5rem;
        border-top: 1px solid #49377f;
    }

        body:has([data-styletype="Fase2"]) .bottom-footer > .row {
            padding-top: 30px;
        }

    /* --FOOTER END-- */

    /* --BANNER-- */

    body:has([data-styletype="Fase2"]) .banner {
        height: 180px;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }

        body:has([data-styletype="Fase2"]) .banner h1 {
            position: relative;
            padding-top: 0;
            margin-top: -15px;
            word-wrap: break-word;
        }

        body:has([data-styletype="Fase2"]) .banner .primary-link {
            margin-left: 0px !important;
        }

        body:has([data-styletype="Fase2"]) .banner::before {
            content: "";
            position: absolute;
            inset: 0px 0px -10%;
            width: 100%;
            background-color: var(--secondary-tint-color);
            clip-path: polygon(100% 0px, 100% 83%, 21% 100%, 12% 90%, 0px 95%, 0px 0px);
            bottom: 0px;
            height: 200px;
        }

        body:has([data-styletype="Fase2"]) .banner.home {
            height: 230px;
        }

            body:has([data-styletype="Fase2"]) .banner.home::before {
                height: 250px;
            }


            body:has([data-styletype="Fase2"]) .banner.home .img-holder {
                display: none;
                text-align: right;
                margin-top: -340px;
                position: relative;
                z-index: 1000000;
            }

            body:has([data-styletype="Fase2"]) .banner.home img {
                max-width: 500px;
            }

    /* --BANNER END-- */

    /* GEGEVENS */

    body:has([data-styletype="Fase2"]) .card {
        box-shadow: none;
        border: var(--border);
        border-radius: var(--border-radius-large);
    }

    body:has([data-styletype="Fase2"]) .title-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 35px 0 15px;
        flex-wrap: wrap;
    }

        body:has([data-styletype="Fase2"]) .title-row .primary-link {
            margin-left: 25px !important;
        }

    body:has([data-styletype="Fase2"]) .gegevens-card {
        color: var(--secondary-color);
    }

        body:has([data-styletype="Fase2"]) .gegevens-card .bb-textfield span, body:has([data-styletype="Fase2"]) .gegevens-card .bb-selectfield span {
            font-family: var(--font-reg);
            font-size: 16px;
        }


        body:has([data-styletype="Fase2"]) .gegevens-card .title-row .bb-textfield span {
            font-size: 22px;
            font-family: var(--font-bold);
            color: var(--secondary-color);
        }

        body:has([data-styletype="Fase2"]) .gegevens-card .form-group.bb-textfield.row {
            margin-bottom: 24px;
        }

        body:has([data-styletype="Fase2"]) .gegevens-card .gegevens-row {
            margin-left: 25px;
        }

        body:has([data-styletype="Fase2"]) .gegevens-card .text-danger {
            margin-top: 15px;
            margin-left: 25px !important;
        }

            body:has([data-styletype="Fase2"]) .gegevens-card .text-danger:hover,
            body:has([data-styletype="Fase2"]) .gegevens-card .text-danger:focus-within {
                color: #9a0025 !important;
            }

    body:has([data-styletype="Fase2"]) .icon-input {
        padding-right: 25px;
    }

        body:has([data-styletype="Fase2"]) .icon-input::before {
            content: '';
            position: absolute;
            left: -25px;
            width: 24px;
            height: 24px;
            top: -30px;
            background-repeat: no-repeat;
        }

        body:has([data-styletype="Fase2"]) .icon-input.naam::before {
            background-image: url('images/icons/gebruiker.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.geslacht::before {
            background-image: url('images/icons/geslacht.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.telefoon::before {
            background-image: url('images/icons/telefoon.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.voorletters::before {
            background-image: url('images/icons/gebruiker.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.geboortedatum::before {
            background-image: url('images/icons/taart.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.mobiel::before {
            background-image: url('images/icons/mobiel.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.wachtwoord::before {
            background-image: url('images/icons/ww.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.mail::before {
            background-image: url('images/icons/mail.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.euro::before {
            background-image: url('images/icons/euro.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.home::before,
        body:has([data-styletype="Fase2"]) .icon-input.huis::before {
            background-image: url('images/icons/huis.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.nummer::before {
            background-image: url('images/icons/hashtag.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.datum::before {
            background-image: url('images/icons/date.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.familie::before {
            background-image: url('images/icons/family.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.auto::before {
            background-image: url('images/icons/car.svg');
        }

        body:has([data-styletype="Fase2"]) .icon-input.company::before {
            background-image: url('images/icons/bedrijf.svg');
        }


    /* GEGEVENS END */

    /* HOME */

    body:has([data-styletype="Fase2"]) .menuType {
        background-color: var(--primary-tint-color);
        text-align: center;
        border: none;
        width: 250px;
        height: 220px;
        display: flex;
        justify-content: center;
    }

        body:has([data-styletype="Fase2"]) .menuType svg {
            height: 88px;
        }

        body:has([data-styletype="Fase2"]) .menuType:hover,
        body:has([data-styletype="Fase2"]) .menuType:focus-within {
            background-color: var(--primary-color);
        }

            body:has([data-styletype="Fase2"]) .menuType:hover .bb-textfield,
            body:has([data-styletype="Fase2"]) .menuType:focus-within .bb-textfield {
                color: #fff;
            }

            body:has([data-styletype="Fase2"]) .menuType:hover svg *,
            body:has([data-styletype="Fase2"]) .menuType:focus-within svg * {
                fill: #fff;
                stroke: #fff;
            }

        body:has([data-styletype="Fase2"]) .menuType .bb-buttonfield {
            position: absolute;
            left: 0;
            top: 0;
            width: calc(100% + 30px);
            height: 100%;
        }

            body:has([data-styletype="Fase2"]) .menuType .bb-buttonfield .btn {
                height: 100%;
                width: 100%;
                opacity: 0;
            }

        body:has([data-styletype="Fase2"]) .menuType .bb-linefield-column > div {
            margin-left: 0 !important;
        }

        body:has([data-styletype="Fase2"]) .menuType .bb-textfield {
            font-size: 22px;
            color: var(--secondary-color);
            font-family: var(--font-bold);
            margin-top: 25px;
        }

    body:has([data-styletype="Fase2"]) .contact-container {
        margin-top: 150px;
    }

        body:has([data-styletype="Fase2"]) .contact-container .contact-card {
            background-color: var(--primary-tint-color);
            border: none;
            color: var(--secondary-color);
        }

            body:has([data-styletype="Fase2"]) .contact-container .contact-card .card-body {
                padding: 30px;
            }

            body:has([data-styletype="Fase2"]) .contact-container .contact-card .contact-title {
                font-family: var(--font-bold);
                font-size: 22px;
                margin-left: 33px;
            }

            body:has([data-styletype="Fase2"]) .contact-container .contact-card .bb-textfield {
                min-height: 52px;
                margin-bottom: 0;
            }

        body:has([data-styletype="Fase2"]) .contact-container > .row:not(.bb-textfield) {
            margin-top: 35px;
        }

    body:has([data-styletype="Fase2"]) .contact-card .icon::before {
        content: '';
        background-image: unset;
        background-repeat: no-repeat;
        position: absolute;
        left: 15px;
        top: 5px;
        width: 100%;
        height: 100%;
    }

    body:has([data-styletype="Fase2"]) .contact-card .icon.chat::before {
        background-image: url('images/icons/chat.svg');
    }

    body:has([data-styletype="Fase2"]) .contact-card .icon.call::before {
        background-image: url('images/icons/telefoon2.svg');
    }

    body:has([data-styletype="Fase2"]) .contact-card .icon.whatsapp::before {
        background-image: url('images/icons/whatsapp.svg');
    }

    body:has([data-styletype="Fase2"]) .contact-card .icon.form::before {
        background-image: url('images/icons/mail2.svg');
    }

    body:has([data-styletype="Fase2"]) .contact-card .icon.insurance::before {
        background-image: url('images/icons/insurance.svg');
    }

    body:has([data-styletype="Fase2"]) .contact-card .icon.user::before {
        background-image: url('images/icons/user.svg');
    }

    body:has([data-styletype="Fase2"]) button.btn.btn-primary.btn-action {
        display: flex;
        flex-direction: row;
        height: 50px;
        align-items: center;
        margin: 15px 0px 15px 15px;
        position: relative;
    }

        body:has([data-styletype="Fase2"]) button.btn.btn-primary.btn-action i {
            padding-right: 15px;
        }

    body:has([data-styletype="Fase2"]) table i.fa.fa-fragile {
        margin-left: 3px;
    }

    body:has([data-styletype="Fase2"]) input:not(.btn)[data-displaytype="Kenteken"] {
        background-color: #FECD23 !important;
        font-size: 58px !important;
        font-family: var(--font-bold);
        width: calc(555px - 30px) !important;
        color: #000 !important;
        height: 100px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Content"] .bb-textfield.isReadonly span[data-displaytype="Kenteken"],
    body:has([data-styletype="Fase2"]) .isReadonly .bb-textfield-column.col-sm-8 span[data-displaytype="Kenteken"] {
        background-color: #FECD23 !important;
        color: #000 !important;
        opacity: 1 !important;
        display: flex;
        align-items: center;
        border: none !important;
        max-height: 42px;
        min-width: 150px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Image-card"]:has(span[data-displaytype="Kenteken"]) {
        margin-left: -30px;
        max-height: 125px;
        margin-top: -30px;
    }

    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card input:not(.btn),
    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card input.form-control:not(.btn),
    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card .bb-selectfield-column select,
    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card textarea.form-control {
        background-color: var(--form-bg-color) !important;
    }

    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] > .show > .card-body > .card {
        background-color: #fff;
        border-radius: var(--border-radius-small);
        padding: 10px 20px;
        overflow: auto;
        max-height: 95vh;
    }

    /* HOME END */
    /* ENSURANCE */
    body:has([data-styletype="Fase2"]) .verzekering-card, body:has([data-styletype="Fase2"]) [data-styletype="Tile"] {
        background-color: var(--secondary-tint-color) !important;
        border: none !important;
        text-align: center;
        border-radius: var(--border-radius-large) !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .card-body * {
            color: var(--text-color);
            font-family: var(--font-light);
        }

        body:has([data-styletype="Fase2"]) .verzekering-card svg {
            margin-left: -15px;
            height: 104px;
        }

        body:has([data-styletype="Fase2"]) .verzekering-card .bb-linefield, body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .bb-linefield {
            min-height: 70px;
        }

        body:has([data-styletype="Fase2"]) .verzekering-card .btn, body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .btn {
            background-color: #fff !important;
            color: var(--primary-color) !important;
            border: var(--border) !important;
            font-size: 15px;
            font-family: var(--font-bold);
        }

            body:has([data-styletype="Fase2"]) .verzekering-card .btn:hover,
            body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .btn:hover,
            body:has([data-styletype="Fase2"]) .verzekering-card .btn:focus-within,
            body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .btn:focus-within {
                background-color: var(--primary-color) !important;
                color: #fff !important;
                border-color: var(--primary-color) !important;
                font-size: 15px;
            }

        body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .bb-textfield:nth-child(2) span {
            font-size: 20px !important;
            word-wrap: break-word;
            font-family: var(--font-bold);
            color: var(--secondary-color);
            padding: 0;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .bb-buttonfield {
            position: absolute;
            bottom: 10px;
            width: 100%;
            left: 15px;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Tile"] svg {
            margin-left: -15px;
            max-height: 104px;
            max-width: 104px;
            width: 100%;
            height: 100%;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="Kentekenrow"] {
        margin-left: 5px;
    }

    body:has([data-styletype="Fase2"]) div[data-type="kenteken"] input {
        height: 42px;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        margin-top: -6px;
        text-align: center;
        text-transform: uppercase;
        color: #000;
        font-size: 20px !important;
        font-weight: 700;
    }

    body:has([data-styletype="Fase2"]) .bb-textfield-column > [data-type="kenteken"] {
        background-color: #FECD23 !important;
        background-image: url(../../Images/kenteken_NL.svg) !important;
        background-repeat: no-repeat !important;
        background-size: contain !important;
        background-position: left !important;
        outline: none;
        box-shadow: none !important;
        padding-left: 10px;
        height: 67px;
        padding-top: 6px;
        text-transform: uppercase !important;
        color: #000;
        font-weight: 700;
        overflow: hidden;
        border-radius: 3px !important;
        text-align: center !important;
        font-size: 20px !important;
        width: 310px;
        margin: 15px 0 15px 0;
        display: flex;
    }

        body:has([data-styletype="Fase2"]) .bb-textfield-column > [data-type="kenteken"] span {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-bottom: 5px;
            font-size: 32px;
        }


    body:has([data-styletype="Fase2"]) .downloads {
        border: none;
        background-color: var(--secondary-tint-color);
    }

        body:has([data-styletype="Fase2"]) .downloads .btn {
            height: 46px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
        }

            body:has([data-styletype="Fase2"]) .downloads .btn em {
                margin-right: 15px;
            }

        body:has([data-styletype="Fase2"]) .downloads .voowaarden {
            margin-top: 35px;
        }

            body:has([data-styletype="Fase2"]) .downloads .voowaarden tr {
                display: flex;
                justify-content: flex-end;
                flex-direction: row-reverse;
                text-align: left;
                align-items: center;
                color: var(--secondary-color);
            }

                body:has([data-styletype="Fase2"]) .downloads .voowaarden tr:hover,
                body:has([data-styletype="Fase2"]) .downloads .voowaarden tr:focus-within {
                    color: var(--primary-color);
                }

                body:has([data-styletype="Fase2"]) .downloads .voowaarden tr .fas {
                    margin-right: 10px;
                }

    /* ENSURANCE END*/

    /* BOOTSTRAP FIXES */

    body:has([data-styletype="Fase2"]) .modal {
        background-color: rgb(0, 0, 0, 0.2);
        backdrop-filter: blur(2px);
    }

        body:has([data-styletype="Fase2"]) .modal .modal-content {
            border: none;
        }

            body:has([data-styletype="Fase2"]) .modal .modal-content b {
                color: var(--primary-color);
                font-family: var(--veh-reg);
                font-weight: inherit;
                font-size: 20px;
            }

    body:has([data-styletype="Fase2"]) .lds-spinner {
        background-image: url(images/forms-loader.svg);
        width: 100%;
        height: 120px;
        background-repeat: no-repeat;
        margin-left: 0;
        display: flex;
        justify-content: center;
        background-position: center;
    }

        body:has([data-styletype="Fase2"]) .lds-spinner > div {
            display: none;
        }

    body:has([data-styletype="Fase2"]) .table-container {
        border: none;
        background-color: var(--secondary-tint-color);
    }

    body:has([data-styletype="Fase2"]) .header-megamenu.nav > li > .nav-link.active {
        color: var(--primary-color);
    }

    body:has([data-styletype="Fase2"]) .table-striped tbody tr:nth-of-type(odd) {
        background-color: #fff
    }

    body:has([data-styletype="Fase2"]) .table-hover tbody tr:hover, body:has([data-styletype="Fase2"]) .table-hover tbody tr:hover td,
    body:has([data-styletype="Fase2"]) .table-hover tbody tr:focus-within, body:has([data-styletype="Fase2"]) .table-hover tbody tr:focus-within td {
        background-color: #F2F0F8
    }

    body:has([data-styletype="Fase2"]) .table-responsive.nowrap .table th {
        font-size: 16px;
        color: var(--text-color) !important;
        padding: 0 15px 10px 15px !important;
        border: none;
    }

    body:has([data-styletype="Fase2"]) .table th, body:has([data-styletype="Fase2"]) .table td {
        border: none;
    }

    body:has([data-styletype="Fase2"]) .table-hover tbody tr .extraInfo tr:hover td,
    body:has([data-styletype="Fase2"]) .table-hover tbody tr .extraInfo tr:focus-within td {
        background-color: rgba(000, 000, 000, 0.1);
    }

    body:has([data-styletype="Fase2"]) .table-responsive.nowrap .table td, body:has([data-styletype="Fase2"]) .table-responsive.nowrap .table th {
        color: var(--secondary-color);
        padding: 15px;
    }

    body:has([data-styletype="Fase2"]) .table-responsive.nowrap > .table td:last-child i,
    body:has([data-styletype="Fase2"]) .table-responsive.nowrap > .dt-bootstrap4 td:last-child i {
        color: var(--primary-color);
    }

    body:has([data-styletype="Fase2"]) .table-responsive.nowrap.clausuleTable .table-hover tbody tr .extraInfo tr td {
        padding-left: 20px !important;
    }

    .table-responsive.nowrap.clausuleTable .table-hover tbody tr:hover, .table-responsive.nowrap.clausuleTable .table-hover tbody tr:hover td
    body:has([data-styletype="Fase2"]) .table-responsive.nowrap.clausuleTable .table-hover tbody tr:focus-within, body:has([data-styletype="Fase2"]) .table-responsive.nowrap.clausuleTable .table-hover tbody tr:focus-within td {
        background-color: #fff !important;
    }

    body:has([data-styletype="Fase2"]) .table-container .table-responsive.nowrap .dt-bootstrap4 .justify-content-between {
        padding: 0 25px;
    }

    body:has([data-styletype="Fase2"]) .page-item.active .page-link, body:has([data-styletype="Fase2"]) .pagination .active.page-number .page-link {
        z-index: 1;
        color: #fff;
        background-color: var(--primary-color);
        border-color: #dee2e6;
    }

    body:has([data-styletype="Fase2"]) .clausules .btn {
        max-width: 160px;
    }

    body:has([data-styletype="Fase2"]) .clausules .card-header {
        color: var(--secondary-color);
        font-size: 24px;
        height: auto;
        text-align: left !important;
        padding: 15px 15px 15px 5px;
        font-family: var(--veh-bold);
    }

    body:has([data-styletype="Fase2"]) .was-validated .form-control:invalid:focus, body:has([data-styletype="Fase2"]) .form-control.is-invalid:focus,
    body:has([data-styletype="Fase2"]) input.form-control.is-invalid {
        border-color: var(--text-danger) !important;
        background-color: #FFF2F2 !important;
        color: #CF0008 !important;
    }

    body:has([data-styletype="Fase2"]) .app-header .app-header__content.header-mobile-open {
        width: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        box-shadow: none;
        min-height: calc(100vh - 90px) !important;
        padding: 15px;
    }

    body:has([data-styletype="Fase2"]) .hamburger {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: var(--border-radius-small);
        align-items: center;
    }

        body:has([data-styletype="Fase2"]) .hamburger:active {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }

            body:has([data-styletype="Fase2"]) .hamburger:active .hamburger-box span,
            body:has([data-styletype="Fase2"]) .hamburger:active .hamburger-inner::before,
            body:has([data-styletype="Fase2"]) .hamburger:active .hamburger-inner::after {
                background-color: #fff;
            }

        body:has([data-styletype="Fase2"]) .hamburger-inner, body:has([data-styletype="Fase2"]) .hamburger-inner::before,
        body:has([data-styletype="Fase2"]) .hamburger-inner::after,
        body:has([data-styletype="Fase2"]) .hamburger.is-active .hamburger-inner,
        body:has([data-styletype="Fase2"]) .hamburger.is-active .hamburger-inner::before,
        body:has([data-styletype="Fase2"]) .hamburger.is-active .hamburger-inner::after {
            background-color: var(--secondary-color);
        }

    body:has([data-styletype="Fase2"]) .table-container .table-responsive.nowrap {
        margin-left: -20px;
        width: calc(100% + 40px);
    }

    body:has([data-styletype="Fase2"]) .table-container .bb-tablefield > .table > tbody > tr > td:last-child, body:has([data-styletype="Fase2"]) .table-container .bb-tablefield > .table > tbody > tr > td:first-child {
        max-width: 20px !important;
        width: unset !important;
    }

    body:has([data-styletype="Fase2"]) .table-container .bb-tablefield .row-sub-icon {
        display: none;
    }

    body:has([data-styletype="Fase2"]) .table-container .table-responsive.nowrap .table th:first-child, body:has([data-styletype="Fase2"]) .table-container .table-responsive.nowrap .table th:last-child {
        width: unset !important;
        min-width: 50px !important;
    }

    body:has([data-styletype="Fase2"]) .table-container .table-responsive.nowrap > .table td:last-child .fa-folder-open {
        display: none !important;
    }

    body:has([data-styletype="Fase2"]) .table-container .table-responsive.nowrap .table td:first-child {
        text-align: left !important;
    }

    body:has([data-styletype="Fase2"]) table.dataTable.table.table-striped > tbody > tr:nth-of-type(2n+1) {
        background-color: #fff;
        box-shadow: none;
    }

        body:has([data-styletype="Fase2"]) table.dataTable.table.table-striped > tbody > tr:nth-of-type(2n+1) > * {
            box-shadow: none;
        }

    body:has([data-styletype="Fase2"]) .navbar .nav-item .nav-link {
        font-family: var(--font-light);
    }

    body:has([data-styletype="Fase2"]) .alert .fa {
        margin-right: 15px;
        font-size: 18px;
        padding: 15px 0;
    }

    body:has([data-styletype="Fase2"]) .alert, body:has([data-styletype="Fase2"]) .errorContainer {
        animation: shoveInBottom 0.40s ease-in-out;
        position: fixed;
        right: 40px;
        bottom: 0;
    }

@media (max-width: 991.98px) {
    body:has([data-styletype="Fase2"]) .navbar .nav-item .nav-link {
        color: var(--secondary-color);
        font-family: var(--font-bold);
        width: 100%;
        font-size: 22px;
    }

    body:has([data-styletype="Fase2"]) .alert {
        margin: 0 auto;
        width: calc(100% - 40px);
        bottom: 5px;
        right: unset;
    }

    body:has([data-styletype="Fase2"]) .app-header .app-header__content .app-header-left .nav-item::after,
    body:has([data-styletype="Fase2"]) .logoutContainer .nav-item::after {
        font-family: "Font Awesome 5 Pro", sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: var(--primary-color);
        position: absolute;
        right: 30px;
        margin-top: 12px;
    }

    body:has([data-styletype="Fase2"]) .app-header .app-header__content .app-header-left .nav-item::after {
        content: '\f061';
    }

    body:has([data-styletype="Fase2"]) .logoutContainer .nav-item::after {
        margin-top: -35px;
        content: '\f08b';
    }

    body:has([data-styletype="Fase2"]) .navbar .nav-item .nav-link:hover,
    body:has([data-styletype="Fase2"]) .navbar .nav-item .nav-link:active,
    body:has([data-styletype="Fase2"]) .navbar .nav-item .nav-link:focus,
    body:has([data-styletype="Fase2"]) .navbar .nav-item .nav-link:focus-within {
        color: var(--primary-color);
    }

    body:has([data-styletype="Fase2"]) .app-header .app-header__content {
        background: #fff;
    }
}


@media (max-width: 997px) {
    body:has([data-styletype="Fase2"]) .custom-header {
        display: none;
        visibility: hidden;
        opacity: 0;
        position: unset;
        padding: 0;
        width: unset;
        height: unset;
    }

    body:has([data-styletype="Fase2"]) .app-header-inner {
        margin: 0;
        align-items: center;
        flex-direction: row-reverse;
    }
}

@media (max-width: 1089.99px) {
    body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] > .show > .card-body {
        padding-bottom: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] {
        max-width: unset !important;
        min-width: 300px !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] {
        max-width: unset !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"],
    body:has([data-styletype="Fase2"]) [data-styletype="Stepper"],
    body:has([data-styletype="Fase2"]) [data-styletype="Header"] {
        padding: 0 1.25rem !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Imagecard"],
    body:has([data-styletype="Fase2"]) [data-styletype="Content"],
    body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] {
        margin-bottom: 5px !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] [data-styletype="Content"] {
            margin-left: 40px !important;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body > .row:first-child > .col-sm-9 {
        max-width: 70%;
        flex: 0 0 70%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body > .row:first-child > .col-sm-3 {
        max-width: 30%;
        flex: 0 0 30%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-9 {
        margin-bottom: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] > .show > .card-body > .row:last-child * {
        justify-content: flex-start;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] [data-styletype="TotaalKolom"] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-3[data-align="Right"] {
        display: flex;
        justify-content: flex-start;
    }
}

@media (min-width: 1089.99px) {
    body:has([data-styletype="Fase2"]) [data-styletype="PremieRow"] {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding-right: 10px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-3[data-align="Right"] {
        margin-left: -80px;
        margin-top: -35px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > div > .card-body {
        padding-left: 30px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] > .show > .card-body > .row > .col-sm-12 {
        margin-top: -35px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .card-body {
        min-height: 360px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .bb-textfield:nth-child(2) {
        height: 70px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9, body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-3 {
        margin-bottom: 20px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] [data-styletype="TotaalKolom"] {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

@media (min-width: 1090px) {
    body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .card-body {
        min-height: 360px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .bb-textfield:nth-child(2) {
        height: 70px;
    }

    body:has([data-styletype="Fase2"]) .btn-row {
        max-width: 585px;
    }
}

@media (max-width: 1090px) {
    body:has([data-styletype="Fase2"]) .col-1, body:has([data-styletype="Fase2"]) .col-2, body:has([data-styletype="Fase2"]) .col-3, body:has([data-styletype="Fase2"]) .col-4, body:has([data-styletype="Fase2"]) .col-5, body:has([data-styletype="Fase2"]) .col-6, body:has([data-styletype="Fase2"]) .col-7, body:has([data-styletype="Fase2"]) .col-8, body:has([data-styletype="Fase2"]) .col-9, body:has([data-styletype="Fase2"]) .col-10, body:has([data-styletype="Fase2"]) .col-11, body:has([data-styletype="Fase2"]) .col-12, body:has([data-styletype="Fase2"]) .col, body:has([data-styletype="Fase2"]) .col-auto, body:has([data-styletype="Fase2"]) .col-sm-1, body:has([data-styletype="Fase2"]) .col-sm-2, body:has([data-styletype="Fase2"]) .col-sm-3, body:has([data-styletype="Fase2"]) .col-sm-4, body:has([data-styletype="Fase2"]) .col-sm-5, body:has([data-styletype="Fase2"]) .col-sm-6, body:has([data-styletype="Fase2"]) .col-sm-7, body:has([data-styletype="Fase2"]) .col-sm-8, body:has([data-styletype="Fase2"]) .col-sm-9, body:has([data-styletype="Fase2"]) .col-sm-10, body:has([data-styletype="Fase2"]) .col-sm-11, body:has([data-styletype="Fase2"]) .col-sm-12, body:has([data-styletype="Fase2"]) .col-sm, body:has([data-styletype="Fase2"]) .col-sm-auto, body:has([data-styletype="Fase2"]) .col-md-1, body:has([data-styletype="Fase2"]) .col-md-2, body:has([data-styletype="Fase2"]) .col-md-3, body:has([data-styletype="Fase2"]) .col-md-4, body:has([data-styletype="Fase2"]) .col-md-5, body:has([data-styletype="Fase2"]) .col-md-6, body:has([data-styletype="Fase2"]) .col-md-7, body:has([data-styletype="Fase2"]) .col-md-8, body:has([data-styletype="Fase2"]) .col-md-9, body:has([data-styletype="Fase2"]) .col-md-10, body:has([data-styletype="Fase2"]) .col-md-11, body:has([data-styletype="Fase2"]) .col-md-12, body:has([data-styletype="Fase2"]) .col-md, body:has([data-styletype="Fase2"]) .col-md-auto, body:has([data-styletype="Fase2"]) .col-lg-1, body:has([data-styletype="Fase2"]) .col-lg-2, body:has([data-styletype="Fase2"]) .col-lg-3, body:has([data-styletype="Fase2"]) .col-lg-4, body:has([data-styletype="Fase2"]) .col-lg-5, body:has([data-styletype="Fase2"]) .col-lg-6, body:has([data-styletype="Fase2"]) .col-lg-7, body:has([data-styletype="Fase2"]) .col-lg-8, body:has([data-styletype="Fase2"]) .col-lg-9, body:has([data-styletype="Fase2"]) .col-lg-10, body:has([data-styletype="Fase2"]) .col-lg-11, body:has([data-styletype="Fase2"]) .col-lg-12, body:has([data-styletype="Fase2"]) .col-lg, body:has([data-styletype="Fase2"]) .col-lg-auto, body:has([data-styletype="Fase2"]) .col-xl-1, body:has([data-styletype="Fase2"]) .col-xl-2, body:has([data-styletype="Fase2"]) .col-xl-3, body:has([data-styletype="Fase2"]) .col-xl-4, body:has([data-styletype="Fase2"]) .col-xl-5, body:has([data-styletype="Fase2"]) .col-xl-6, body:has([data-styletype="Fase2"]) .col-xl-7, body:has([data-styletype="Fase2"]) .col-xl-8, body:has([data-styletype="Fase2"]) .col-xl-9, body:has([data-styletype="Fase2"]) .col-xl-10, body:has([data-styletype="Fase2"]) .col-xl-11, body:has([data-styletype="Fase2"]) .col-xl-12, body:has([data-styletype="Fase2"]) .col-xl, body:has([data-styletype="Fase2"]) .col-xl-auto {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        flex: 0 0 100%;
        max-width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ContactContainer"] > .show > .card-body {
        padding: 15px 15px 15px 25px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationRow"] {
        display: flex;
        flex-direction: row !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationRow"] > .col-sm-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationPopup"] .bb-textfield {
        font-size: 18px;
    }

    body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-8, body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-9 {
        width: 80%;
        max-width: 80% !important;
    }

    body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-4, body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-3 {
        width: 20%;
        max-width: 20% !important;
        padding-top: 5px;
    }

    body:has([data-styletype="Fase2"]) .lid-container {
        margin-left: -30px;
        padding: 30px;
        width: calc(100% + 60px);
    }

        body:has([data-styletype="Fase2"]) .lid-container .col-sm-8 > .bb-linefield {
            margin-left: -6px;
        }

        body:has([data-styletype="Fase2"]) .lid-container .check-list .form-group {
            margin: 0 0 0 15px;
        }

    body:has([data-styletype="Fase2"]) .login-row .col-sm-6:last-child, body:has([data-styletype="Fase2"]) .login-services {
        max-width: unset;
    }

        body:has([data-styletype="Fase2"]) .login-services > .row {
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

            body:has([data-styletype="Fase2"]) .login-services > .row > .col-sm-1 {
                width: 40px;
                padding: 0;
            }

            body:has([data-styletype="Fase2"]) .login-services > .row > .col-sm-8 {
                flex: 0 0 calc(76.66667% - 40px);
                max-width: calc(76.66667% - 40px);
            }

    body:has([data-styletype="Fase2"]) .primary-title, body:has([data-styletype="Fase2"]) .secondary-title {
        font-size: 38px;
    }

    body:has([data-styletype="Fase2"]) .login-row .primary-title {
        margin-bottom: 25px;
    }

    body:has([data-styletype="Fase2"]) .right.login-container {
        margin-top: 125px;
    }

    body:has([data-styletype="Fase2"]) .login-services svg {
        max-width: 40px;
    }

    body:has([data-styletype="Fase2"]) .login-services > .row > .col-sm-3 {
        max-width: 70px;
    }

    body:has([data-styletype="Fase2"]) .banner .primary-link {
        margin: 0 !important;
    }

    body:has([data-styletype="Fase2"]) .app-header .app-header__logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: baseline;
    }
}

@media (min-width: 1089.99px) {
    body:has([data-styletype="Fase2"]) .login-row hr {
        margin: 0;
        height: 450px;
        width: 1px;
        background-color: var(--border-color);
    }

    body:has([data-styletype="Fase2"]) .lid-container {
        margin-top: 125px;
        padding: 30px 30px;
        position: relative;
        width: calc(100% + 60px);
        margin-left: -30px;
    }
}

/* --BOOTSTRAP FIXES END-- */

/* RESPONSIVE */

@media (min-width: 1720px) {
    body:has([data-styletype="Fase2"]) .app-main .app-main__inner, body:has([data-styletype="Fase2"]) .app-header-inner, body:has([data-styletype="Fase2"]) .footer .footer-nav ul, body:has([data-styletype="Fase2"]) .footer .footer-content {
        width: 100%;
        margin: auto;
        box-shadow: none;
    }

    body:has([data-styletype="Fase2"]) .app-header-inner {
        margin-top: 45px;
    }

    body:has([data-styletype="Fase2"]) .footer .footer-content {
        padding: 0 30px;
    }

    body:has([data-styletype="Fase2"]) .lid-container {
        border-radius: var(--border-radius-large);
    }
}

@media (min-width: 1240px) {
    body:has([data-styletype="Fase2"]) .login-row {
        margin-top: 35px;
    }

        body:has([data-styletype="Fase2"]) .login-row .col-sm-6 {
            max-width: 600px;
        }
}


@media (max-width: 767px) {
    body:has([data-styletype="Fase2"]) .lid-container {
        margin-left: -30px;
        padding: 30px;
        width: calc(100% + 45px);
    }

    body:has([data-styletype="Fase2"]) .footer-content .col-sm-10 {
        display: flex;
        align-items: self-start;
        flex-direction: column;
    }

        body:has([data-styletype="Fase2"]) .footer-content .col-sm-10 a {
            margin-bottom: 1rem;
        }

    body:has([data-styletype="Fase2"]) .footer-content .col-sm-2 {
        margin-bottom: 1rem;
    }

    body:has([data-styletype="Fase2"]) .bottom-footer > .row {
        padding-top: 30px;
        flex-direction: column-reverse;
    }

    body:has([data-styletype="Fase2"]) .bottom-footer {
        margin-top: 2.5rem;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] > .show > .card-body {
        padding: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InformationContainer"] {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] [data-styletype="Content"] {
        font-size: 18px !important;
    }
}

/* --RESPONSIVE END-- */

/* SOFTRULES */

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    text-align: right;
    flex: 0 0 35%;
    max-width: 35%;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="Message"] span {
    color: var(--secondary-color) !important;
    font-size: 21px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .show .card-body .card {
    padding: 10px 0 20px 0;
}

body:has([data-styletype="Fase2"]) .bb-container.card.page.sr {
    border: none;
    background-color: transparent;
    max-width: unset !important;
}

body:has([data-styletype="Fase2"]) .bb-container.card.page > .show > .card-body > .card {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

body:has([data-styletype="Fase2"]) .row.pagination-row .btn.btn-primary.sr-nextpage,
body:has([data-styletype="Fase2"]) .btn.btn-primary.sr-previouspage {
    width: fit-content;
    display: block;
    position: inherit;
    border-radius: var(--border-radius-reg);
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-textfield-column [data-displaytype="Kenteken"] {
    background-color: #FECD23 !important;
    width: 310px !important;
    border: unset;
    font-size: 31px !important;
}

body:has([data-styletype="Fase2"]) .sr.card {
    border: none;
    border-radius: unset;
    background-color: transparent;
}

    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="ReadonlyContainer"] {
        font-size: 16px;
        box-shadow: none;
        border-radius: var(--border-radius-reg);
        border: none;
        margin: 25px 0;
        width: 90%;
        font-family: var(--font-bold);
        color: var(--secondary-color);
    }

        body:has([data-styletype="Fase2"]) .sr.card[data-styletype="ReadonlyContainer"] label {
            font-family: var(--font-light) !important;
        }

        body:has([data-styletype="Fase2"]) .sr.card[data-styletype="ReadonlyContainer"] [data-styletype="Text"] {
            font-family: var(--font-reg);
        }

    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] {
        background: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        max-width: unset !important;
    }

        body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card {
            background-color: #fff;
            border-radius: var(--border-radius-small);
            padding: 10px 20px;
        }

body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationPopup"] .bb-textfield {
    font-size: 24px;
    color: var(--secondary-color);
    font-family: var(--font-reg);
    padding: 15px 0 30px 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationRow"] > :first-child .btn {
    background-color: transparent !important;
    color: var(--secondary-button-color) !important;
    border: 2px solid var(--secondary-button-color) !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationRow"] > :first-child .btn:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="ConfirmationRow"] > :first-child .btn:focus-within {
        background-color: var(--secondary-color) !important;
        color: #fff !important;
        border: 2px solid var(--secondary-button-color) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="ReadonlyContainer"] .card-body > .row > div > .bb-textfield:first-child {
    font-family: var(--font-light);
    font-size: 14px;
    margin-top: 10px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] [data-styletype="ReadonlyContainer"] .bb-textfield.isReadonly .bb-textfield-column {
    height: auto !important;
    max-width: unset !important;
    padding-right: 30px !important;
}

body:has([data-styletype="Fase2"]) .grid.sr .row.sr:last-child .col-sm-12.sr .card .col-sm-4 {
    font-size: unset;
    font-weight: initial;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    padding-right: 0;
}

body:has([data-styletype="Fase2"]) .bb-container.card.page.sr, body:has([data-styletype="Fase2"]) [data-styletype="minimal"],
body:has([data-styletype="Fase2"]) [data-styletype="minimal"] .card-header, body:has([data-styletype="Fase2"]) [data-styletype="FormulierSlotvragen"],
body:has([data-styletype="Fase2"]) [data-styletype="FormulierSlotvragen"] .card-header {
    background-color: var(--form-bg-color);
}

body:has([data-styletype="Fase2"]) .bb-selectfield.row .bb-selectfield-column.col-sm-8,
body:has([data-styletype="Fase2"]) .bb-textfield.row .bb-textfield-column.col-sm-8,
body:has([data-styletype="Fase2"]) .bb-togglefield.row .bb-togglefield-column.col-sm-8,
body:has([data-styletype="Fase2"]) .bb-selectfield.row .bb-selectfield-column.col-sm-7,
body:has([data-styletype="Fase2"]) .bb-textfield.row .bb-textfield-column.col-sm-7,
body:has([data-styletype="Fase2"]) .bb-togglefield.row .bb-togglefield-column.col-sm-7,
body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .col-sm-4 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .col-sm-1,
body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] .col-sm-1 {
    flex: 0 0 5% !important;
    max-width: 5% !important;
    padding: 0;
}

body:has([data-styletype="Fase2"]) .bb-togglefield .btn-group.btn-radio {
    width: 100%;
}

body:has([data-styletype="Fase2"]) .btn-group.btn-radio.is-invalid {
    border: 1px solid var(--text-danger);
    border-radius: 9px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CancelContainer"] .card-body {
    padding: 0;
    margin-top: 15px;
}

body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio button,
body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"].btn.btn-primary {
    min-height: 56px;
    padding-right: 15px !important;
    word-break: break-word;
    text-wrap: auto;
    height: auto !important;
    font-family: var(--font-bold);
    background-color: #fff !important;
    border: var(--border) !important;
    color: var(--secondary-color) !important;
    border-radius: 0;
    font-size: 10pt;
    padding: 0;
    font-weight: 400;
    text-align: left;
}

    body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio button:first-child {
        border-radius: var(--border-radius-small);
        padding-left: 45px;
    }

    body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio button:last-child {
        border-radius: var(--border-radius-small);
        padding-left: 45px;
        margin-left: 15px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"].btn.btn-primary {
    border-radius: var(--border-radius-small);
    padding-left: 45px;
}

    body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio .active,
    body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio button:hover,
    body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio.activeButDisabled,
    body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"].btn.btn-primary:hover,
    body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio button:focus-within,
    body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"].btn.btn-primary[data-select="1"] {
        background-color: var(--secondary-button-color) !important;
        color: #fff !important;
        border: 1px solid var(--secondary-button-color) !important;
    }

body:has([data-styletype="Fase2"]) .bb-togglefield-column .btn-group.btn-radio.is-invalid button {
    border: 1px solid var(--text-danger);
    background-color: #FFF2F2;
}

body:has([data-styletype="Fase2"]) .sr .card-header {
    font-family: var(--font-bold);
    font-size: 22px;
    border: none;
    border-radius: var(--border-radius-reg);
    background-color: transparent;
    margin-left: -15px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .show .card-body .card .bb-textfield.isReadonly .bb-textfield-column {
    height: 56px;
    max-width: 100% !important;
    padding-right: 15px;
}

body:has([data-styletype="Fase2"]) .isReadonly .bb-textfield-column.col-sm-7 span,
body:has([data-styletype="Fase2"]) .isReadonly .bb-textfield-column.col-sm-8 span,
body:has([data-styletype="Fase2"]) .isReadonly .bb-selectfield-column.col-sm-7 select,
body:has([data-styletype="Fase2"]) .isReadonly .bb-selectfield-column.col-sm-8 select,
body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column span {
    height: 56px !important;
    background-color: var(--input-background-color) !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-family: var(--font-reg);
    color: var(--secondary-color) !important;
    border: var(--border);
    border-radius: var(--border-radius-small);
    opacity: 0.5;
    cursor: not-allowed;
    padding-left: 10px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Content"] .bb-textfield-column.col-sm-8 span,
body:has([data-styletype="Fase2"]) [data-styletype="Content"] .bb-selectfield.row .bb-selectfield-column.col-sm-8 label {
    cursor: default;
    background-color: transparent !important;
    opacity: 1;
    border: none;
    padding: 0;
    height: auto !important;
    font-size: 16px !important;
    font-weight: bold;
    font-family: var(--font-bold);
}

body:has([data-styletype="Fase2"]) [data-styletype="Content"] .form-group .control-label.col-sm-4 {
    margin-bottom: 2px;
}

body:has([data-styletype="Fase2"]) .has-error .bb-textfield-column .input-group, body:has([data-styletype="Fase2"]) .has-error .bb-selectfield-column select,
body:has([data-styletype="Fase2"]) .has-error .bb-togglefield-column .btn-group.btn-radio {
    border-radius: var(--border-radius-small);
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"],
body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] [data-styletype="MeerInfo"] .card .card-header,
body:has([data-styletype="Fase2"]) [data-styletype="MeerInfo"] .card .collapse {
    background-color: var(--secondary-tint-color) !important;
    border-radius: var(--border-radius-reg) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] {
    margin-top: 25px;
    margin-bottom: 15px;
}

body:has([data-styletype="Fase2"]) .switch-slider.round {
    background-color: var(--border-color);
}

body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-8,
body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] .show .card-body .row.sr:nth-child(1) .col-sm-9,
body:has([data-styletype="Fase2"]) .sr[data-styletype="AanvullendeDekking"] > .show > .card-body > .row.sr:nth-child(1) .col-sm-12,
body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body > .row.sr:nth-child(1) .row.sr:nth-child(1) .bb-textfield {
    color: var(--secondary-color);
    font-family: var(--veh-bold);
    font-size: 28px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PremieKolom"] {
    padding-left: 0;
    padding-right: 35px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="PremieKolom"] > .row {
        display: flex;
        justify-content: flex-end;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="PremieKolom"] > .row:first-child * {
            font-size: 21px;
            margin-bottom: 0;
        }

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] [data-styletype="MeerInfo"] .card .card-header span {
    color: var(--primary-color) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="MeerInfo"] .card .collapse {
    color: var(--secondary-color);
    font-family: var(--font-light);
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body > .row.sr:first-child {
    background-color: var(--secondary-tint-color);
    border-top-left-radius: var(--border-radius-large);
    border-top-right-radius: var(--border-radius-large);
    padding-top: 15px;
    height: 90px;
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekkingen"], body:has([data-styletype="Fase2"]) [data-styletype="VerkoperHoofdDekkingen"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: unset;
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] {
    box-shadow: rgb(186, 190, 196, .3) 0px 12px 24px;
    border-radius: var(--border-radius-large) !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body,
    body:has([data-styletype="Fase2"]) [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
        outline: 1px solid transparent;
        border-radius: var(--border-radius-large);
    }

body:has([data-styletype="Fase2"]) [data-styletype="DekkingGekozen"] [data-styletype="HoofdDekking"] > .show > .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="DekkingGekozen"] [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
    outline: 3px solid var(--primary-color);
    border-radius: var(--border-radius-large);
}


body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] {
    outline: 2px solid var(--primary-color);
    border-radius: var(--border-radius-reg) !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .card-body {
        padding: 0 0 20px 0;
        color: var(--secondary-color);
    }

        body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .card-body > .row {
            margin: 0;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9, body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-3 {
        background-color: var(--secondary-tint-color);
        padding: 15px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9 {
        border-top-left-radius: 10px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9 span {
            font-size: 28px;
            font-family: var(--veh-bold);
            color: var(--secondary-color);
        }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-3 {
        border-top-right-radius: 10px;
        align-items: center;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-3 span {
            color: var(--secondary-color);
            font-family: var(--font-reg);
            font-size: 16px;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .show > .card-body > .row > .col-sm-12 {
        padding: 0px 40px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .show > .card-body > .row > .col-sm-12 span {
            font-size: 14px;
            color: var(--secondary-color);
            font-family: var(--font-light);
        }

body:has([data-styletype="Fase2"]) [data-styletype="Text"] {
    padding-left: 0 !important;
    font-size: 14px !important;
    color: var(--secondary-color);
    font-family: var(--font-light);
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] .bb-selectfield select {
    width: 100% !important;
    max-width: unset !important;
    text-align: left;
    margin: 15px 0;
    font-size: 14px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] {
    box-shadow: none;
    border: none !important;
    margin-left: unset;
    margin-top: 20px;
    margin-bottom: 75px;
    width: calc(100% + 30px);
    padding: unset;
    background-color: transparent;
    border-radius: unset;
    font-size: 13pt;
    font-weight: bold;
}

    body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .card .card-body {
        background-color: transparent;
    }



body:has([data-styletype="Fase2"]) [data-styletype="Betaaltermijn"] * {
    width: auto;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6:last-child > .row {
    width: auto;
    margin-right: 25px;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

body:has([data-styletype="Fase2"]) .sr [data-styletype="Betaaltermijn"] .bb-selectfield .col-sm-8 {
    width: 200px;
    flex: unset !important;
    max-width: 100% !important;
    margin-top: -3px;
    margin-right: -25px;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6:last-child .bb-textfield {
    font-size: 42px;
    color: var(--secondary-color);
    font-family: var(--veh-reg);
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekkingen"]::after, body:has([data-styletype="Fase2"]) [data-styletype="VerkoperHoofdDekkingen"]::after {
    display: none;
}

body:has([data-styletype="Fase2"]) .sr [data-type="text"] [data-styletype="Download"] a {
    display: block;
    background-color: var(--secondary-color);
    color: #fff !IMPORTANT;
    width: 280px;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 15px;
    font-family: var(--font-reg);
    text-decoration: none !important;
    margin-left: 0 !important;
    border-radius: var( --border-radius-small);
}

    body:has([data-styletype="Fase2"]) .sr [data-type="text"] [data-styletype="Download"] a:hover,
    body:has([data-styletype="Fase2"]) .sr [data-type="text"] [data-styletype="Download"] a:focus-within {
        background-color: var(--primary-color);
    }

body:has([data-styletype="Fase2"]) [data-styletype="Download"] a::before {
    content: '\f019';
    font-family: 'Font Awesome 5 Pro', sans-serif;
    font-weight: 500;
    margin-right: 10px;
}

body:has([data-styletype="Fase2"]) .pagination-row {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
    flex-wrap: wrap;
}

body:has([data-styletype="Fase2"]) [data-styletype="Titel"] .bb-textfield .bb-textfield-column span {
    font-family: var(--font-bold);
    font-size: 28px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] .bb-selectfield.row .bb-selectfield-column.col-sm-8 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="MeerInfo"] {
    margin-top: 10px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] span[data-type="currency"] {
    padding-left: 10px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] .col-sm-6 .col-sm-9 .bb-textfield-column span {
    margin-top: 0;
    line-height: normal;
}

body:has([data-styletype="Fase2"]) .btn.btn-primary.sr-previouspage:hover,
body:has([data-styletype="Fase2"]) .btn.btn-primary.sr-nextpage:hover,
body:has([data-styletype="Fase2"]) .btn.btn-primary.sr-previouspage:focus-within,
body:has([data-styletype="Fase2"]) .btn.btn-primary.sr-nextpage:focus-within {
    color: #fff;
    background-color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .show .card-body .bb-textfield {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column, body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-textfield.isReadonly .bb-textfield-column {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-left: 0px;
    margin-bottom: unset;
    max-width: 297px;
    margin-right: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Bestanden"] .bb-textfield-column {
    height: auto !important;
}

body:has([data-styletype="Fase2"]) .sr [type="text"] a {
    color: var(--primary-color);
    text-decoration: underline !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 {
    max-width: 20px;
}

body:has([data-styletype="Fase2"]) [data-styletype="NegatiefPunt"] .col-sm-2 span,
body:has([data-styletype="Fase2"]) [data-styletype="NegatiefPunt"] .col-sm-1 span {
    color: var(--negative-color) !important;
    visibility: hidden;
}

body:has([data-styletype="Fase2"]) [data-styletype="PositiefPunt"] .col-sm-2 span,
body:has([data-styletype="Fase2"]) [data-styletype="PositiefPunt"] .col-sm-1 span {
    color: var(--positive-color) !important;
    visibility: hidden;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="NegatiefPunt"] .col-sm-2 span,
body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="NegatiefPunt"] .col-sm-1 span {
    color: var(--primary-color) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-2 span,
body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 span {
    color: var(--primary-color) !important;
}

body:has([data-styletype="Fase2"]) .btn.btn-primary[value="Pakket aanvragen"] {
    left: calc(100% - 230px) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9 .bb-textfield:nth-child(2) span {
    font-size: 14px;
    font-family: var(--font-light);
}

body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] {
    border-radius: var(--border-radius-reg) !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] * {
        color: var(--secondary-color);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-body {
        padding: 1.25rem 1.25rem 0.5rem 2rem;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-header {
        background-color: transparent !important;
        padding: 0 !important;
        height: 20px;
        font-size: 16px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .btn,
    body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-3 .btn {
        background-color: transparent !important;
        padding: 0 !important;
        width: auto;
        font-size: 14px;
        margin-right: 10px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .btn[value="Wijzigen"],
        body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .btn[value="Royeren"],
        body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-3 .btn[value="Wijzigen"] {
            color: var(--primary-color) !important;
            font-family: var(--font-light);
        }

        body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .btn[value="Verwijderen"],
        body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .btn[value="Beeindigen"] {
            color: var(--text-danger) !important;
            font-family: var(--font-light);
        }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .bb-buttonfield:first-child .bb-buttonfield-column::after,
    body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-3 .bb-buttonfield .bb-buttonfield-column::after {
        content: '\f040';
        font-family: 'Font Awesome 5 Pro', sans-serif;
        color: var(--primary-color);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .bb-buttonfield-column::after {
        content: '\f2ed';
        font-family: 'Font Awesome 5 Pro', sans-serif;
        color: var(--text-danger);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] [data-styletype="TotaalKolom"] > div:last-child {
        font-family: var(--veh-bold);
        font-size: 24px;
        margin-top: -10px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .show .card-body [data-styletype="Verzekeringskaart"] .bb-textfield.isReadonly .bb-textfield-column {
    height: auto;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column {
    border: none;
    padding-left: 15px;
    align-items: flex-start;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-selectfield.isReadonly .bb-selectfield-column span {
        display: flex;
        align-items: center;
        font-size: 18px !important;
        font-family: var(--font-reg);
    }

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] .bb-textfield:not(.isReadonly) div[data-type="currency"] > div::before {
    top: 18px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] > .show > .card-body > .row:last-child * {
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] > .show > .card-body > .row > .col-sm-12 {
    display: flex;
    width: auto;
    flex-wrap: wrap;
    flex-direction: row;
}

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] > .show > .card-body > .row > .col-sm-12 > div > div {
        width: 140px;
        padding-right: 0;
    }

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] > .show > .card-body {
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] > .show, body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"], body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] > .show > .card-body {
    height: 100%;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] > .col-sm-6 {
    margin-bottom: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > div > .card-body {
    max-width: 750px;
    padding-left: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > .show > .card-body [data-styletype="Minimal"] .header-col, body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeContainer"] [data-styletype="Collapsible"] > .show > .card-body [data-styletype="Minimal"] > .show > .card-body {
    padding: 15px 0;
}

body:has([data-styletype="Fase2"]) .sr.card[data-styletype="Collapsible"] {
    border: var(--border);
    padding: 15px;
    border-radius: var(--border-radius-reg);
}

body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-4.align-self-center {
    max-width: 100%;
    flex: 0 0 100%;
}

body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .card {
    margin-bottom: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="ButtonRow"], body:has([data-styletype="Fase2"]) .btn-row {
    display: flex;
    flex-direction: row;
    width: calc(100% - 40px);
    justify-content: space-between;
}

    body:has([data-styletype="Fase2"]) [data-styletype="ButtonRow"] > div, body:has([data-styletype="Fase2"]) .btn-row > div {
        display: flex;
        width: auto;
        max-width: unset;
        flex: unset;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Collapsible"] .col-sm-9 {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: var(--font-light);
    margin-bottom: 15px;
    margin-top: -15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PremieRow"] > .col-sm-6:last-child {
    color: var(--secondary-color);
    font-family: var(--font-bold);
    font-size: 18px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .col-sm-4 {
    color: var(--secondary-color);
    font-family: var(--font-reg);
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .sr .bb-selectfield-column select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-left: 12px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .sr .bb-selectfield-column::after {
    content: '\f078';
    display: block;
    font-family: "Font Awesome 5 Pro", sans-serif;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: bold;
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] [data-styletype="SubTitle"] * {
    font-size: 14px;
    margin-top: 3px;
}

body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body > .row:first-child > .col-sm-9 > .row > .col-sm-12:first-child {
    margin-bottom: -25px;
    margin-top: 0px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PositiefPunt"] .col-sm-2 span::before, body:has([data-styletype="Fase2"]) [data-styletype="PositiefPunt"] .col-sm-1 span::before {
    content: '\f058';
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Pro", sans-serif;
    visibility: visible;
}

body:has([data-styletype="Fase2"]) [data-styletype="NegatiefPunt"] .col-sm-2 span::before, body:has([data-styletype="Fase2"]) [data-styletype="NegatiefPunt"] .col-sm-1 span::before {
    content: '\f056';
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Pro", sans-serif;
    visibility: visible;
}

body:has([data-styletype="Fase2"]) [data-styletype="PositiefPunt"] .col-sm-2, body:has([data-styletype="Fase2"]) [data-styletype="PositiefPunt"] .col-sm-1, body:has([data-styletype="Fase2"]) [data-styletype="NegatiefPunt"] .col-sm-2, body:has([data-styletype="Fase2"]) [data-styletype="NegatiefPunt"] .col-sm-1 {
    max-width: 24px;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-2 span::before, body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 span::before {
    content: '\f00c';
}

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .show .card-body .bb-textfield.isReadonly .bb-textfield-column.col-sm-12 {
    height: unset !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="minimal"] .bb-textfield-column span, body:has([data-styletype="Fase2"]) [data-styletype="minimal"] .bb-textfield-column label span, body:has([data-styletype="Fase2"]) [data-styletype="minimal"] .bb-selectfield-column span, body:has([data-styletype="Fase2"]) [data-styletype="minimal"] .bb-selectfield-column label span {
    padding-left: unset;
}

body:has([data-styletype="Fase2"]) .container.body-content {
    max-width: unset;
    background-color: var(--form-bg-color);
    padding: 0;
    overflow-x: hidden;
}

body:has([data-styletype="Fase2"]) .checkbox.sr {
    display: flex;
    justify-content: end;
    align-content: end;
    float: right;
}

body:has([data-styletype="Fase2"]) span[data-styletype="SubTitle"] {
    font-family: var(--font-bold);
    font-size: 18px;
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] {
    max-width: 700px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] [data-styletype="NextButton"] {
        max-width: 342px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="VerzekeringRow"] [data-styletype="Tile"] .bb-textfield:nth-child(2) [data-styletype="Title"] {
    font-size: 38px !important;
    color: var(--secondary-color) !Important;
    font-family: var(--veh-bold) !Important;
}

body:has([data-styletype="Fase2"]) [data-styletype="VerzekeringRow"] [data-styletype="Tile"] .card-body {
    min-height: 360px;
}

body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
    margin-bottom: 0;
    padding-bottom: 2px;
    padding-right: 40px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row:first-child span {
        font-size: 24px !important;
        font-family: var(--veh-bold);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row:last-child span {
        font-size: 12px;
        font-family: var(--font-light);
    }

body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .sr .isReadonly .bb-selectfield-column::after {
    display: none;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] [data-styletype="SubTitle"] {
    color: var(--secondary-color);
    font-size: 24px;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] [data-styletype="SmallTitle"] {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: var(--font-light);
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--font-light);
    font-weight: 400;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] [data-styletype="FinePrint"] {
    color: var(--text-color);
    font-size: 12px;
    font-family: var(--font-light);
    font-weight: 400;
}

body:has([data-styletype="Fase2"]) .sr-loader {
    background-image: url(images/forms-loader.svg);
    width: 40px;
    height: 90px;
}

body:has([data-styletype="Fase2"]) .modal-body .wait::after {
    content: "Een ogenblik geduld";
}

body:has([data-styletype="Fase2"]) .sr-loader-text {
    display: none;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] .col-sm-2 {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] .col-sm-10 {
    max-width: calc(100% - 25px) !important;
    flex: 0 0 calc(100% - 25px) !important;
    padding-left: 5px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Tile"] {
    min-height: 300px;
}

body:has([data-styletype="Fase2"]) .bb-selectfield.row .bb-selectfield-column.col-sm-7 .form-control-static.sr {
    width: 100%;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] [data-styletype="AanvullendeDekking"] .bb-selectfield label {
    display: block;
}

body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"]:has([data-styletype="ExtraCoveragesContainer"]) .btn.btn-primary {
    max-width: 375px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekkingen"] .bb-selectfield label.col-sm-4 {
    display: flex;
    max-width: 100%;
    flex: 0 0 100%;
}

body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] .bb-selectfield .col-sm-8 {
    display: flex;
    justify-content: flex-start;
}

    body:has([data-styletype="Fase2"]) [data-styletype="AanvullendeDekking"] .bb-selectfield .col-sm-8 span {
        font-family: var(--font-bold);
    }

body:has([data-styletype="Fase2"]) [data-styletype="ContactRow"] .form-group {
    margin-bottom: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="ContactRow"] div span {
    color: var(--text-danger);
}

    body:has([data-styletype="Fase2"]) [data-styletype="ContactRow"] div span::before {
        font-family: "Font Awesome 5 Pro", sans-serif;
        content: '\f671';
        color: var(--text-danger);
        margin-right: 5px;
    }


body:has([data-styletype="Fase2"]) [data-styletype="Header"] > .show > .card-body {
    display: flex;
    height: 85px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Header"] > .show > .card-body > div {
        width: 33%;
    }

body:has([data-styletype="Fase2"]) [data-styletype="layoutContainer"] > .show > .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Header"] * {
    margin: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="MultipleInput"] .card-body {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] {
    max-width: 800px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"]:has([data-styletype="ExtraCoveragesContainer"]) {
        max-width: 700px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] [data-styletype="minimal"] .card-body,
    body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] .card > .show > .card-body {
        padding: 0;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] > .show > .card-body {
    display: flex;
    align-items: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="Imagecard"] {
    max-width: 220px;
    padding-left: 10px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Checklistcard"] .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="HorizontalContainer"] .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="ChecklistCard"] .card-header > div {
    font-family: var(--font-light);
    font-size: 16px;
    text-align: center;
    padding: 0;
    text-decoration: underline;
}

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Editable"] {
    width: 100%;
    margin: 0 !important;
    padding-bottom: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Editable"] > .show > .card-body {
        display: flex;
        justify-content: space-between;
    }

body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"].hidden {
    display: none !important;
    visibility: hidden;
}

    body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"].hidden [data-styletype="Edit"] {
        transform: translateX(-525px);
        transition: 0.2s ease-out;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"].hidden [data-styletype="Receipt"] {
        transform: translateX(-525px);
        transition: 0.2s ease-out;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Edit"] {
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 525px;
    min-width: 525px;
    height: 100%;
    margin-left: 0;
    transition: 0.55s ease-in;
    transform: translateX(0px);
    animation: shoveInRight 0.5s ease-in-out;
    margin: 0 !important;
    border-radius: 0px 10px 10px 0px !important;
    max-height: unset !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    margin-left: 0;
    transition: 0.55s ease-in;
    transform: translateX(0px);
    background-color: var(--secondary-color) !important;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.15);
    direction: rtl;
    max-width: 550px;
    animation: shoveInLeft 0.5s ease-in-out;
    margin: 0 !important;
    border-radius: 10px 0px 0px 10px !important;
    max-height: unset !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoveragesContainer"] {
    margin-top: 1.25rem;
}

body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] {
    border-radius: 15px !important;
    background-color: #fff !important;
    box-shadow: 0 4px 48px 0 rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
}

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] > .show > .card-body {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="PayOffs"] > .show > .card-body {
        display: flex;
        flex-direction: row;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="PayOffs"] span {
        margin-right: 40px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="PayOffs"] span::before {
            content: '\f058';
            font-family: var(--fa);
            color: var(--positive-color);
            margin-right: 10px;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="TitleContainer"],
    body:has([data-styletype="Fase2"]) [data-styletype="PayOffs"] {
        margin-bottom: 0 !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="TitleContainer"] > .show > .card-body {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

            body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="TitleContainer"] > .show > .card-body svg {
                margin-right: 25px;
            }

            body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="TitleContainer"] > .show > .card-body span {
                font-size: 32px;
                font-family: var(--font-bold);
                color: var(--secondary-color);
                line-height: normal;
            }

@keyframes shoveInLeft {
    0% {
        transform: translateX(580px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes shoveInRight {
    0% {
        transform: translateX(-580px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes shoveInBottom {
    0% {
        transform: translateY(-120px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
    }
}

body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] .bb-buttonfield .btn.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
    margin-top: 25px;
    font-size: 15px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] .bb-buttonfield .btn.btn-primary:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] .bb-buttonfield .btn.btn-primary:focus-within {
        background-color: var(--secondary-color) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] * {
    direction: ltr;
}

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Title"] {
    color: #fff;
    font-size: 38px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] .card-body {
    padding: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Close"],
body:has([data-styletype="Fase2"]) [data-styletype="Edit"] [data-styletype="Close"],
body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"],
body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"] {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Close"] .btn.btn-primary,
    body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] [data-styletype="Close"] .btn.btn-primary,
    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"] .btn.btn-primary {
        text-align: left;
        padding: 5px 0;
        height: auto;
        font-family: var(--font-light);
        font-size: 14px;
        background-color: transparent !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"],
body:has([data-styletype="Fase2"]) [data-styletype="ReceiptPopup"] {
    margin: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] .card-body,
    body:has([data-styletype="Fase2"]) [data-styletype="ReceiptPopup"] .card-body {
        padding: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] [data-styletype="Close"] .btn.btn-primary {
        color: var(--secondary-color) !important;
        text-align: right;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Close"] .btn.btn-primary:hover,
        body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] [data-styletype="Close"] .btn.btn-primary:hover,
        body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"].btn.btn-primary:hover,
        body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"].btn.btn-primary:hover,
        body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Close"] .btn.btn-primary:focus-within,
        body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] [data-styletype="Close"] .btn.btn-primary:focus-within,
        body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"].btn.btn-primary:focus-within,
        body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"].btn.btn-primary:focus-within {
            background-color: transparent !important;
            opacity: 0.8;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] [data-styletype="Close"] .btn.btn-primary::before,
        body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] [data-styletype="Close"] .btn.btn-primary::after,
        body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"].btn.btn-primary::after,
        body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"].btn.btn-primary::after {
            content: '\f00d';
            font-family: "Font Awesome 5 Pro", sans-serif;
            font-size: 12px;
            margin-right: 10px;
        }

body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"].btn.btn-primary::after {
    color: var(--secondary-color);
    font-size: 16px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"].btn.btn-primary {
    background-color: transparent !important;
    margin: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] {
    max-width: 450px;
    padding: 0 15px !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-type="text"] {
        color: var(--text-color);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Title"] {
        font-size: 28px;
        color: var(--secondary-color);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] .bb-buttonfield:last-of-type .btn.btn-primary {
        color: var(--secondary-color) !important;
        background-color: transparent !important;
        text-decoration: underline !important;
        padding-bottom: 0 !important;
        height: auto;
        font-family: var(--font-reg) !important;
        margin: 0 !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] .bb-buttonfield:last-of-type .btn.btn-primary:hover,
        body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] .bb-buttonfield:last-of-type .btn.btn-primary:focus-within {
            color: var(--secondary-color) !important;
            background-color: transparent !important;
            text-decoration: unset !important;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="Confirmation"] [data-styletype="Close"] {
        width: 24px;
        height: 24px;
        position: absolute;
        right: -15px;
        top: -5px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"] > .show > .card-body {
    color: #71132a;
    background-color: #f7d3dc;
    border-radius: 5px;
    border: 2px solid #f4c2ce;
    padding-left: 55px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"] > .show > .card-body::before {
        content: '\f848';
        font-family: var(--fa);
        position: absolute;
        left: 23px;
        font-size: 16px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] [data-styletype="AttentionContainer"] {
    width: 700px;
    max-width: calc(100vw - 45px);
}

body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"] {
    max-width: 700px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] [data-styletype="AttentionContainer"] {
    max-width: 700px;
}

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] [data-styletype="AttentionContainer"] > .show > .card-body {
    padding: 15px 15px 15px 55px;
}

body:has([data-styletype="Fase2"]) .sr .card-header[data-toggle="collapse"] {
    margin: 0 !important;
}



body:has([data-styletype="Fase2"]) [data-styletype="Onderdelen"] {
    display: block;
    padding-left: 15px;
    line-height: 25px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Onderdelen"]::after {
        content: '';
        position: absolute;
        background-image: linear-gradient(#9A90B8 33%, rgba(255, 255, 255, 0) 0%);
        background-position: right;
        background-size: 1px 3px;
        width: 1px;
        background-repeat: repeat-y;
        height: 100%;
        left: 15px;
        top: 0
    }

body:has([data-styletype="Fase2"]) [data-styletype="Edit"] [data-styletype="Timelinesingle"] [data-styletype="Minimal"]:last-child svg {
    cursor: pointer;
}

body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] > .show > .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] [data-styletype="Subtitle"] {
    font-size: 20px;
    font-weight: bold;
    font-family: var(--font-reg);
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] .bb-togglefield {
    max-width: 730px;
}

body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] {
    width: 80vw;
    max-width: 700px !important;
    background-color: var(--secondary-tint-color) !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] .bb-textfield {
        max-width: 480px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] {
        background-color: var(--secondary-tint-color) !important;
        position: absolute;
        right: 130px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"] {
        height: 20px;
        text-align: right;
        color: var(--secondary-tint-color) !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Close"].btn.btn-primary::after {
            color: var(--secondary-color) !important;
            margin-right: 0px;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] svg {
        width: 130px;
        height: 130px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Title"] {
        display: block;
        margin-bottom: 15px;
        font-size: 34px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="SubTitle"] {
        display: block;
        margin: 15px 0px 5px 0;
        font-size: 18px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] .bb-buttonfield:last-of-type {
        margin-top: 35px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Middle"] svg {
    width: 120px;
    height: 40px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Middle"] div {
    text-align: center;
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Details"],
body:has([data-styletype="Fase2"]) [data-styletype="Details"] * {
    background-color: transparent !important;
    color: #fff;
    padding: 0;
    text-align: left;
    justify-content: left;
}

body:has([data-styletype="Fase2"]) [data-styletype="Details"] {
    padding: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] {
    border-radius: 0 !important;
    padding: 15px !important;
    margin-bottom: 0 !important;
    background-image: linear-gradient(to right, rgb(255 255 255 / 50%) 45%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 25px 1px;
    background-repeat: repeat-x;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] [data-styletype="Info"] {
        margin: 0 0 0 5px;
        padding: 0 !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] [data-styletype="Info"] .card-header {
            font-size: 11pt;
            font-family: var(--font-light) !important;
            padding: 0 0 0 0 !important;
            height: auto;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] [data-styletype="Info"] .card-body {
            padding: 10px 0 0 20px !important;
            opacity: 0.8;
        }


body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"]::before {
    content: '';
    position: absolute;
    background-image: linear-gradient(#9A90B8 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    width: 1px;
    background-repeat: repeat-y;
    height: calc(100% - 30px);
    left: 15px;
    bottom: -8px;
}

body:has([data-styletype="Fase2"]) [data-styletype="bold"] {
    font-weight: bold !important;
    font-family: var(--font-bold) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-2 {
    max-width: 19px;
    flex: 0 0 19px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-7 {
    max-width: 70%;
    flex: 0 0 70%;
    font-size: 16px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-7 .form-group,
    body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-3 .form-group {
        margin-bottom: 0 !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-3 {
    max-width: calc(30% - 24px);
    flex: 0 0 30%;
}

body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-12 {
    margin-left: 25px;
    font-size: 12px;
    opacity: 0.8;
}

body:has([data-styletype="Fase2"]) label.toggle-switch.disabled {
    cursor: not-allowed;
}

body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-3 [data-align="Right"] {
    text-align: right !important;
    justify-content: end !important;
    font-size: 18px;
    font-family: var(--font-light);
    margin-right: 15px;
}

body:has([data-styletype="Fase2"]) .bb-container.card.page.sr > .show > .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Step"] .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Done"] [data-styletype="LineStep"] > .show > .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="Done"] span {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="Active"] span {
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] > .show > .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) .form-group .control-label.col-sm-4 {
    flex: 0 0 90%;
    max-width: 90%;
}

body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body {
    display: flex;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body > .card {
        min-width: calc(30% - 51px);
        width: 100%;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body > .card:last-child {
            width: 51px;
            min-width: unset !important;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body > .card > .show > .card-body {
            display: flex;
            padding: 0;
        }

body:has([data-styletype="Fase2"]) [data-styletype="Step"] {
    margin: 0 !important;
    width: 51px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Step"] svg {
        width: 51px;
        height: 51px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="LineStep"] svg {
    display: none;
}

body:has([data-styletype="Fase2"]) [data-styletype="LineStep"] {
    width: 100%;
    height: 50px;
    margin: 0 !important;
    justify-content: center;
    display: flex;
}

    body:has([data-styletype="Fase2"]) [data-styletype="LineStep"] > .show > .card-body {
        height: 1px;
        padding: 0;
        border-top: 0.5px dashed #9A90B8;
        margin: 0 15px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Step"] .bb-textfield-column {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Step"] [data-type="text"] {
    display: flex;
    justify-content: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="Step"] > .show > .card-body > :first-child span {
    display: block;
    width: 51px;
    height: 51px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Right"] svg, body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg, body:has([data-styletype="Fase2"]) [data-styletype="PreviousContainer"] svg,
body:has([data-styletype="Fase2"]) [data-styletype="Step"] svg {
    cursor: pointer;
}

body:has([data-styletype="Fase2"]) [data-styletype="Todo"] [data-styletype="Step"] svg {
    cursor: default;
}

body:has([data-styletype="Fase2"]) [data-styletype="PreviousContainer"] svg:hover > path,
body:has([data-styletype="Fase2"]) [data-styletype="Right"] svg:hover > path,
body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg:hover path,
body:has([data-styletype="Fase2"]) [data-styletype="PreviousContainer"] svg:focus-within > path,
body:has([data-styletype="Fase2"]) [data-styletype="Right"] svg:focus-within > path,
body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg:focus-within path {
    fill: var(--primary-color);
}

body:has([data-styletype="Fase2"]) .bb-textareafield-column {
    max-width: unset;
    margin: 15px 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Step"] > .show > .card-body > :last-child {
    font-size: 11px;
    text-align: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] {
    margin: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] * {
        padding: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] [data-styletype="Content"] {
        margin-left: 65px;
        font-size: 24px;
        font-family: var(--font-bold);
        color: var(--secondary-color);
        margin-top: -13px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Check"] {
    margin: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Check"] .card-body {
        display: flex;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Check"] .card-body .bb-textfield:first-child {
            display: none;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Check"] .card-body .bb-textfield:last-child {
            margin-left: 15px;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="Check"]::before {
        content: '\f00c';
        font-family: var(--fa);
        color: var(--primary-color);
        position: absolute;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Check"]::before {
    color: var(--positive-color);
}

body:has([data-styletype="Fase2"]) .btn-radio .btn:not(.active)::before,
body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"]::before {
    content: url(images/radio-active.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 10px;
    top: 15px;
}

body:has([data-styletype="Fase2"]) .btn-radio .btn.active::before,
body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"]:hover::before,
body:has([data-styletype="Fase2"]) [data-styletype="RadioButton"]:focus-within::before {
    content: url(images/radio-active.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 10px;
    top: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="MultipleInput"] {
    margin-bottom: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="MultipleInput"] .card-body > *:first-child {
        width: 50%;
        margin-right: 7px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="MultipleInput"] .card-body > *:last-child {
        width: 50%;
        margin-left: 7px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="MultipleInput"] .bb-textfield.row .bb-textfield-column.col-sm-8 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-right: 0;
    }

body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"] > .show > .card-body {
    display: flex;
    flex-direction: column;
}

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] {
    max-width: 340px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"]:has(input:not(.btn)[data-displaytype="Kenteken"]),
    body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"]:has([data-styletype="Summarycard"]) {
        max-width: 520px !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="NextButton"],
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] .btn.btn-primary,
body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"] .btn.btn-primary {
    text-align: left;
    padding-left: 1.75rem;
    margin-top: 1.25rem;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] .btn.btn-primary,
body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary {
    background-color: #fff !important;
    color: var(--secondary-color);
    text-align: center !important;
    border: var(--border) !important;
    padding: 0;
}

body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"]:has([data-styletype="Minimal"]) > .show > .card-body > [data-styletype="Minimal"] .card-body {
    padding-bottom: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Coverage"] :has([data-styletype="Recommended"]) .btn.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
    border: 1px solid var(--primary-color) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] .btn.btn-primary::before {
    display: none !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] .btn.btn-primary:hover,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] .btn.btn-primary:focus-within,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Coverage"] :has([data-styletype="Recommended"]) .btn.btn-primary:hover,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Coverage"] :has([data-styletype="Recommended"]) .btn.btn-primary:focus-within,
body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary:hover,
body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary:focus-within {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border: 1px solid var(--secondary-color) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"]:has([data-styletype="Recommended"])::before {
    content: '';
    background-image: url(images/recommended.svg);
    background-size: 170px;
    position: absolute;
    background-repeat: no-repeat;
    top: -39px;
    right: -3px;
    width: 170px;
    height: 50px;
    z-index: -2000000;
}

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Recommended"] svg {
    display: none !important
}

body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] {
    border: 1px solid var(--border-color) !important;
    background-color: var(--secondary-bg-color) !important;
    border-radius: 15px;
    width: 100%;
    padding: 15px;
}


    body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] > .show > .card-body {
        display: flex;
        flex-direction: row;
        padding: 0 15px;
        align-items: baseline;
    }

    body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] {
        width: 100%;
        margin: 0 !important;
    }

        body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] > .show > .card-body {
            display: flex;
            flex-direction: column;
            padding: 0 25px;
        }

        body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] [data-styletype="Title"] {
            font-family: var(--font-bold) !important;
            font-size: 28px;
        }

        body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .bb-buttonfield,
        body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .bb-textfield:not(.isReadonly) {
            max-width: 375px;
        }

        body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary {
            margin: 0 !important;
            text-align: left !important;
            padding-left: 20px;
        }

            body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary::before {
                content: '\e180';
                font-family: var(--fa);
                background-color: #f3f0fd !important;
                color: var(--secondary-color) !important;
                text-align: center;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary[data-styletype="Cancel"] {
                background-color: transparent !important;
                padding-left: 45px !important;
                border: none !important;
            }

                body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary[data-styletype="Cancel"]::before {
                    content: '\f060';
                    font-family: var(--fa);
                    left: 0;
                    right: unset;
                }

                body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary[data-styletype="Cancel"]:hover,
                body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary[data-styletype="Cancel"]:focus-within {
                    color: var(--primary-color) !important;
                }

body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"] .btn.btn-primary {
    max-width: 342px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="NextButton"]::before,
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] .btn.btn-primary::before,
    body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"] .btn.btn-primary::before {
        content: url(images/arrow-right.svg);
        width: 34px;
        height: 34px;
        position: absolute;
        right: 20px;
        top: 10px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="NextButton"]:hover::before,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"]:hover .btn.btn-primary::before,
body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"]:hover .btn.btn-primary::before,
body:has([data-styletype="Fase2"]) [data-styletype="NextButton"]:focus-within::before,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"]:focus-within .btn.btn-primary::before,
body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"]:focus-within .btn.btn-primary::before {
    content: url(images/arrow-right.svg);
    width: 34px;
    height: 34px;
    position: absolute;
    right: 20px;
    top: 10px;
}

body:has([data-styletype="Fase2"]) [data-disabled="1"] {
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"] .form-group.bb-togglefield {
    margin: 20px -15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] {
    margin-top: 25px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] .card-body {
        padding: 0;
        color: var(--secondary-color);
        font-size: 16px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] > .show > .card-body {
        display: flex;
        flex-wrap: wrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] .card:not([data-styletype="SingleSummary"]) {
        margin: 0 !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] [data-styletype="NextButton"] {
        max-width: 250px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] > .show > .card-body > .bb-buttonfield {
        width: 100%;
    }

body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] {
    width: 50%;
    margin-bottom: 35px !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] > .show > .card-body {
        display: flex;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"].card [data-styletype="Content"].card {
        margin-left: 25px !important;
        width: calc(100% - 115px);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"].card [data-styletype="Image-card"] {
        width: 115px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] [data-styletype="Content"] .card-body .bb-textfield:first-of-type {
        font-family: var(--font-bold);
        font-size: 24px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] [data-styletype="MeerInfo"].btn {
        background-color: transparent !important;
        padding: 0 !important;
        height: auto;
        width: auto;
        color: var(--secondary-color) !important;
        text-decoration: underline !important;
        margin: 0;
        font-size: 14px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] [data-styletype="MeerInfo"].btn:hover,
        body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] [data-styletype="MeerInfo"].btn:focus-within {
            background-color: transparent !important;
            padding: 0 !important;
            height: auto;
            width: auto;
            color: var(--secondary-color) !important;
            text-decoration: underline !important;
        }

body:has([data-styletype="Fase2"]) .progress-bar {
    background-color: var(--primary-color);
    width: attr(aria-valuenow %)
}

    body:has([data-styletype="Fase2"]) .progress-bar[data-indicator="true"]::before {
        content: attr(aria-valuenow);
        width: 100%;
        position: absolute;
        color: var(--text-color);
    }

body:has([data-styletype="Fase2"]) .progress {
    position: absolute;
    top: 85px;
    width: 100vw;
    height: 3px;
    z-index: 11111;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] > .show > .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"] > .show > .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Verticaltimeline"] {
    margin: 1.75rem 0 0 0 !important;
    max-width: 475px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] .btn.btn-primary {
    max-width: 475px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Coverages"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
    padding: 0;
    border-radius: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] {
    width: calc(33% - 15px);
    z-index: 1111111;
    position: relative;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] > .show > .card-body {
        padding: 15px;
        background-color: #fff;
        border: 3px solid transparent;
        border-radius: 15px;
        outline: var(--border);
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] > .show > .card-body:has([data-styletype="Recommended"]) {
            z-index: 50;
            position: relative;
            background-color: #FFFAF5;
            outline: 3px solid var(--primary-color);
            border-radius: 15px;
        }

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Cross"] .card-body .bb-textfield:last-child {
    opacity: 0.6;
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .card-body,
body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] > .show > .card-body .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Notification"] .btn.btn-primary.sr[data-styletype="Sluiten"] {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-family: var(--font-reg);
    font-size: 14px;
    text-align: right !important;
    height: 22px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Notification"] .btn.btn-primary.sr[data-styletype="Sluiten"]:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="Notification"] .btn.btn-primary.sr[data-styletype="Sluiten"]:focus-within {
        background-color: transparent !important;
        color: var(--primary-color) !important;
        border: none !important;
    }

body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary[data-styletype="Sluiten"]::before {
    display: none !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Check"],
body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Cross"] {
    min-height: 20px;
    margin: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Check"] .card-body .bb-textfield:last-child,
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Cross"] .card-body .bb-textfield:last-child {
        margin-left: 12px;
        display: block;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Cross"]::before {
    content: '\f00d';
    font-family: var(--fa);
    color: #F97373;
    position: absolute;
}

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] *,
body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"],
body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] *,
body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] {
    margin-bottom: 0 !important;
    color: var(--secondary-color);
}

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body > [data-styletype="Big"] {
        width: auto !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Big"] span[data-styletype="Title"] {
        font-family: var(--font-bold) !important;
        font-size: 28px;
        min-height: unset;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] > .show > .card-body, body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] > .show > .card-body {
        padding: 0;
        text-align: center;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body,
    body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body > div:first-of-type, body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body > div:first-of-type {
            width: 100%;
            margin-bottom: 0;
        }

body:has([data-styletype="Fase2"]) [data-styletype="Recommended"] {
    margin: 0 !important;
    position: absolute;
    top: -53px;
    z-index: -5000000000;
    right: -7px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Recommended"] svg {
        width: 170px;
        height: 50px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="CoverageTitle"] [data-styletype="Title"] {
    font-family: var(--font-bold) !important;
    font-size: 30px;
    text-align: center;
    width: 100%;
    display: block;
    min-height: 75px;
    margin-top: 5px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Small"] *,
body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] [data-styletype="Small"] * {
    font-family: var(--font-bold);
    font-size: 18px;
    color: var(--secondary-color);
    padding-right: 4px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] {
    margin: 0 0 15px 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] > .show > .card-body {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] [data-styletype="MeerInfo"] {
        min-height: 45px;
        margin-bottom: 0.5rem;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] > .show > .card-body > .card > .bb-textfield {
        max-height: 20px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] > .show > .card-body > .card:not(:nth-child(1)) svg {
        cursor: pointer;
        max-height: 20px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] .card-header {
        background-color: transparent;
        padding: 0 !important;
        height: auto;
        margin: 0 !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] .header-col {
        align-items: center;
        padding: 0;
        width: 100%;
        display: flex;
        flex: 0 0 100%;
        max-width: 100%;
        font-size: 16px;
        font-family: var(--font-light);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] .card {
        margin: 0 !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Verticaltimeline"] .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] [data-styletype="Minimal"]:first-child {
    margin-right: 15px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] [data-styletype="Minimal"]:last-child {
    margin-left: auto !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] {
    width: 300px;
    margin-top: 80px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] > .show {
        position: sticky;
        top: 0;
        right: 0;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] > .show > .card-body {
            width: 100%;
            background-color: var(--secondary-color) !important;
            border-radius: var(--border-radius-small);
            color: #fff;
        }

            body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] > .show > .card-body [data-styletype="Title"] {
                color: #fff;
                font-family: var(--font-bold);
            }

            body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] > .show > .card-body > .bb-textfield:first-of-type span {
                font-family: var(--font-bold);
                font-size: 17px;
            }

    body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] label {
        color: #fff !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"],
body:has([data-styletype="Fase2"]) [data-styletype="Medium-card"],
body:has([data-styletype="Fase2"]) [data-styletype="ClosingQuestions"] {
    max-width: 700px;
    z-index: 1;
}

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"]:has([data-styletype="CoverageTitle"]) {
        max-width: unset;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body, body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] [data-styletype="Amount"] [data-styletype="Total"] > .show > .card-body > .bb-textfield:last-child {
        width: 100%;
    }

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] .btn.btn-primary.sr {
    background-color: var(--primary-color) !important;
    font-size: 16px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] .btn.btn-primary.sr:hover, body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] .btn.btn-primary.sr:focus-within {
        opacity: 0.8;
    }

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] .bb-buttonfield:last-child .btn.btn-primary {
    background-color: transparent !important;
    font-family: var(--font-light);
}

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] [data-styletype="Sluiten"].btn.btn-primary,
body:has([data-styletype="Fase2"]) [data-styletype="ReceiptPopup"] [data-styletype="Sluiten"].btn.btn-primary {
    background-color: transparent !important;
    font-family: var(--font-light);
    text-align: right;
    height: auto;
    padding: 0;
    font-size: 11pt;
}

body:has([data-styletype="Fase2"]) [data-styletype="ReceiptPopup"] [data-styletype="Sluiten"].btn.btn-primary {
    margin-bottom: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="InformationContainer"] {
    position: absolute;
    right: 0;
}

    body:has([data-styletype="Fase2"]) [data-styletype="InformationContainer"] > .show > .card-body {
        padding: 0;
    }


body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] {
    margin-bottom: 0 !important;
    background-color: var(--secondary-color) !important;
    border-radius: 12px !important;
    width: 350px;
    padding: 15px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .card-body {
        padding: 0;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Image-card"] > .show > .card-body {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="Image-card"] svg {
    max-width: 75px;
    margin-right: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] span[data-styletype="SubTitle"] {
    color: #fff !important;
    font-size: 24px;
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] [data-styletype="Image-card"] [data-styletype="Minimal"]:last-of-type .bb-textfield:first-of-type {
    opacity: 0.7;
    margin-bottom: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .card {
    margin-bottom: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] * {
    color: #fff
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] [data-styletype="Title"] {
    font-family: var(--font-bold);
}

body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .btn.btn-primary {
    background-color: transparent !important;
    font-family: var(--font-reg);
    text-decoration: underline;
    text-align: center;
    font-size: 16px;
    padding: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .btn.btn-primary:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .btn.btn-primary:active,
    body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] .btn.btn-primary:focus-within {
        background-color: transparent !important;
        text-decoration: none;
    }

body:has([data-styletype="Fase2"]) [data-styletype="SecondaryBtn"] {
    background-color: #fff !important;
    color: var(--secondary-color) !important;
    border: 1px solid #E1DEEA !important;
    margin-bottom: 15px;
    font-family: var(--font-reg) !important;
    text-align: left !important;
    padding-left: 1.75rem !important
}

    body:has([data-styletype="Fase2"]) [data-styletype="SecondaryBtn"]:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="SecondaryBtn"]:active,
    body:has([data-styletype="Fase2"]) [data-styletype="SecondaryBtn"]:focus-within {
        color: #fff !important;
        font-family: var(--font-reg) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Medium-card"] > .show > .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Pakketoverzicht"] [data-styletype="Title"] {
    margin: 5px 0 25px 0 !important;
    display: block;
}

body:has([data-styletype="Fase2"]) [data-styletype="Pakketoverzicht"] > .show > .card-body {
    display: flex;
    flex-direction: row;
    padding: 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] .btn,
body:has([data-styletype="Fase2"]) [data-styletype="Edit"] .btn {
    background-color: var(--primary-color) !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] .btn:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] .btn:focus-within {
        opacity: 0.8;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Edit"] .btn.btn-primary:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="Edit"] .btn.btn-primary:focus-within {
        background-color: var(--primary-button-color) !important;
        border-color: var(--primary-button-border-color) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] {
    padding: 10px !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .card-body {
        padding: 15px 0px 0 0px !important;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] [data-align="Right"] {
        display: flex;
        justify-content: flex-end !important;
        font-size: 28px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .bb-textfield {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin: 0 !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .bb-textfield:nth-child(4),
        body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .bb-textfield:nth-child(5) {
            max-width: 50%;
            flex: 0 0 50%;
            margin-top: 15px !important;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .bb-textfield:nth-child(5) {
            margin-top: 0px !important;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .bb-textfield:nth-child(3) div[type="text"],
        body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] .bb-textfield:nth-child(4) div[type="text"] {
            color: red !important;
        }

body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-header[data-target][data-toggle="collapse"] .header-col {
    font-weight: 100;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

body:has([data-styletype="Fase2"]) .card-header[data-target][data-toggle="collapse"] .header-col .fas {
    padding-right: 0px;
    min-width: 25px;
    text-align: center;
    margin-top: 2px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-header[data-toggle="collapse"].collapsed .header-col .fas:before {
    content: "\f067";
    font-weight: 500;
    font-size: 12px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-header[data-toggle="collapse"] .header-col .fas:before {
    content: "\f068";
    font-weight: 500;
    font-size: 12px;
}


body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] {
    box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] > .show > .card-body {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] [data-styletype="Image"] * {
        padding: 0;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Image"] svg,
body:has([data-styletype="Fase2"]) [data-styletype="Image"] {
    width: 48px;
    height: 48px;
}

body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 0 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] {
    width: calc(100% - 48px);
    margin: 0 !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] * {
        font-size: 18px;
        font-family: var(--font-bold);
    }

body:has([data-styletype="Fase2"]) [data-styletype="PakketAmount"] > .show > .card-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="PakketAmount"] .checkbox {
    margin-left: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-body .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="InfoText"] {
    margin: -35px 0 0 48px !important;
}

    body:has([data-styletype="Fase2"]) [data-styletype="InfoText"] *,
    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .collapse *,
    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .collapsing * {
        color: var(--text-color) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Info"] {
    width: 100%;
    margin: 0 0 0 50px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Header"] [data-styletype="Right"] .card-body {
    display: flex;
    align-items: baseline;
    justify-content: end;
}

body:has([data-styletype="Fase2"]) [data-styletype="Right"] *,
body:has([data-styletype="Fase2"]) [data-styletype="Left"] * {
    padding: 0;
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] > .show > .card-body > .bb-textfield:nth-child(3) {
    margin-top: -30px;
    margin-bottom: 30px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Right"] {
    font-family: var(--font-reg);
    font-size: 17px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Right"] .bb-textfield:first-of-type,
    body:has([data-styletype="Fase2"]) [data-styletype="Left"] .bb-textfield:first-of-type {
        padding-right: 10px;
    }

body:has([data-styletype="Fase2"]) span.has-loader::before {
    background-image: url(images/forms-loader.svg);
    content: "";
    background-position: center;
    width: 80px;
    height: 25px;
    background-size: contain;
    position: absolute;
    background-color: #F6F5F9;
    background-repeat: no-repeat;
    right: -5px;
    top: -4px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] span.has-loader::before,
body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] span.has-loader::before {
    content: "";
    display: none;
}

body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] span.has-loader::after,
body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] span.has-loader::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    background-color: var(--secondary-color);
    animation-name: amountShow;
    animation-duration: 1.3s;
    animation-timing-function: ease-in-out;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield:not(.isReadonly) {
    width: 100%;
}

body:has([data-styletype="Fase2"]) [data-styletype="popup"] [data-styletype="CoverageInfo"] .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] {
    max-height: 90vh;
    overflow-x: auto;
}


    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="CoverageInfo"] {
        max-height: 90vh;
        overflow-x: unset;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] .card-body {
        display: flex;
        flex-wrap: wrap;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] .card-body > .bb-textfield:first-child {
            width: 100%;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] .card-body > .bb-textfield {
            width: 50%;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] .isReadonly .bb-textfield-column.col-sm-8 span {
        border: none;
        height: auto !important;
        font-weight: bold;
        opacity: 1;
        padding-left: 0;
        font-size: 16px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="ChecklistCard"],
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] {
        width: 50%;
        padding: 15px 0 0 0 !important
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="Specials"],
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-buttonfield,
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-textfield {
        width: 100%;
        padding: 0 !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="ListItem"] {
        display: list-item;
        margin-left: 15px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-textfield svg {
        position: absolute;
        z-index: 111111111;
        right: 0;
        top: -70px;
        max-width: 130px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="Specials"] [data-styletype="Title"],
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="ChecklistCard"] [data-styletype="Title"],
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] [data-styletype="Title"] {
        font-size: 28px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-buttonfield > div {
        padding-right: 0;
        margin-left: 15px;
        padding-left: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-buttonfield .btn {
        background-color: var(--accent-color) !important;
        color: var(--secondary-color);
        text-align: center;
        height: 67px !important;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-buttonfield .btn::before {
            display: none !important;
        }

body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card .bb-togglefield .btn-group.btn-radio {
    max-width: 485px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield-column .btn-group.btn-radio button {
    padding: 0 15px;
    text-align: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-buttonfield .btn {
    background-color: var(--secondary-color) !important;
    color: #fff;
    text-align: center;
    height: 67px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] .btn-group.btn-radio,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .btn-group.btn-radio {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 7px;
    max-width: 425px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] .bb-togglefield-column .btn-group.btn-radio .active,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield-column .btn-group.btn-radio .active {
    background-color: #fff !important;
    color: var(--secondary-color) !important;
    text-wrap: auto;
}

body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] .bb-togglefield-column .btn-group.btn-radio button,
body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] [data-styletype="RadioButton"].btn.btn-primary,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield-column .btn-group.btn-radio button,
body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="RadioButton"].btn.btn-primary {
    background-color: transparent !important;
    border: 1px solid transparent !important;
    font-family: var(--font-reg) !important;
    padding-left: 15px;
    border-radius: 12px !important;
    margin-left: 0 !important;
    min-height: 42px;
    height: auto;
}

    body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] .bb-togglefield-column .btn-group.btn-radio button:not(.active):focus-within, body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] .bb-togglefield-column .btn-group.btn-radio button:not(.active):hover, body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield-column .btn-group.btn-radio button:not(.active):focus-within, body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield-column .btn-group.btn-radio button:not(.active):hover {
        color: var(--secondary-color) !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] .bb-togglefield-column .btn-group.btn-radio button::before,
    body:has([data-styletype="Fase2"]) [data-styletype="PriceFilter"] [data-styletype="RadioButton"].btn.btn-primary::before,
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield-column .btn-group.btn-radio button::before,
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="RadioButton"].btn.btn-primary::before {
        display: none;
    }

body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card[data-styletype="CoverageInfo"] {
    padding: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] .isReadonly .bb-textfield-column.col-sm-8 span[data-displaytype="Kenteken"] {
    background-color: #FECD23 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-textfield svg {
    position: relative;
    z-index: 1;
    right: 0;
    top: 0;
    max-width: 130px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] .bb-buttonfield {
    max-width: 730px;
}

body:has([data-styletype="Fase2"]) .bb-togglefield .btn-group .sr.btn.btn-secondary.activeButDisabled {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

body:has([data-styletype="Fase2"]) .bb-togglefield .btn-group:has(.sr.btn.btn-secondary.activeButDisabled) .btn.btn-secondary {
    cursor: not-allowed !important;
}

    body:has([data-styletype="Fase2"]) .bb-togglefield .btn-group:has(.sr.btn.btn-secondary.activeButDisabled) .btn.btn-secondary:not(.activeButDisabled) {
        background-color: #fff !important;
        color: var(--secondary-color) !important;
        border: var(--border) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="Minimal"] {
    padding: 25px 0px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] .bb-togglefield {
    width: 100%;
    max-width: unset !important;
    margin-bottom: 25px;
}

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"] .bb-textfield-column.col-sm-8 span {
    width: 100%;
    display: flex;
    align-items: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="ExplanationContainer"] .card-body {
    padding: 0;
}

    body:has([data-styletype="Fase2"]) [data-styletype="ExplanationContainer"] .card-body label:empty {
        display: none;
    }

body:has([data-styletype="Fase2"]) [data-styletype="ExplanationContainer"] .bb-textareafield-column.col-sm-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

@media (max-width: 575px) and (max-height: 922px) {
    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] > .show > .card-body > .bb-buttonfield {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
        z-index: 111111111;
        bottom: 50px;
        margin-top: 15px;
        margin-left: -15px;
        bottom: 10px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] {
        padding-bottom: 75px !important;
    }
}

@keyframes amountShow {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

body:has([data-styletype="Fase2"]) [data-styletype="PreviousContainer"] > .show > .card-body {
    padding: 15px 0;
    display: flex;
    align-items: center;
}

body:has([data-styletype="Fase2"]) [data-styletype="PreviousContainer"] .bb-textfield:first-of-type {
    padding-right: 10px;
}

body:has([data-styletype="Fase2"]) [data-styletype="PreviousContainer"] {
    color: var(--secondary-color);
    font-family: var(--font-reg);
    font-size: 14px;
}

body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] [data-styletype="Verticaltimeline"],
body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] [data-styletype="Verticaltimeline"] .card {
    padding: 0px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] input:not(.btn),
body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] input.form-control:not(.btn),
body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] .sr .bb-selectfield-column select,
body:has([data-styletype="Fase2"]) [data-styletype="EditPopup"] textarea.form-control {
    border: var(--border);
}

body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] > .show > .card-body > div:first-of-type {
    height: 30px;
}

body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] [data-toggle="collapse"] > .header-col {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Timelinesingle"] [data-toggle="collapse"] > .header-col .fas {
        margin-left: 15px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="VerticalContainer"] .card-body {
    padding: 10px 0 0 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="TotalCount"] {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: -15px;
    height: 24px;
    width: 24px;
    background-color: var(--danger);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 9pt;
}

body:has([data-styletype="Fase2"]) [data-styletype="Successful"] > .show > .card-body {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 150px 0 0 0;
}

body:has([data-styletype="Fase2"]) [data-styletype="Message"] {
    max-width: 600px;
}

    body:has([data-styletype="Fase2"]) [data-styletype="Message"] .btn {
        max-width: 340px;
        margin-top: 25px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Message"] [data-styletype="Title"] {
        display: block;
        margin-bottom: 20px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="Image-Card"] > .show > .card-body .bb-textfield:first-child svg {
    display: none;
}

body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] [data-styletype="Content"] .bb-textfield {
    margin-bottom: -5px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Summarycard"] [data-styletype="Content"]:has([data-displaytype="Kenteken"]) .bb-textfield {
    margin-bottom: 0px !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="ImportantContainer"] {
    max-width: 370px;
    background-color: #fff !important;
    border-radius: 12px !important;
    position: absolute;
    right: 0;
}

    body:has([data-styletype="Fase2"]) [data-styletype="ImportantContainer"] [data-styletype="Title"] {
        font-size: 26px;
        font-family: var(--font-bold) !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="NavigationContainer"] .card-body {
    padding: 0;
    max-width: 340px;
}

body:has([data-styletype="Fase2"]) [data-styletype="ImportantContainer"] svg {
    width: 45px;
    position: absolute;
    right: 15px;
    top: -25px;
}

body:has([data-styletype="Fase2"]) [data-styletype="ContactContainer"] > .show > .card-body {
    padding: 15px 0;
    display: flex;
    color: var(--secondary-color);
    font-family: var(--font-bold);
}

body:has([data-styletype="Fase2"]) [data-styletype="ContactContainer"] a {
    color: var(--secondary-color) !important;
    margin-left: 30px;
    font-family: var(--font-light);
}

    body:has([data-styletype="Fase2"]) [data-styletype="ContactContainer"] a:hover,
    body:has([data-styletype="Fase2"]) [data-styletype="ContactContainer"] a:focus-within {
        text-decoration: none !important;
    }

body:has([data-styletype="Fase2"]) [data-styletype="ContactContainer"] .bb-textfield:last-of-type::before {
    content: '\f095';
    font-family: var(--fa);
    margin: 0 15px 0 25px;
    text-decoration: none !important;
    position: absolute;
    font-weight: 300;
}

@media (min-width: 1200px) {
    body:has([data-styletype="Fase2"]) .banner.home .img-holder {
        display: block;
    }

    body:has([data-styletype="Fase2"]) .banner.home .bb-textfield {
        max-width: 600px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"] > .show > .card-body > .bb-textfield {
        width: calc(100% - 350px);
    }

    body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"] > .show > .card-body > .bb-textareafield > .bb-textareafield-column.col-sm-8 {
        flex: 0 0 calc(100% - 350px);
        max-width: calc(100% - 350px);
        margin-bottom: 15px;
        padding: 0 80px 0 15px;
    }
}

@media (max-width: 1200px) {

    body:has([data-styletype="Fase2"]) [data-styletype="ImportantContainer"] {
        max-width: unset !important;
        position: relative !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="DesktopReceipt"] {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9 {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-3 [data-align="Right"] {
        display: flex;
        justify-content: flex-start;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] {
        min-height: 170px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekkingen"] .col-sm-4, body:has([data-styletype="Fase2"]) [data-styletype="VerkoperHoofdDekkingen"] .col-sm-4 {
        max-width: 50% !important;
        width: 50% !important;
        margin-bottom: 15px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekkingen"] .col-sm-10.sr {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .col-sm-8 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .col-sm-4 {
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] svg {
        width: 110px;
        height: 110px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] {
        right: 90px;
    }
}

@media (max-width: 650px) {
    body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body {
        justify-content: space-between;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="LineStep"], body:has([data-styletype="Fase2"]) [data-styletype="Step"] > .show > .card-body > :last-child {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] > .show > .card-body > .card {
        width: 51px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Stepper"] {
        margin: 0 !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Akkoord"] [data-styletype="NextButton"] {
        max-width: unset;
    }
}

@media (max-width: 991.98px) {
    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] svg {
        width: 90px;
        height: 90px;
    }

    body:has([data-styletype="Fase2"]) .datepicker-dropdown.datepicker-orient-bottom:before,
    body:has([data-styletype="Fase2"]) .datepicker-dropdown.datepicker-orient-bottom:after {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] {
        right: 70px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .card {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] > .show > .card-body,
    body:has([data-styletype="Fase2"]) [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
        min-height: 60px;
    }

    body:has([data-styletype="Fase2"]) .navbar {
        height: 80px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Successful"] > .show > .card-body {
        padding: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Successful"] {
        overflow: hidden;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Image-Card"] > .show > .card-body .bb-textfield:first-child svg {
        display: block;
        margin-right: -63px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Image-Card"] > .show > .card-body .bb-textfield:first-child span {
        display: flex;
        justify-content: flex-end;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Image-Card"] > .show > .card-body .bb-textfield:last-child svg {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Successful"] > .show > .card-body {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column-reverse;
        justify-content: flex-start;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Message"] [data-styletype="Title"] {
        margin-top: -80px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Message"] .btn {
        padding: 0 20px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Message"] [data-styletype="ThankYouPage"] [data-styletype="Title"] {
        margin-top: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Successful"]:has([data-styletype="ThankYouPage"]) [data-styletype="Image-Card"] {
        margin-bottom: -70px !important;
    }
}

@media (min-width: 991.98px) {
    body:has([data-styletype="Fase2"]) .navbar {
        margin-top: 40px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PremieKolom"] {
        padding-left: 0;
        padding-right: 35px;
        position: absolute;
        right: 0;
        width: 200px;
        max-width: unset !important;
    }

    body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"]:has([data-styletype="Minimal"]) > .show > .card-body > [data-styletype="Minimal"] {
        width: 50%;
    }

    body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"]:has([data-styletype="Minimal"]) > .show > .card-body {
        flex-direction: row;
    }
}

@media (min-width:700px) and (max-width:1200px) {
    body:has([data-styletype="Fase2"]) .contact-container .col-sm-4,
    body:has([data-styletype="Fase2"]) .verzekering-row .col-sm-4,
    body:has([data-styletype="Fase2"]) [data-styletype="VerzekeringRow"] .col-sm-4 {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 879px) {
    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] {
        width: 100%;
        margin-bottom: 45px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"]:has([data-styletype="Recommended"])::before {
        top: 2px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] .card-body > .bb-textfield:has([data-displaytype="Kenteken"]) {
        width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="ChecklistCard"], body:has([data-styletype="Fase2"]) [data-styletype="CoverageInfo"] [data-styletype="FeaturesCard"] {
        width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] .btn.btn-primary, body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] .btn.btn-primary {
        max-width: unset;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Coverage"] > .show > .card-body:has([data-styletype="Recommended"]) {
        margin-top: 40px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CoverageContainer"] [data-styletype="Coverages"] [data-styletype="Coverage"] {
        width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Image-card"] svg {
        width: 64px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"].card [data-styletype="Content"].card {
        margin-left: 25px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"]::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: -15px;
        background-image: linear-gradient(to right, #352171 33%, rgba(255, 255, 255, 0) 0%);
        background-position: bottom;
        background-size: 12px 1px;
        background-repeat: repeat-x;
        opacity: 0.4;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Content"] .form-group .control-label.col-sm-4 {
        font-size: 14px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"].card [data-styletype="Image-card"] {
        width: 64px !important;
    }
}

@media (min-width: 879px) {
    body:has([data-styletype="Fase2"]) [data-styletype="ChecklistCard"] .card-header.collapsed,
    body:has([data-styletype="Fase2"]) [data-styletype="Filter"] > .card-header {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Coverages"] {
        margin-top: 1.25rem;
    }

    body:has([data-styletype="Fase2"]) .sr.card[data-styletype="popup"] .card svg {
        max-width: 85px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="popup"] .card-body:has(.bb-selectfield) {
        min-width: 500px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="popup"] .card-body .bb-selectfield, body:has([data-styletype="Fase2"]) [data-styletype="popup"] .card-body .bb-togglefield {
        max-width: 485px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Right"] > .show {
        max-width: 200px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Uitgelicht"] [data-styletype="Amount"] {
        max-width: 260px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ChecklistCard"] .collapse:not(.show),
    body:has([data-styletype="Fase2"]) [data-styletype="Filter"] .collapse:not(.show) {
        display: block;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Item"] [data-styletype="Right"] {
        align-items: end;
    }
}

@media (max-width: 690px) {
    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .show .card-body .row.sr .col-sm-8,
    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .show .card-body .row.sr .col-sm-4 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] > .show > .card-body,
    body:has([data-styletype="Fase2"]) .card[data-styletype="NotificationCard"] [data-styletype="Notification"] > .show > .card-body {
        flex-direction: column;
        padding: 0;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekking"] .col-sm-4 * {
        padding-left: 3px;
        padding-right: 4px;
        justify-content: start;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="HoofdDekkingen"] .col-sm-4, body:has([data-styletype="Fase2"]) [data-styletype="VerkoperHoofdDekkingen"] .col-sm-4 {
        max-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    body:has([data-styletype="Fase2"]) .verzekering-card .bb-linefield {
        min-height: unset;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SummaryContainer"] [data-styletype="NextButton"] {
        max-width: unset;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InsuranceInfo"] [data-styletype="Image"] {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketAmount"] span,
    body:has([data-styletype="Fase2"]) [data-styletype="PakketOnderdeel"] .card-header[data-target][data-toggle="collapse"] .header-col {
        font-size: 14px !important;
        font-family: var(--font-reg);
    }
}

@media (min-width: 576px) {
    body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6 {
        flex: 0 0 65%;
        max-width: 65%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Tile"] .card-body {
        padding-bottom: 75px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9, body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-3 {
        padding: 15px 15px 15px 40px
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PositiefPunt"] .col-sm-1 {
        margin-left: 30px;
    }
}

@media (min-width: 699px) {
    body:has([data-styletype="Fase2"]) [data-styletype="VerzekeringRow"] [data-styletype="Tile"] .card-body {
        min-height: 400px !important;
    }
}

@media (min-width: 575px) {
    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
        width: 40%;
        flex: 0 0 40%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9 {
        width: 60%;
        flex: 0 0 60%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .col-sm-9, body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
        height: 125px;
    }
}

@media (max-width: 575px) {
    body:has([data-styletype="Fase2"]) [data-styletype="Info"] {
        margin: 0 0 0 -10px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="NextButton"].btn.btn-primary.sr {
        padding-right: 60px;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        height: auto !important;
        min-height: 56px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"]:has([data-styletype="ExtraCoveragesContainer"]) .btn.btn-primary {
        font-size: 16px;
    }

    body:has([data-styletype="Fase2"]) input:not(.btn)[data-displaytype="Kenteken"] {
        font-size: 42px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="TitleContainer"] > .show > .card-body span {
        font-size: 21px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="PayOffs"] span {
        margin-right: 15px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="PayOffs"] span::before {
            margin-right: 5px;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="ExtraCoverage"] [data-styletype="TitleContainer"] > .show > .card-body svg {
        width: 44px;
        height: 44px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="ImportantContainer"] svg {
        width: 45px;
        position: relative;
        right: 0;
        top: 0;
        margin-top: -30px;
        margin-bottom: -20px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="PakketAmount"] .checkbox {
        position: absolute;
        right: 0;
        top: -35px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="SingleSummary"] [data-styletype="Image-card"] svg {
        width: 70px;
        height: 70px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Ensurance"] > .show > .card-body > .row > .col-sm-3 [data-align="Right"] {
        font-size: 14px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="TotalPremium"] [data-align="Right"] {
        font-size: 21px;
        margin-top: 5px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Edit"] {
        min-width: unset;
        width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Header"] > .show > .card-body {
        flex-wrap: nowrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Left"] {
        width: 45px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Header"] > .show > .card-body > [data-styletype="Left"]:not(:has(svg)) {
        width: unset !important;
        display: none !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Right"] {
        width: calc(66% - 45px) !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg > path {
        display: none;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg {
        width: 180px;
        height: 60px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] > .show > .card-body > .bb-textfield {
        width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] > .show > .card-body {
        flex-wrap: wrap;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="InfoText"] {
        margin-left: -10px !important;
        margin-top: -19px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] [data-styletype="PakketAmount"] {
        width: 100%;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="OnderdeelHeader"] [data-styletype="PakketAmount"] > .show > .card-body {
            display: flex;
            justify-content: space-between;
        }

    body:has([data-styletype="Fase2"]) button.btn.btn-primary.btn-action {
        margin: 0px 0px 15px 15px;
    }

    body:has([data-styletype="Fase2"]) .primary-title, body:has([data-styletype="Fase2"]) .secondary-title, body:has([data-styletype="Fase2"]) h1, body:has([data-styletype="Fase2"]) [data-styletype="title"], body:has([data-styletype="Fase2"]) [data-styletype="Title"] {
        font-size: 36px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] * {
        text-align: center;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="Message"] span {
        color: var(--secondary-color) !important;
        font-size: 16px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row {
        display: flex;
        justify-content: flex-start;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] {
        padding-left: 30px;
        margin-top: -25px;
        padding-top: 0;
        margin-bottom: 25px !important;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="BasisDekking"] .show > .card-body > .row > .col-sm-12 {
        padding: 15px 15px 0 15px;
    }

    body:has([data-styletype="Fase2"]) .banner h1 {
        font-size: 36px;
        margin-top: 0px;
    }

    body:has([data-styletype="Fase2"]) .title-row .primary-link {
        margin-top: 8px;
    }

    body:has([data-styletype="Fase2"]) .banner::before, body:has([data-styletype="Fase2"]) .banner {
        height: 150px;
    }

    body:has([data-styletype="Fase2"]) .menuType {
        width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6, body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-textfield .col-sm-1, body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-selectfield .col-sm-1, body:has([data-styletype="Fase2"]) [data-styletype="Formulier"] .bb-togglefield .col-sm-1 {
        text-align: right;
        width: 10%;
        padding: 0;
        margin-left: -8px;
    }

    body:has([data-styletype="Fase2"]) .banner .subtitle {
        font-size: 24px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6:last-child {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: wrap;
        text-align: left;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="TotalePremie"] .col-sm-6:last-child > .row {
            justify-content: start !important;
            text-align: left !important;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="Receipt"],
    body:has([data-styletype="Fase2"]) [data-styletype="Edit"] {
        width: 95%;
    }
}

@media (max-width: 400px) {
    body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg {
        width: 180px;
        height: 60px;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg path {
            display: none;
        }

        body:has([data-styletype="Fase2"]) [data-styletype="Left"] svg g path {
            display: block;
        }
}

@media (min-width: 2240px) {
    body:has([data-styletype="Fase2"]) [data-styletype="AmountContainer"] {
        width: 350px;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body:has([data-styletype="Fase2"]) @-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* SOFTRULES END */

/*EAA*/

body:has([data-styletype="Fase2"]) [data-styletype="Receipt"] .form-group .control-label.col-sm-4 {
    color: #fff;
}

body:has([data-styletype="Fase2"]) .toggle-switch input:focus-within ~ .switch-slider.round {
    outline: 2px solid #fcb064;
}

body:has([data-styletype="Fase2"]) .toggle-switch input {
    display: block;
    visibility: visible;
}

    body:has([data-styletype="Fase2"]) .toggle-switch input[type=checkbox]::after {
        display: none;
    }


body:has([data-styletype="Fase2"]) .isReadonly .bb-textfield-column.col-sm-7 div, body:has([data-styletype="Fase2"]) .isReadonly .bb-textfield-column.col-sm-8 div {
    border: none;
}

/* Datepicker */
body:has([data-styletype="Fase2"]) .datepicker {
    display: block !important;
}

body:has([data-styletype="Fase2"]) .datepicker-dropdown {
    max-width: 315px;
    height: 315px;
    width: 100%;
    border: 1px solid #E1DEEA;
    min-height: 250px;
    padding: 15px;
    border-radius: 10px;
    z-index: 111111111 !important;
}

    body:has([data-styletype="Fase2"]) .datepicker-dropdown.datepicker-orient-top:before {
        display: none;
    }

body:has([data-styletype="Fase2"]) .datepicker > div, body:has([data-styletype="Fase2"]) .datepicker > div > table, body:has([data-styletype="Fase2"]) .datepicker > div, body:has([data-styletype="Fase2"]) .datepicker > div > table > th, body:has([data-styletype="Fase2"]) .datepicker > div, body:has([data-styletype="Fase2"]) .datepicker > div > table > tbody {
    width: 100%;
    height: 100%;
    border-collapse: unset;
}

body:has([data-styletype="Fase2"]) .datepicker-dropdown .datepicker-months .table-sm thead, body:has([data-styletype="Fase2"]) .datepicker-dropdown .datepicker-years .table-sm thead,
body:has([data-styletype="Fase2"]) .datepicker-dropdown .datepicker-months .table-sm tbody tr, body:has([data-styletype="Fase2"]) .datepicker-dropdown .datepicker-years .table-sm tbody tr {
    max-width: unset;
    display: flex;
}

    body:has([data-styletype="Fase2"]) .datepicker-dropdown .datepicker-months .table-sm tbody tr td, body:has([data-styletype="Fase2"]) .datepicker-dropdown .datepicker-years .table-sm tbody tr td {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 100%;
    }

body:has([data-styletype="Fase2"]) .datepicker .month, body:has([data-styletype="Fase2"]) .datepicker .year {
    margin: 0;
    cursor: pointer;
    width: 25%;
    text-align: center;
    height: 65px;
}

body:has([data-styletype="Fase2"]) .datepicker > .datepicker-months > table > thead > tr,
body:has([data-styletype="Fase2"]) .datepicker > .datepicker-decades > table > thead > tr,
body:has([data-styletype="Fase2"]) .datepicker > .datepicker-centuries > table > thead > tr,
body:has([data-styletype="Fase2"]) .datepicker > .datepicker-years > table > thead > tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E1DEEA;
    padding-bottom: 15px;
}

    body:has([data-styletype="Fase2"]) .datepicker > .datepicker-years > table > thead > tr:first-of-type,
    body:has([data-styletype="Fase2"]) .datepicker > .datepicker-decades > table > thead > tr:first-of-type,
    body:has([data-styletype="Fase2"]) .datepicker > .datepicker-centuries > table > thead > tr:first-of-type,
    body:has([data-styletype="Fase2"]) .datepicker > .datepicker-months > table > thead > tr:first-of-type {
        display: none !important;
    }

body:has([data-styletype="Fase2"]) .datepicker .next, body:has([data-styletype="Fase2"]) .datepicker .prev {
    cursor: pointer;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    text-align: center !important;
    border: 1px solid #E1DEEA;
    border-radius: 8px;
}

    body:has([data-styletype="Fase2"]) .datepicker .prev::before {
        content: '\f060';
        background-color: #fff;
        position: absolute;
        font-family: var(--fa);
        font-size: 13px;
        margin-left: -2px;
        color: var(--secondary-color);
        margin-top: 1px;
        font-weight: 400;
    }

    body:has([data-styletype="Fase2"]) .datepicker .next::before {
        content: '\f061';
        background-color: #fff;
        position: absolute;
        font-family: var(--fa);
        font-size: 13px;
        margin-left: -2px;
        color: var(--secondary-color);
        margin-top: 1px;
        font-weight: 400;
    }

    body:has([data-styletype="Fase2"]) .datepicker .next:hover::before,
    body:has([data-styletype="Fase2"]) .datepicker .prev:hover::before {
        background-color: #eee !important;
    }

body:has([data-styletype="Fase2"]) .datepicker > .datepicker-years > table > tbody *,
body:has([data-styletype="Fase2"]) .datepicker > .datepicker-decades > table > tbody *,
body:has([data-styletype="Fase2"]) .datepicker > .datepicker-centuries > table > tbody *,
body:has([data-styletype="Fase2"]) .datepicker > .datepicker-months > table > tbody *,
body:has([data-styletype="Fase2"]) th.dow {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color) !important;
    font-family: "museo-sans", sans-serif;
}

body:has([data-styletype="Fase2"]) th.datepicker-switch {
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "museo-sans", sans-serif;
    text-transform: capitalize;
}

body:has([data-styletype="Fase2"]) .datepicker-days thead > tr:first-of-type {
    display: none;
}

body:has([data-styletype="Fase2"]) .datepicker-days .day {
    cursor: pointer;
    width: calc(100% / 7);
    height: 34px;
    padding: 4px;
    text-align: center;
}

    body:has([data-styletype="Fase2"]) .datepicker-days .day:not(.old, .new)::before {
        content: '';
        background-color: #F6F5F9;
        width: 32px;
        height: 32px;
        display: block;
        position: absolute;
        z-index: -1;
        margin-left: 0px;
        margin-top: -4px;
        border-radius: 50px;
        border: 1px solid #E1DEEA;
    }

body:has([data-styletype="Fase2"]) .datepicker-days td.day.active::before {
    content: '';
    background-color: var(--secondary-color);
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    z-index: -1;
    margin-left: -1px;
    margin-top: -4px;
    border-radius: 50px;
    border: 1px solid var( --secondary-color);
}

body:has([data-styletype="Fase2"]) .datepicker-dropdown.datepicker-orient-top:after {
    display: none;
}

body:has([data-styletype="Fase2"]) .table-sm td.day {
    width: calc(100% / 7) !important;
    height: 32px !important;
    padding: 9px;
    text-align: center;
}

body:has([data-styletype="Fase2"]) .datepicker-days .day:hover:not(.old, .new)::before {
    border: 1px solid var(--secondary-color);
}

body:has([data-styletype="Fase2"]) th.dow {
    height: 40px;
    text-align: center;
    padding-top: 10px;
    width: calc(100% / 7);
}

body:has([data-styletype="Fase2"]) .datepicker span.active {
    color: var(--primary-color) !important;
}

body:has([data-styletype="Fase2"]) .datepicker td.active {
    color: #fff !important;
    background-color: transparent !important;
    background-image: unset !important;
    box-shadow: none;
}

body:has([data-styletype="Fase2"]) .year {
    display: flex;
    justify-content: center;
    align-items: center;
}

body:has([data-styletype="Fase2"]) .input-group > .datepicker-input.form-control:not(:last-child) {
    border-top-right-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
}

body:has([data-styletype="Fase2"]) .datepicker-wrapper .input-group-append > button {
    border: none;
    color: var(--secondary-color);
}

body:has([data-styletype="Fase2"]) .datepicker-wrapper .btn-outline-secondary:hover,
body:has([data-styletype="Fase2"]) .datepicker-wrapper .btn-outline-secondary:focus,
body:has([data-styletype="Fase2"]) .datepicker-wrapper .btn-outline-secondary:focus-within,
body:has([data-styletype="Fase2"]) .datepicker-wrapper .btn-outline-secondary:active {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled.active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled.disabled, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover.active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover.disabled, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover:active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover:hover, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover[disabled], body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled[disabled], body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover.active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover.disabled, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover:active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover:hover, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover[disabled], body:has([data-styletype="Fase2"]) .datepicker table tr td span.active[disabled] {
    background-color: transparent !important;
    background-image: unset !important;
    text-shadow: none !important;
    border: none;
    color: var(--primary-color) !important;
}

    body:has([data-styletype="Fase2"]) .datepicker table tr td span.active, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active.disabled:hover, body:has([data-styletype="Fase2"]) .datepicker table tr td span.active:hover {
        background-color: transparent !important;
        background-image: unset !important;
        text-shadow: none !important;
        border: none;
        color: var(--primary-color) !important;
    }

body:has([data-styletype="Fase2"]) .datepicker table tr td.day.focused, body:has([data-styletype="Fase2"]) .datepicker table tr td.day:hover {
    background: transparent;
    cursor: pointer;
}

body:has([data-styletype="Fase2"]) .datepicker .datepicker-switch {
    width: 145px;
    height: 30px;
}

body:has([data-styletype="Fase2"]) .datepicker table tr td span.focused, body:has([data-styletype="Fase2"]) .datepicker table tr td span:hover {
    background: transparent;
}

body:has([data-styletype="Fase2"]) .datepicker table tr td span.disabled, body:has([data-styletype="Fase2"]) .datepicker table tr td span.disabled:hover {
    background: 0 0;
    color: #999 !important;
    cursor: default;
}

body:has([data-styletype="Fase2"]) [data-styletype="ExplanationContainer"] .card-body {
    padding: 0;
}

    body:has([data-styletype="Fase2"]) [data-styletype="ExplanationContainer"] .card-body label:empty {
        display: none;
    }

body:has([data-styletype="Fase2"]) [data-styletype="ExplanationContainer"] .bb-textareafield-column.col-sm-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"] [data-styletype="SubTitle"] {
    color: #71132a !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] > .show > .card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

    body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="Akkoord"],
    body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] > .show > .card-body > .bb-buttonfield {
        width: 100%;
    }

        body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] > .show > .card-body > .bb-buttonfield .btn {
            max-width: 700px;
        }

    body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] > .show > .card-body > .card:not([data-styletype="Akkoord"], [data-styletype="PreviousContainer"]) {
        background-color: #fff;
        border-radius: var(--border-radius-large);
        padding: 5px 5px 0px 5px;
        box-shadow: rgb(186, 190, 196, .3) 0px 12px 24px;
    }

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="Specials"] .card-body {
    padding: 0 15px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="Specials"] span::before {
    content: '';
    width: 5px;
    height: 5px;
    display: block;
    background-color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 30px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="bold"],
body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="Bold"] {
    color: var(--secondary-color);
    font-size: 32px;
    padding-top: 0px;
    display: block;
    font-family: var(--veh-bold) !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="LayoutContainer"] .bb-textareafield-column.col-sm-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

.app-main:has([data-styletype="Fase2"]) {
    z-index: 111111111;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] > .show > .card-body > .card {
    min-width: 44%;
    padding: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"]:has([data-styletype="SubTitle"]) .card-body {
    color: #594E4E !important;
    background-color: #FFECD9;
    border-radius: var(--border-radius-large);
    border: 2px solid #F07A00;
    margin: 10px 0 0 0;
    padding-left: 55px;
}

body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"]:has([data-styletype="SubTitle"]) [data-styletype="SubTitle"] {
    color: #594E4E !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="AttentionContainer"]:has([data-styletype="SubTitle"]) > .show > .card-body::before {
    color: #F07A00 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="QuestionContainer"]:has(.bb-textareafield) {
    max-width: 550px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] span[data-styletype="SubTitle"] {
    display: block;
    padding-top: 10px;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="Specials"] {
    margin-bottom: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] [data-styletype="Akkoord"] {
    margin: 0 !important;
}

body:has([data-styletype="Fase2"]) [data-styletype="Middle"] svg {
    display: none;
}

body:has([data-styletype="Fase2"]) [data-styletype="ThankYouPage"] .card-body {
    padding: 0;
}

body:has([data-styletype="Fase2"]) .navbar:has(.show) {
    z-index: 111111111111111;
}

@media (max-width: 991.98px) {
    body:has([data-styletype="Fase2"]) .datepicker-dropdown {
        top: calc(50% - 190px) !important;
        z-index: 111111111111 !important;
        max-width: 320px;
        box-shadow: 0vw 0vw 100vw 100vw rgba(0, 0, 0, 0.4);
        left: calc(50% - 160px) !important;
        position: fixed;
        height: 380px;
    }

    body:has([data-styletype="Fase2"]) [data-styletype="CompareCoverage"] > .show > .card-body > .card:not([data-styletype="Akkoord"], [data-styletype="PreviousContainer"]) {
        width: 100%;
    }
}
