@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

@font-face {
    font-family: acsiLight;
    src: url(fonts/stag/StagLight.ttf);
}

@font-face {
    font-family: acsiTitle;
    src: url(fonts/stag/StagRegular.ttf);
}

@font-face {
    font-family: acsiSemiBold;
    src: url(fonts/stag/SemiBold.ttf);
}

@font-face {
    font-family: acsiMedium;
    src: url(fonts/stag/StagMedium.ttf);
}

:root {
    --primary-color: #007228;
    --primary-tint-color: #FCC350;
    --secondary-color: #000;
    --secondary-tint-color: #f1efeb;
    --light-secondary-color: #9A90B8;
    --primary-button-color: #FCC350;
    --primary-button-text-color: #3e3d3b;
    --primary-button-border-color: var(--primary-button-color);
    --primary-button-text-hover-color: #fff;
    --primary-button-hover-color: #FBCE73;
    --primary-button-border-hover-color: #FBCE73;
    --secondary-button-color: #f07a00ff;
    --secondary-button-text-color: #fff;
    --secondary-button-hover-color: #FBCE73;
    --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: #009835;
    --link-color: #1276b3;
    --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: 275px;
    --logo-height: 218px;
    --font-light: "Open Sans",Arial,sans-serif;
    --font-reg: "Open Sans",Arial,sans-serif;
    --font-bold: "Open Sans",Arial,sans-serif;
    --acsi-reg: "Open Sans",Arial,sans-serif;
    --acsi-title-light: acsiLight, Helvetica, Arial, sans-serif;
    --acsi-title-reg: acsiTitle, Helvetica, Arial, sans-serif;
    --acsi-bold: acsiMedium, Helvetica, Arial, sans-serif;
}

/* BASELINE */

body {
    font-family: var(--font-reg), Helvetica, Arial, sans-serif;
    background-color: #f1efeb;
}

.h2, h2 {
    font-family: var(--acsi-bold);
}

.text {
    color: var(--text-color);
}

.app-theme-white.app-container,
.app-theme-white .app-footer .app-footer__inner,
.app-theme-white .app-header,
.app-theme-white.app-container {
    background-color: var(--background-color) !important;
}

.navbar {
    height: 145px;
    margin-bottom: 45px;
}

@media (min-width: 991.98px) {
    .inner-navbar .navbar-collapse {
        margin-left: 220px;
    }
}

[data-styletype="TotalPremium"] .bb-selectfield {
    padding-right: 0;
    margin-right: -50px !important;
}

.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;
    position: absolute;
    top: 0;
}

.navbar .nav-item::after {
    color: var(--primary-color);
    margin-top: -40px;
}

.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;
    font-weight: bold;
}

    .btn-primary,
    .btn.btn-primary.sr, .btn.btn-primary.sr-nextpage,
    .btn-primary.disabled, .btn-primary:disabled {
        display: inline-block;
        min-height: 45px;
        padding: 12px 25px;
        border: 0;
        border-radius: 6px;
        text-align: center;
        font: 400 16px / 1.1 "Open Sans", Arial, sans-serif;
        color: #333;
        background: #fcc350;
        user-select: none;
        transition: background .3s ease-in-out;
    }

[data-styletype="Receipt"] .btn.btn-primary.sr {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-within,
.btn.btn-primary.sr:hover,
.btn.btn-primary.sr-nextpage:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    background-color: var(--secondary-button-hover-color);
    border: var(--secondary-button-hover-color);
    color: #000;
}

.btn-secondary {
    background-color: var(--secondary-button-color);
    border: none;
    color: #cccccc;
}

.btn-outline-primary {
    background-color: var(--primary-color) !important;
    border: none;
    color: #fff;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:focus-within,
    .btn-secondary:active,
    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:focus-within,
    .btn-outline-primary:active {
        background-color: var(--secondary-button-hover-color);
        border: none;
    }

label.align-self-center {
    font-size: 14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    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);
    text-decoration: underline !important;
}

    .primary-link:hover {
        color: var(--link-hover-color);
    }

.subtitle {
    font-size: 28px;
    color: var(--secondary-color);
    font-family: var(--acsi-title-reg);
    font-weight: 500;
}

[data-styletype="Receipt"] .bb-buttonfield {
    margin-bottom: 0;
}

/* --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 {
            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, .h1 {
    font-size: 44px;
    font-family: var(--acsi-title-reg);
    font-weight: 500;
    letter-spacing: 1px;
}

.primary-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-top: 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, .bb-selectfield-column select,
.custom-file-label {
    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);
}

.bb-simplefilefield-column {
    height: 56px !important;
}

input:not(.btn):focus, input.form-control:not(.btn):focus,
input:not(.btn):focus-within, input.form-control:not(.btn):focus-within,
.custom-file-input:focus ~ .custom-file-label,
[data-styletype="Formulier"] .sr .bb-selectfield-column select:focus-within,
.bb-togglefield-column .btn-group.btn-radio button:focus-within, .bb-togglefield-column .btn-group.btn-radio button:focus,
[data-styletype="Formulier"] .bb-textfield-column [data-displaytype="Kenteken"]:focus,
[data-styletype="Formulier"] .bb-textfield-column [data-displaytype="Kenteken"]:focus-within {
    border: 1px solid #007228;
    box-shadow: rgb(49, 130, 206) 0px 0px 0px;
}

.custom-file-label {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: -30px;
}

    .custom-file-label::after {
        height: 100%;
        display: flex;
        align-items: center;
    }

.input-group-text {
    background-color: #e9ecef;
    color: #495057;
    border: var(--border);
}


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);
        font-weight: 500;
    }

    .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;
    }


.card-header:first-child {
    border-radius: 15px 15px 0px 0px;
    border-radius: 15px 15px 0px 0px;
    color: var(--secondary-color);
    font-size: 28px;
    background-color: var(--secondary-tint-color);
    border: none;
    font-family: var(--acsi-title-reg);
}

/* --LOGIN END-- */

/* --FOOTER-- */

.app-wrapper-footer {
    margin-top: 6.5rem;
}

.app-footer .footer-content {
    padding: 6.5rem 15px 15px 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, .bottom-content {
    max-width: 1640px !important;
    margin: auto;
}

.news-letter {
    width: 100%;
    background-color: var(--primary-color);
    height: 80px;
}

.app-footer__inner,
.app-footer-left,
.footer-content,
.top-footer,
.bottom-footer,
footer {
    width: 100%;
}

.app-footer, .app-footer .app-footer__inner, .app-theme-white .app-footer .app-footer__inner {
    background-color: #fff;
}

.top-footer {
    display: flex;
    flex-wrap: wrap;
}

    .top-footer .left {
        width: 15%;
        min-width: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 25px;
    }

        .top-footer .left img {
            margin-bottom: 20px;
            width: 140px;
            height: auto;
        }

    .top-footer .right {
        width: 85%;
    }

        .top-footer .right > ul {
            display: flex;
        }

        .top-footer .right ul {
            padding: 0;
            justify-content: space-between;
        }

            .top-footer .right ul li {
                list-style: none;
            }

        .top-footer .right > ul > li {
            margin-right: 35px;
        }

    .top-footer * {
        color: #000;
    }

.has-children.menu__item > a {
    display: block;
    padding-bottom: 10px;
    font-size: 1.25rem;
    color: #007228;
    font-weight: 600;
    pointer-events: none;
}

.has-children .menu__item::before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro", sans-serif;
    margin-right: 5px;
    font-size: 5pt;
    font-weight: 200;
}

.has-children .menu__item {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.menu-contact {
    display: flex;
    flex-direction: column;
}

    .menu-contact .phone {
        font-size: 1rem;
        font-weight: 700;
    }

.menu__item.menu__item--contact::before {
    content: "\f879";
    font-size: 32px;
    margin-right: 15px;
}

.top-footer a:hover {
    text-decoration: underline !important;
    color: #000 !important;
}


.app-footer .app-footer__inner {
    padding: 0;
}

.bottom-footer {
    background-color: var(--secondary-tint-color);
}

    .bottom-footer > div {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px
    }

    .bottom-footer a {
        margin-right: 15px;
        text-decoration: underline !important;
        color: #707070 !important;
    }


.socials {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.icon-link {
    width: 34px;
    height: 34px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 18px;
}

    .icon-link * {
        color: #fff;
    }

/* --FOOTER END-- */

/* --BANNER-- */

.banner {
    height: 180px;
    margin-bottom: 0.5rem;
    padding-bottom: 2rem;
}

    .banner h1, .banner .h1 {
        position: relative;
        padding-top: 0;
        margin-top: 0;
        word-wrap: break-word;
        color: #fff !important;
        font-family: var(--acsi-title-light) !important;
    }

    .banner .subtitle {
        color: #fff;
    }

    .banner .primary-link {
        margin-left: 0px !important;
    }

    .banner.home {
        height: 230px;
    }

        .banner.home img {
            position: absolute;
            left: 0;
            top: -50px;
            width: 100%;
            height: 250px;
        }

    .banner.big img {
        height: 270px !important;
    }

/* --BANNER END-- */

/* GEGEVENS */

.card {
    box-shadow: none;
    border: none;
    border-radius: var(--border-radius-large);
    background-color: var(--secondary-tint-color);
}

.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: 18px;
        font-weight: 400;
    }


    .gegevens-card .title-row .bb-textfield span {
        font-size: 24px;
        font-family: var(--acsi-title-reg);
        color: var(--secondary-color);
        font-weight: 300;
    }

    .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 {
            color: #9a0025 !important;
        }

.edit-card {
    max-width: 750px;
}

    .edit-card .btn-row {
        max-width: unset !important;
    }

        .edit-card .btn-row .save-btn {
            padding-right: 5px;
        }

    .edit-card .col-sm-11 {
        flex: 0 0 91.66667% !important;
        max-width: 91.66667% !important;
    }

    .edit-card .col-sm-1 {
        flex: 0 0 8.33333% !important;
        max-width: 8.33333% !important;
        padding: 0;
    }

.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');
    }


/* GEGEVENS END */

/* HOME */

.menuType {
    background-color: #FCB21E;
    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: #FBCE73;
    }

    .menuType svg * {
        fill: var(--secondary-color);
        stroke: var(--secondary-color);
    }

    .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;
        font-weight: bold;
    }

.contact-container {
    margin-top: 150px;
}

    .contact-container .contact-card {
        background-color: var(--secondary-tint-color);
        border: none;
        color: var(--secondary-color);
        height: 100%;
    }

        .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;
            font-weight: bold;
        }

        .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,
    .btn.btn-primary.sr[value="Kies"], .btn.btn-primary.sr[value="Maatwerkofferte"],
    input[type="button"] {
        display: inline-block;
        min-height: 45px;
        padding: 12px 25px;
        border: 0;
        border-radius: 6px;
        text-align: center;
        font: 400 16px / 1.1 "Open Sans", Arial, sans-serif;
        color: #333;
        background-color: #fcc350 !important;
        user-select: none;
        transition: background .3s ease-in-out;
        border: 1px solid #fcc350;
    }

        .verzekering-card .btn:hover,
        [data-styletype="Tile"] .btn:hover,
        input[type="button"]:hover {
            background-color: var(--primary-button-hover-color) !important;
            color: #000 !important;
            border-color: var(--primary-button-hover-color) !important;
            font-size: 16px;
        }

[data-styletype="BedanktPagina"] .card-body * {
    font-size: 16px;
}

[data-styletype="Tile"] .bb-textfield:nth-child(2) span {
    font-size: 20px !important;
    word-wrap: break-word;
    font-family: var(--font-bold);
    font-weight: 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 {
                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(--acsi-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 {
    background-color: #f8f8f8;
}

.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 {
    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.voowaarden .table td {
    color: var(--link-color);
    text-decoration: underline;
}

.voowaarden .table-hover tbody tr:hover, .voowaarden .table-hover tbody tr:hover td {
    background-color: var(--secondary-tint-color) !important;
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

.pop-up .close-pop-up {
    padding: 0px 15px 15px 15px;
}

.table-responsive.nowrap > .table td:last-child i,
.table-responsive.nowrap > .dt-bootstrap4 td:last-child i {
    color: var(--link-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 {
    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(--acsi-bold);
    font-weight: bold;
    letter-spacing: 1px;
}

.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: #fff;
    }

.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, .header-megamenu.nav > li > .nav-link {
    font-family: var(--font-light);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.7rem;
}

    .navbar .nav-item .nav-link.active {
        color: #fff;
        border-bottom: 2px solid var(--primary-tint-color);
    }

    .navbar .nav-item .nav-link:hover, .header-megamenu.nav > li > .nav-link:hover {
        opacity: 1;
        color: #fcc350;
    }


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
    }
}

@media (max-width: 991.98px) {
    .navbar .nav-item .nav-link {
        color: var(--secondary-color);
        font-family: var(--font-bold);
        font-weight: bold;
        width: 100%;
        font-size: 22px;
    }

    [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Middle"] {
        width: 100% !important;
    }

    .login-row {
        margin-top: 45px;
    }

    .app-main .app-main__outer {
        padding-left: 0 !important;
        min-height: 100vh;
    }

    .navbar-collapse {
        z-index: -1;
        padding: 90px 20px 20px 20px;
    }

        .navbar-collapse .logoutContainer {
            margin-top: 30px;
        }

    .navbar .hamburger-container {
        margin-top: 7px;
    }

    .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;
    }

    .has-children.menu__item {
        display: none;
    }

        .has-children.menu__item.contact-list {
            display: block !important;
        }

    .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%;
    }

    .custom-file-label {
        margin-right: 15px;
    }

    .bb-checkfield > .control-label {
        width: calc(100% - 48px);
        flex: 0 0 calc(100% - 48px);
    }

    .bb-checkfield .bb-checkfield-column {
        width: 38px;
        flex: 0 0 38px;
        padding: 0;
    }

        .bb-checkfield .bb-checkfield-column input {
            width: 38px !important;
            height: 38px !important;
        }

    [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;
        padding-top: 50px;
    }

    .inner-navbar {
        width: 100% !important;
    }

    .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);
    }

    body .card-header {
        text-align: left;
    }

    .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 !important;
    max-width: 1640px;
    margin: 0 auto;
    overflow: visible;
}

    .bb-container.card.page.sr > .show > .card-body {
        padding: 0 !important;
    }

.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: none;
        margin: 25px 0;
        width: 90%;
        font-family: var(--font-bold);
        font-weight: bold;
        color: var(--secondary-color);
        background-color: var(--secondary-tint-color);
    }

        .sr.card[data-styletype="ReadonlyContainer"] label {
            font-family: var(--font-light) !important;
            font-weight: lighter;
        }

    .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 {
        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-weight: lighter;
    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: var(--background-color);
}

.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;
}

.bb-togglefield .btn-group.btn-radio {
    width: 100%;
}

.bb-togglefield-column .btn-group.btn-radio button {
    height: 56px;
    font-family: var(--font-bold);
    font-weight: 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,
.activeButDisabled {
    background-color: var(--primary-color);
    color: #fff;
}

.bb-togglefield-column .btn-group.btn-radio button:hover {
    background-color: #009836;
}

.sr .card-header {
    font-family: var(--font-bold);
    font-size: 22px;
    border: none;
    font-weight: bold;
    border-radius: var(--border-radius-reg);
    background-color: var(--background-color);
}

[data-styletype="Formulier"] .show .card-body .card .bb-textfield.isReadonly .bb-textfield-column {
    height: auto;
    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: auto !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: none;
    border-radius: var(--border-radius-small);
    opacity: 0.5;
    cursor: not-allowed;
    padding-left: 0px;
}

.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(--font-bold);
    font-weight: bold;
    font-size: 19px;
}

[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: #337AB7 !important;
}

[data-styletype="MeerInfo"] .card .collapse {
    color: var(--secondary-color);
    font-family: var(--font-light);
    font-weight: inherit;
}

[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;
    min-height: 100px;
    height: auto;
}

[data-styletype="HoofdDekkingen"], [data-styletype="VerkoperHoofdDekkingen"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: unset;
    justify-content: center;
    padding: 0 0 20px 0;
}

[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(--acsi-bold);
            font-weight: bold;
            color: var(--secondary-color);
            letter-spacing: 1px;
        }

    [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);
            font-weight: lighter;
        }

@media (min-width: 1200px) {
    .banner.home .img-holder {
        display: block;
    }
}

@media (max-width: 1200px) {
    [data-styletype="BasisDekking"] .col-sm-9 {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .navbar .logo-src {
        width: 190px;
        height: 140px;
        background-size: 180px;
    }

    [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;
        flex: 0 0 50%;
    }

    [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: 16px !important;
    color: var(--secondary-color);
    font-family: var(--font-light);
    font-weight: inherit;
}

[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="AanvullendeDekking"] .bb-textfield.row .bb-textfield-column.col-sm-8 {
    max-width: 100% !important;
    flex: 0 0 100% !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;
    }

[data-styletype="Formulier"] > .card-header .header-col {
    padding-left: 15px;
    font-size: 32px;
    margin: 0;
}

/* LAYOUT CHANGE */

.card.page > .card-header {
    background-color: transparent;
    border: none;
}

[data-styletype="Formulier"] > .card-header .header-col {
    max-width: unset !important;
    padding: 0;
}

[data-styletype="Layoutcontainer"] > .show > .card-body,
[data-styletype="Coveragecontainer"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
    padding: 0 15px 0 0;
}

[data-styletype="Formulier"] .show .card-body {
    max-width: unset;
    margin: 0 auto;
}

[data-styletype="Left"] {
    width: 55%;
}

    [data-styletype="Left"] > .show > .card-body {
        background-color: #fff;
    }

.container.body-content [data-styletype="Left"] > .show > .card-body {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
}

.container.body-content [data-styletype="InformationContainer"] > .show > .card-body,
.container.body-content [data-styletype="PakketOnderdeel"],
.container.body-content [data-styletype="PakketOnderdeel"] .card-header,
.container.body-content .verzekering-card, .container.body-content [data-styletype="Tile"],
.container.body-content .sr.card[data-styletype="Collapsible"] {
    background-color: #fff !important;
    border: none;
}

[data-styletype="Right"] {
    width: 40%;
}

[data-styletype="Coveragecontainer"] [data-styletype="Left"] {
    width: 65%;
}

[data-styletype="Coveragecontainer"] [data-styletype="Right"] {
    width: 30%;
}

    [data-styletype="Coveragecontainer"] [data-styletype="Right"] > .show {
        position: sticky;
        top: 20px;
    }

[data-styletype="Step"] * {
    padding: 0 !important;
}

[data-styletype="Step"] .bb-textfield-column span {
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

[data-styletype="Stepper"] > .show > .card-body > .card:last-child {
    width: 51px;
}

[data-styletype="Left"] > .show > .card-body,
[data-styletype="Right"] > .show > .card-body,
[data-styletype="Layoutcontainer"] > .show > .card-body {
    padding: 0;
}

/* STEPPER */
[data-styletype="Stepper"] {
    margin-top: 1.5rem;
}

[data-styletype="Step"] {
    margin: 0 !important;
    width: 51px;
}

[data-styletype="QuestionContainer"] > .show > .card-body,
[data-styletype="Stepper"] > .show > .card-body {
    padding: 0;
}

[data-styletype="Stepper"] > .show > .card-body {
    display: flex;
}

    [data-styletype="Stepper"] > .show > .card-body > .card {
        width: calc(30% - 51px);
    }

        [data-styletype="Stepper"] > .show > .card-body > .card > .show > .card-body {
            display: flex;
            padding: 0;
        }

[data-styletype="Stepper"] .bb-textfield.isReadonly .bb-textfield-column {
    margin-right: 0 !important;
}

[data-styletype="Step"] > .show > .card-body > :last-child {
    font-size: 14px;
    text-align: center;
}

[data-styletype="Unclickable"] [data-styletype="Step"] > .show > .card-body > :last-child,
[data-styletype="Done"] [data-styletype="Step"] > .show > .card-body > :last-child {
    color: var(--primary-color);
}

[data-styletype="Done"] svg {
    cursor: pointer !important;
}

[data-styletype="To-do"] svg {
    cursor: not-allowed !important;
}

[data-styletype="Step"] .bb-textfield-column {
    padding: 0 !important;
}

[data-styletype="LineStep"] svg {
    display: none;
}

[data-styletype="LineStep"] {
    width: 100%;
    height: 50px;
    margin: 0 !important;
    justify-content: center;
    display: flex;
}

    [data-styletype="LineStep"] > .show > .card-body {
        height: 1px;
        padding: 0;
        border-top: 0.5px dashed #9A90B8;
        margin: 0 15px;
    }

[data-styletype="AanvullendeDekking"] .isReadonly .bb-textfield-column.col-sm-8 div, [data-styletype="AanvullendeDekking"] .isReadonly .bb-textfield-column.col-sm-8 div span {
    background-color: transparent !important;
    border: none;
    padding-left: 0;
    height: auto !important;
}

[data-styletype="Formulier"] > .show > .card-body > .bb-textfield [data-styletype="Title"] {
    color: #000 !important;
    margin-bottom: 0;
}

/* INFORMATION CONTAINER */

[data-styletype="InformationContainer"] > .show > .card-body {
    background-color: #F1EFEA;
    border-radius: 10px;
}

    [data-styletype="InformationContainer"] > .show > .card-body .card-body,
    [data-styletype="CallContainer"] > .show > .card-body .card-body {
        padding: 0;
    }

[data-styletype="Check"] > .show > .card-body {
    display: flex;
}

[data-styletype="InformationContainer"] [data-styletype="Title"],
[data-styletype="Receipt"] [data-styletype="Title"],
[data-styletype="Title"] {
    color: var(--primary-color);
    font-size: 28px;
    line-height: normal;
    margin-bottom: 1.5rem;
    display: block;
}

[data-styletype="InformationContainer"] [data-styletype="SubTitle"] {
    color: #000;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    font-family: var(--font-bold);
    text-align: center;
    margin-bottom: 0 !important;
}

[data-styletype="InformationContainer"] svg {
    width: 100%;
}

[data-styletype="Check"] > .show > .card-body > .bb-textfield {
    color: #000;
    font-size: 14px;
}

    [data-styletype="Check"] > .show > .card-body > .bb-textfield:first-of-type {
        color: var(--primary-color);
        font-family: var(--font-bold);
        font-weight: bold;
    }

/* CALL CONTAINER */

[data-styletype="CallContainer"] > .show > .card-body {
    background-color: var(--primary-color);
    border-radius: 10px;
}

[data-styletype="CallContainer"] [data-styletype="Title"] {
    color: #fff;
    font-size: 24px;
    line-height: normal;
    margin-bottom: 1.5rem;
    display: block;
}

[data-styletype="CallContainer"] [data-styletype="Imagecard"],
[data-styletype="CallContainer"] [data-styletype="Imagecard"] svg {
    max-width: 28px;
    margin: 0 !important;
    height: 28px;
}

[data-styletype="CallContainer"] [data-styletype="Infocard"] {
    margin-left: 1.5rem !important;
    color: #fff;
    margin-bottom: 0 !important;
}

    [data-styletype="CallContainer"] [data-styletype="Infocard"] > .show > .card-body .bb-textfield {
        font-family: var(--font-reg);
        font-weight: 100;
        font-size: 14px;
    }

        [data-styletype="CallContainer"] [data-styletype="Infocard"] > .show > .card-body .bb-textfield:first-child {
            font-family: var(--font-bold);
            font-weight: bold;
            font-size: 16px;
        }

[data-styletype="CallContainer"] [data-styletype="Check"] {
    margin-bottom: 0 !important;
}

/* RECEIPT */

[data-styletype="Receipt"] > .show > .card-body {
    background-color: #fff;
    border-radius: 10px;
}

[data-styletype="Receipt"] [data-styletype="Title"] {
    color: var(--primary-color);
}

[data-styletype="Receipt"] > .show > .card-body .card-body {
    padding: 0;
}

[data-styletype="Receipt"] [data-styletype="Ensurance"] {
    border-radius: 0 !important;
    padding: 15px 0 !important;
    margin-bottom: 0 !important;
    background-image: linear-gradient(to right, rgb(000 000 000 / 100%) 100%, rgba(000, 000, 000, 0) 0%);
    background-position: bottom;
    background-size: 18px 1px;
    background-repeat: repeat-x;
    margin-bottom: 20px !important;
}

    [data-styletype="Receipt"] [data-styletype="Ensurance"] .col-sm-7 {
        text-align: left;
        font-size: 16px;
        font-family: var(--font-reg);
        font-weight: 400;
        color: #000;
    }

    [data-styletype="Receipt"] [data-styletype="Ensurance"] .col-sm-5 {
        text-align: right;
        padding-right: 20px;
        font-size: 18px;
        font-family: var(--font-bold);
        font-weight: 400;
        color: #000;
    }

[data-styletype="Minimal"] > .show > .card-body > .bb-textfield * {
    font-size: 16px;
}

.container.body-content [data-styletype="Formulier"] > .show > .card-body > [data-styletype="Minimal"],
.container.body-content [data-styletype="ClosingQuestions"],
.container.body-content [data-styletype="Bestanden"],
.container.body-content [data-styletype="ReadonlyContainer"],
.container.body-content [data-styletype="Slotvragen"],
.container.body-content .page > .show > .card-body > [data-styletype="minimal"],
.container.body-content [data-styletype="Verzekeringskaart"] {
    max-width: 870px;
    background-color: #fff !important;
    border-radius: 15px !important;
    padding: 15px !important;
    margin: 25px 0;
    font-size: 16px;
}

.container.body-content [data-styletype="Minimal"] [data-styletype="ReadonlyContainer"],
.container.body-content [data-styletype="Left"] [data-styletype="ReadonlyContainer"] {
    background-color: var(--secondary-tint-color) !important;
}

[data-styletype="Receipt"] > .show > .card-body > div:nth-child(2) {
    padding-top: 0 !important;
}

[data-styletype="TotalPremium"] {
    margin-bottom: 0 !important;
}

    [data-styletype="TotalPremium"] .col-sm-5 {
        padding-right: 0;
        display: flex;
        align-items: center;
    }

    [data-styletype="TotalPremium"] .col-sm-7 {
        text-align: right;
        padding-right: 20px;
        font-size: 24px;
        font-weight: 600;
        color: #000;
    }


@media (max-width: 1090px) {
    [data-styletype="Right"],
    [data-styletype="Left"] {
        width: 100% !important;
    }

    [data-styletype="Layoutcontainer"] > .show > .card-body,
    [data-styletype="Coveragecontainer"] > .show > .card-body {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding: 0;
    }

    [data-styletype="HoofdDekkingen"] > div {
        margin: 15px 0;
    }

    [data-styletype="Receipt"] [data-styletype="Ensurance"] .col-sm-7,
    [data-styletype="TotalPremium"] .col-sm-5 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    [data-styletype="Receipt"] [data-styletype="Ensurance"] .col-sm-5,
    [data-styletype="TotalPremium"] .col-sm-7 {
        flex: 0 0 70%;
        max-width: 70%;
    }
}


@media (max-width: 991.98px) {
    [data-styletype="HoofdDekking"] > .show > .card-body, [data-styletype="VerkoperHoofdDekkingen"] > .show > .card-body {
        min-height: 60px;
    }

    .navbar {
        height: 80px;
        margin-bottom: 45px;
    }

        .navbar .logo-src {
            position: relative;
            top: -10px;
            width: 160px;
            height: 130px;
            background-size: contain;
        }
}

[data-styletype="HoofdDekking"], [data-styletype="VerkoperHoofdDekkingen"] {
    min-height: 265px;
    height: 100%;
}

@media (min-width: 991.98px) {
    [data-styletype="PremieKolom"] {
        padding-left: 0;
        padding-right: 35px;
        position: absolute;
        right: 0;
        width: 200px;
        max-width: unset !important;
        margin-top: 5px
    }

    .inner-navbar {
        margin-top: 50px;
    }

    .logoutContainer {
        margin-top: 45px;
    }

    .inner-navbar::after {
        content: '';
        height: 35px;
        width: 1px;
        background-color: var(--primary-color);
        margin-left: 5px;
        margin-top: 4px;
    }
}

@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, .banner .h1 {
        font-size: 36px;
        margin-top: 0px;
    }

    .banner.home {
        height: 170px !important;
    }

        .banner.home img {
            height: 200px;
        }

    .banner.big img {
        height: 220px !important;
    }

    .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: 30px;
    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: -30px;
}

[data-styletype="TotalePremie"] .col-sm-6:last-child .bb-textfield {
    font-size: 42px;
    color: var(--secondary-color);
    font-family: var(--acsi-reg);
}

[data-styletype="HoofdDekkingen"]::after, [data-styletype="VerkoperHoofdDekkingen"]::after {
    display: none;
}



[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-weight: 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 {
    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;
    font-size: 16px;
}

[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"] *,
[data-styletype="NegatiefPunt"] * {
    font-size: 14px;
}

[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);
    font-weight: lighter;
}

[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);
                font-weight: lighter;
            }

            [data-styletype="PakketOnderdeel"] .btn[value="Verwijderen"],
            [data-styletype="PakketOnderdeel"] .btn[value="Beeindigen"] {
                color: var(--text-danger) !important;
                font-family: var(--font-light);
                font-weight: lighter;
            }

        [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(--acsi-bold);
            font-weight: bold;
            font-size: 24px;
            margin-top: -10px;
            letter-spacing: 1px;
        }

[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);
    font-size: 14px;
}

[data-styletype="Todo"] svg path {
    fill: #5D5D5D;
}

[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);
    font-weight: lighter;
    margin-bottom: 15px;
    margin-top: -15px;
}

[data-styletype="PremieRow"] > .col-sm-6:last-child {
    color: var(--secondary-color);
    font-family: var(--font-bold);
    font-weight: bold;
    font-size: 18px;
}

[data-styletype="Formulier"] .col-sm-4 {
    color: var(--secondary-color);
    font-family: var(--font-reg);
    font-size: 16px;
}

[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;
    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: -10px;
    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: #f1efeb;
}

.checkbox.sr {
    display: flex;
    justify-content: end;
    align-content: end;
    float: right;
}

.sr [data-type="text"] [data-styletype="Download"] a {
    display: block;
    background-color: #fcc350;
    color: #000 !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 {
        background-color: var(--primary-color);
        color: #fff !important;
    }

span[data-styletype="SubTitle"] {
    font-family: var(--font-bold);
    font-weight: 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-weight: bold;
    font-family: var(--acsi-bold) !Important;
    letter-spacing: 1px;
}

[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(--acsi-bold);
        font-weight: bold;
        letter-spacing: 1px;
    }

    [data-styletype="BasisDekking"] [data-styletype="PremieKolom"] > .row:last-child span {
        font-size: 12px;
        font-family: var(--font-light);
        font-weight: lighter;
    }

[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);
    font-weight: lighter;
}

[data-styletype="TotalePremie"] [data-styletype="PositiefPunt"] {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--font-light);
    font-weight: lighter;
}

[data-styletype="TotalePremie"] [data-styletype="FinePrint"] {
    color: var(--text-color);
    font-size: 12px;
    font-family: var(--font-light);
    font-weight: lighter;
}

.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;
}

    [data-styletype="Tile"] li {
        text-align: left;
        margin-left: 20px;
    }

.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);
        font-weight: 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="AanvullendeDekkingen"] > [data-styletype="Collapsible"] {
    border: none !important;
    width: 100%;
    padding: 15px 0 15px 15px !important;
}

    [data-styletype="AanvullendeDekkingen"] > [data-styletype="Collapsible"] [data-styletype="MeerInfo"] {
        margin-bottom: 15px !important;
    }


    [data-styletype="AanvullendeDekkingen"] > [data-styletype="Collapsible"] > .show > .card-body {
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: -15px;
    }

        [data-styletype="AanvullendeDekkingen"] > [data-styletype="Collapsible"] > .show > .card-body > .col-sm-6 {
            margin: 15px 0 !important;
        }

        [data-styletype="AanvullendeDekkingen"] > [data-styletype="Collapsible"] > .show > .card-body .col-sm-9 {
            margin-bottom: 0;
            margin-top: 0;
        }

[data-styletype="minimal"] > .show > .card-body,
[data-styletype="minimal"] > .card-header > .col-sm-11.header-col {
    padding: 0;
}

.container.body-content [data-styletype="minimal"] > .show > .card-body,
.container.body-content [data-styletype="minimal"] > .card-header > .col-sm-11.header-col {
    padding-left: 15px;
}

[data-styletype="Receipt"] .col-sm-5 {
    font-size: 16px;
}

[data-styletype="TotalPremium"] .bb-selectfield label {
    display: none !important;
}

[data-styletype="Unclickable"] [data-styletype="Step"] svg {
    cursor: not-allowed !important;
}

.container.body-content [data-styletype="Minimal"] .bb-textfield {
    margin-bottom: 1.5rem !important;
}

@media (max-width: 650px) {
    [data-styletype="Stepper"] > .show > .card-body {
        justify-content: space-between;
    }

    [data-styletype="LineStep"], [data-styletype="Step"] > .show > .card-body > :last-child {
        display: none;
    }

    [data-styletype="Stepper"] > .show > .card-body > .card {
        width: 51px !important;
    }

    [data-styletype="Stepper"] {
        margin: 0 !important;
    }
}

.datepicker {
    display: block !important;
}

/* SOFTRULES END */

/* ACURA SPECIFIC */

.container.body-content:has([data-styletype="Acura"]),
body:has([data-styletype="Acura"]) {
    background-color: #EEF1F6;
}

    .container.body-content:has([data-styletype="Acura"]) * {
        font-family: "Nunito Sans", sans-serif;
    }

[data-styletype="Acura"] [data-styletype="Compare"] {
    max-width: 1244px;
    background-color: #fff !important;
    border-radius: 15px !important;
    padding: 15px !important;
    margin: 25px auto;
    font-size: 16px;
}

[data-styletype="Acura"] [data-styletype="Formulier"],
[data-styletype="Acura"] [data-styletype="Stepper"],
[data-styletype="Acura"] [data-styletype="SummaryContainer"] {
    max-width: 750px;
    margin: 0 auto;
}

[data-styletype="Acura"] [data-styletype="Stepper"] {
    margin-top: 25px;
    margin-bottom: 0px;
}

    [data-styletype="Acura"] [data-styletype="Stepper"] > .show > .card-body {
        display: flex;
        justify-content: center;
    }

        [data-styletype="Acura"] [data-styletype="Stepper"] > .show > .card-body > .card {
            width: 25%;
        }

            [data-styletype="Acura"] [data-styletype="Stepper"] > .show > .card-body > .card:last-child {
                width: 51px;
            }

                [data-styletype="Acura"] [data-styletype="Stepper"] > .show > .card-body > .card:last-child [data-styletype="LineStep"] {
                    display: none;
                }

[data-styletype="Acura"] [data-styletype="InformationContainer"] [data-styletype="Title"],
[data-styletype="Acura"] [data-styletype="Receipt"] [data-styletype="Title"],
[data-styletype="Acura"] [data-styletype="Title"] {
    color: #0A0A0A !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
}

[data-styletype="Acura"] .btn-primary,
[data-styletype="Acura"] .btn.btn-primary.sr,
[data-styletype="Acura"] .btn.btn-primary.sr-nextpage,
[data-styletype="Acura"] .btn-primary.disabled,
[data-styletype="Acura"] .btn-primary:disabled,
[data-styletype="ConfirmationRow"] > :first-child .btn {
    border: none !important;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15) !important;
    padding: 0.6em 2.1rem;
    letter-spacing: 0.5px;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 400;
    background-color: #8DA5D6 !important;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    color: #fff !important;
}

    [data-styletype="Acura"] .btn-primary:hover,
    [data-styletype="Acura"] .btn-primary:focus,
    [data-styletype="Acura"] .btn-primary:focus-within,
    [data-styletype="Acura"] .btn.btn-primary.sr:hover,
    [data-styletype="Acura"] .btn.btn-primary.sr-nextpage:hover,
    [data-styletype="Acura"] .btn-primary:not(:disabled):not(.disabled):active,
    [data-styletype="Acura"] .btn-primary:not(:disabled):not(.disabled).active,
    [data-styletype="Acura"] .show > .btn-primary.dropdown-toggle {
        color: #fff !important;
        background-color: #3276b1;
        border-color: #285e8e !important;
    }

    [data-styletype="Acura"] .btn.btn-primary.sr[data-styletype="PreviousButton"] {
        background-color: transparent !important;
        border: none !important;
        color: #0A0A0A !important;
        padding-left: 0 !important;
    }

        [data-styletype="Acura"] .btn.btn-primary.sr[data-styletype="PreviousButton"]::before {
            content: '\f060';
            font-family: var(--fa);
        }

[data-styletype="Acura"] [data-styletype="PageButtons"] > .show > .card-body {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

[data-styletype="Acura"] [data-styletype="Unclickable"] [data-styletype="Step"] > .show > .card-body > :last-child,
[data-styletype="Acura"] [data-styletype="Done"] [data-styletype="Step"] > .show > .card-body > :last-child {
    color: #8DA5D6 !important;
}


[data-styletype="Acura"] [data-styletype="Minimal"] [data-styletype="Minimal"] > .show > .card-body {
    padding: 0;
}

[data-styletype="Acura"] [data-styletype="popup"] > .show > .card-body > .card {
    overflow: auto;
    max-height: 90vh;
}

[data-styletype="Compare"] [data-styletype="Item"] > .show > .card-body {
    padding: 1px;
    display: flex;
    flex-wrap: wrap;
}

[data-styletype="Compare"] [data-styletype="Item"] {
    border: 1px solid #B8B8B8;
    border-radius: 15px;
    margin-bottom: 0 !important;
}

    [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Left"] {
        width: 180px;
    }

        [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Left"] img {
            width: 155px;
        }

    [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Middle"] {
        width: calc(70% - 100px);
    }

    [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Right"] {
        width: calc(30% - 80px);
        padding: 15px 15px 0 15px;
        margin-bottom: 0 !important;
    }

    [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Links"] {
        width: 100%;
        margin-bottom: 0 !important;
        background-color: #F2F2F2;
        border-radius: 0 0 11px 11px;
    }

        [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Links"] .card-body {
            padding: 8px 15px;
        }

        [data-styletype="Compare"] [data-styletype="Item"] [data-styletype="Links"] .bb-textfield {
            margin-bottom: 0 !important;
        }

[data-styletype="Compare"] > .show > .card-body > .card {
    margin-bottom: 0 !important;
}

[data-styletype="Compare"] .btn.btn-primary.sr[data-styletype="MeerInfo"] {
    background-color: transparent !important;
    text-decoration: underline !important;
    border: none !important;
    color: #000 !important;
    font-weight: 300 !important;
}


[data-styletype="Acura"] [data-styletype="Compare"] .btn.btn-primary[data-styletype="Aanpassen"] {
    border: none !important;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15) !important;
    padding: 0.6em 2.1rem;
    letter-spacing: 0.5px;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 400;
    background-color: #B69E56 !important;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    color: #fff !important;
}

[data-styletype="Acura"] .sr [type="text"] a {
    color: #8DA5D6 !important;
}

[data-styletype="Acura"] [data-styletype="Compare"] > .show > .card-body > .card > .show > .card-body {
    padding: 15px 0;
}

.isReadonly .bb-textfield-column.col-sm-7 div,
.isReadonly .bb-textfield-column.col-sm-8 div {
    border: none;
}

[data-styletype="Acura"] [data-styletype="SummaryContainer"] > .show > .card-body > [data-styletype="Minimal"] {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 30px 0 30px;
}

[data-styletype="SummaryContainer"] [data-styletype="Minimal"] > .show > .card-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

    [data-styletype="SummaryContainer"] [data-styletype="Minimal"] > .show > .card-body > [data-styletype="Minimal"] .bb-textfield {
        width: 50%;
    }

        [data-styletype="SummaryContainer"] [data-styletype="Minimal"] > .show > .card-body > [data-styletype="Minimal"] .bb-textfield:first-of-type {
            width: 100%;
        }

    [data-styletype="SummaryContainer"] [data-styletype="Minimal"] > .show > .card-body [data-styletype="Minimal"] .card .card-body .bb-textfield {
        width: 100%;
    }
