/* basics */
:root {
    --text: #1b3344; /* var(--text); */
    --primary: #00A74F; /* var(--primary); */
    --secondary: #00b4e4; /* var(--secondary); */
    --bg-theme: #F5F6FA; /* var(--bg-theme); */
}

@import "https://fonts.googleapis.com/css2?family=Rubik:wght@;200;400;500;600;800;&display=swap";

* {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    position: relative;
}

p {
    margin: 0;
    padding: 0
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.extrasmall {
    font-size: .775em;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.bg-theme {
    background-color: var(--bg-theme);
}

/* END basics */

/* Customised */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* 
.btn-primary {
    background-color:var(--primary) !important;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color:var(--text) !important;
    color: #fff;
}
*/
.btn-outline-theme {
    color: var(--text);
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .btn-outline-theme:hover {
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

.btn-primary {
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    z-index: 5;
    transition: all .5s ease-in-out;
    position: relative;
    overflow: hidden;
    background-color: var(--primary) !important;
    color: #fff;
    border: none;
}

.btn-primaryselected {
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    z-index: 5;
    transition: all .5s ease-in-out;
    position: relative;
    overflow: hidden;
    background-color: var(--text) !important;
    color: #fff;
    border: none;
}

    .btn-primary::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 0%;
        border-radius: 50%;
        /* background: rgba(0, 0, 0, .1); */
        background-color: var(--text) !important;
        top: 50%;
        left: 50%;
        padding: 50%;
        z-index: -1;
        transition: all .3s ease-out 0s;
        transform: translate3d(-50%, -50%, 0) scale(0);
    }

    .btn-primary:hover::after {
        transform: translate3d(-50%, -50%, 0) scale(1.3);
    }

a {
    color: var(--primary);
}

    a:hover, a:focus {
        color: var(--text);
    }

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary);
}

/* Customised nav bar */

/*
.navbar-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .3s ease-out 0s;
  }
  
  .sticky{
    position: fixed;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all .3s ease-out 0s;
  }
*/

.navbar {
    line-height: 60px;
    padding-left: 16px;
    padding-right: 16px;
}

    .navbar ul li ul {
        line-height: 40px;
    }

@media (max-width: 576px) {
    .navbar .navbar-collapse {
        line-height: 40px;
        background-color: #fff;
        margin-left: -28px;
        margin-right: -28px;
        padding-left: 28px;
        padding-right: 28px;
        padding-bottom: 24px;
    }

    .navbar .navbar-collapse {
        line-height: 40px;
        background-color: #fff;
        margin: 0px;
        padding: 0px;
        padding-bottom: 16px;
    }

    .navbar .nav-link {
        color: var(--text);
    }

    .navbar ul li {
        width: 100%;
        border-top: 1px solid rgb(238, 238, 238);
    }

        .navbar ul li:last-child {
            width: 100%;
            border-top: 0px;
        }

        .navbar ul li ul li {
            width: 100%;
            border-top: 0px;
        }

        .navbar ul li ul {
            margin-bottom: 16px;
        }

        .navbar ul li .btn {
            width: 100%;
        }

    footer .navbar ul li {
        border-top: 0px;
    }
}

.nav-link {
    color: var(--text);
}

.navbar.sticky .nav-link, footer .navbar .nav-link {
    color: var(--text);
}

.nav-link:focus, .nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* Customised nav bar brand */
.navbar-brand img {
    max-width: 200px;
}

.navbar.sticky .navbar-brand, footer .navbar .navbar-brand {
    color: var(--text);
}

.navbar-brand i, .navbar-brand svg {
    color: var(--primary);
}

.navbar.sticky .navbar-brand i, .navbar.sticky .navbar-brand svg, footer .navbar .navbar-brand i, footer .navbar .navbar-brand svg {
    color: var(--primary);
}


/* Customised nav bar toggler*/
.navbar-toggler {
    padding: 0;
    border: 0px;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none
    }

.navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    color: var(--primary);
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all .3s ease-out 0s
}

.navbar.sticky .navbar-toggler .toggler-icon {
    background-color: var(--text);
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px
}

/* card */

.card {
    -webkit-box-shadow: 0 0px 10px rgba(62,85,120,.09);
    -moz-box-shadow: 0 0px 10px rgba(62,85,120,.09);
    box-shadow: 0 0px 10px rgba(62,85,120,.09);
}

    .card .card-header {
        background-color: #fff;
        color: var(--text);
    }

        .card .card-header h2 {
            font-size: 18px;
        }

    /*card hover */
    .card.card-hover {
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

        .card.card-hover:hover {
            box-shadow: 0 10px 50px -5px rgba(51,71,91,0.12);
            transform: translateY(-5px);
        }

/* Form validation */
form .error, form .form-control.error:focus {
    background: #f8dbda;
    border: 1px solid #e67a74;
}

/* google maps */
.responsive-map {
    background-color: var(--primary);
    height: 100%;
}

    .responsive-map iframe {
        width: 100%;
        height: 458px;
        margin: 0;
        margin-bottom: 0px;
        padding: 0;
        border: 1px solid #ced4da;
        margin-bottom: -8px;
    }

embed, iframe, object {
    max-width: 100%;
}

.responsive-map iframe.map-style {
    filter: grayscale(0.32) saturate(2.4) opacity(0.8)
}

.overlay {
    position: relative;
    width: 100%;
    height: 410px;
    top: 0px;
    margin-bottom: -410px;
    z-index: 1;
}
/* END Customised */

/* ############################################### */

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 99999;
}

.middle {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    transform: rotate(90deg);
}

.bar {
    width: 10px;
    height: 80px;
    background: #fff;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
    animation: loader 1.4s linear infinite;
}

.bar1 {
    animation-delay: 0.1s;
    background: rgba(0,177,102,1);
}

.bar2 {
    animation-delay: 0.2s;
    background: rgba(100,188,92,1);
}

.bar3 {
    animation-delay: 0.3s;
    background: rgba(200,214,66,1);
}

.bar4 {
    animation-delay: 0.4s;
    background: rgba(253,235,45,1);
}

.bar5 {
    animation-delay: 0.5s;
    background: rgba(251,193,36,1);
}

.bar6 {
    animation-delay: 0.6s;
    background: rgba(243,133,49,1);
}

.bar7 {
    animation-delay: 0.7s;
    background: rgba(237,60,53,1);
}

@keyframes loader {
    0% {
        transform: scaleY(0.1);
        opacity: 0.0;
    }

    50% {
        transform: scaleY(1);
        opacity: 1.0;
    }

    100% {
        transform: scaleY(0.1);
        opacity: 0.0;
    }
}

span.loader-text {
    position: absolute;
    top: 20%;
    width: 100%;
    text-align: center;
    color: #ccc;
    padding: 0px 20px;
}

/* END preloader */

/* To the TOP btn */
.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--primary));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    color: #fff !important;
    border-radius: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 5px;
    text-decoration: none;
}

    .scroll-top:hover {
        -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, .15) !important;
        box-shadow: 0 1rem 3rem rgba(35, 38, 45, .15) !important;
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
        background-color: #081828
    }
/* END To the TOP btn */

/* TABS */
.nav-tabs {
    margin-bottom: -1px;
    z-index: 999 !important;
    position: relative;
}

    .nav-tabs .nav-link {
        background: #e9ecef;
        border-top-left-radius: .45rem;
        border-top-right-radius: .45rem;
    }
/* Table */
table {
    line-height: 1.8rem;
}

    /* Table labels */
    table.table-labels {
        color: #152634;
        font-size: 14px;
        text-align: right;
        /*table-layout: fixed;*/
        /*max-width: 1400px;*/
    }

        table.table-labels tbody tr td {
            /* width:100%;
  max-width: 100px;
  min-width: 80px; */
        }

        table.table-labels col.bg {
            background: #F5F6FA
        }

        table.table-labels tr td, tr th {
            box-shadow: inset -0px 0 0px -0px rgba(0,0,0,0.4);
        }

        table.table-labels tbody tr td:first-child {
            text-align: left;
            border-left: solid #34C57D 8px;
            width: 100px;
            max-width: 100px;
            min-width: 80px;
        }

        table.table-labels tbody tr td:last-child {
            border-right: solid #34C57D 8px;
        }

        /* A++++ */
        table.table-labels tbody tr td.label-axxxx {
            border-left-color: #008036;
            border-right-color: #008036;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(1):hover {
            background-color: rgba(0,128,54,.075);
        }

        /* A+++ */
        table.table-labels tbody tr td.label-axxx {
            border-left-color: #288C3B;
            border-right-color: #288C3B;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(2):hover {
            background-color: rgba(40,140,59,.075);
        }

        /* A++ */
        table.table-labels tbody tr td.label-axx {
            border-left-color: #42983E;
            border-right-color: #42983E;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(3):hover {
            background-color: rgba(66,152,62,.075);
        }

        /* A+ */
        table.table-labels tbody tr td.label-ax {
            border-left-color: #53A242;
            border-right-color: #53A242;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(4):hover {
            background-color: rgba(83,162,66,.075);
        }

        /* A */
        table.table-labels tbody tr td.label-a {
            border-left-color: #64AF47;
            border-right-color: #64AF47;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(5):hover {
            background-color: rgba(100,175,71,.075);
        }

        /* B */
        table.table-labels tbody tr td.label-b {
            border-left-color: #94C247;
            border-right-color: #94C247;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(6):hover {
            background-color: rgba(148,194,71,.075);
        }

        /* C */
        table.table-labels tbody tr td.label-c {
            border-left-color: #BFDA1D;
            border-right-color: #BFDA1D;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(7):hover {
            background-color: rgba(191,218,29,.075);
        }

        /* D */
        table.table-labels tbody tr td.label-d {
            border-left-color: #FEDA00;
            border-right-color: #FEDA00;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(8):hover {
            background-color: rgba(254,218,0,.075);
        }

        /* E */
        table.table-labels tbody tr td.label-e {
            border-left-color: #FFBB00;
            border-right-color: #FFBB00;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(9):hover {
            background-color: rgba(255,187,0,.075);
        }

        /* F */
        table.table-labels tbody tr td.label-f {
            border-left-color: #F7740C;
            border-right-color: #F7740C;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(10):hover {
            background-color: rgba(247,116,12,.075);
        }

        /* G */
        table.table-labels tbody tr td.label-g {
            border-left-color: #F2231B;
            border-right-color: #F2231B;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(11):hover {
            background-color: rgba(242,35,27,.075);
        }

        /* unknown */
        table.table-labels tbody tr td.label-o {
            border-left-color: #9E005D;
            border-right-color: #9E005D;
        }

        table.table-labels.table-hover > tbody > tr:nth-child(12):hover {
            background-color: rgba(158,0,93,.075);
        }

        /* table-duration */
        table.table-labels.table-duration tr td:nth-child(2), table.table-labels.table-duration tr th:nth-child(2) {
            box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
        }

        table.table-labels.table-duration tr td:last-child, table.table-labels.table-duration tr th:last-child {
            box-shadow: inset 9px 0 9px -9px rgba(0,0,0,0.4);
        }


        table.table-labels.table-duration thead {
            background-color: #00A74F;
            color: #fff;
        }

            table.table-labels.table-duration thead.top {
                background-color: #34C57D;
            }

                table.table-labels.table-duration thead.top tr th {
                    font-weight: 200;
                    font-style: italic;
                    text-align: center;
                }

            table.table-labels.table-duration thead th:nth-child(1), table.table-labels.table-duration thead th:nth-child(2), table.table-labels.table-duration thead th:last-child {
                background-color: #fff;
                border: none;
                color: #152634;
            }

        table.table-labels.table-duration tbody tr:last-child {
            border-bottom-style: hidden;
        }

            table.table-labels.table-duration tbody tr:last-child td {
                background-color: #00A74F;
                color: #fff;
                font-weight: bold;
                border-bottom-style: hidden;
            }

                table.table-labels.table-duration tbody tr:last-child td:nth-child(1), table.table-labels.table-duration tbody tr:last-child td:last-child {
                    background-color: #34C57D;
                }

                table.table-labels.table-duration tbody tr:last-child td:nth-child(2) {
                    background-color: #9E005D;
                }

        table.table-labels.table-hover > tbody > tr:hover {
            background-color: rgba(0,180,80,.075);
        }

/* table-wws */
/* style heads */
.table-wws thead {
    color: #D7DBE0;
}

    .table-wws thead tr th {
        color: #152634;
        font-size: 14px;
        border-bottom-color: inherit !important;
    }

    .table-wws thead tr th {
        border-width: 1px;
        text-align: center;
    }

        .table-wws thead tr th:nth-child(1) {
            border-width: 0px;
            background-color: #fff;
        }

    .table-wws thead.top tr th:nth-child(3) {
        background-color: #34C57D;
        color: #fff;
    }

    .table-wws thead.top tr th:nth-child(5) {
        background-color: #00A74F;
        color: #fff;
    }

    .table-wws thead tr th:nth-child(6), .table-wws thead tr th:nth-child(7) {
        background-color: #34C57D;
        color: #fff;
    }

    .table-wws thead tr th:nth-child(9), .table-wws thead tr th:nth-child(10) {
        background-color: #00A74F;
        color: #fff;
    }

    .table-wws thead tr th:nth-child(11), .table-wws thead tr th:nth-child(12) {
        background-color: #34C57D;
        color: #fff;
    }

    /*
.table-wws thead.top tr th:nth-child(5) {
    border-right: solid #00A74F 8px;
    border-right-color: rgb(0, 167, 79);
}

.table-wws thead tr th:nth-child(10) {
    border-right: solid #00A74F 8px;
    border-right-color: rgb(0, 167, 79);
}
*/

    /* inner shadow right */
    .table-wws thead.top tr th:nth-child(2) {
        box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
    }

.table-wws tr td:nth-child(5), .table-wws tr th:nth-child(5) {
    box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
}

.table-wws thead.top tr th:nth-child(5) {
    box-shadow: none;
}
/* inner shadow left right */

.table-wws thead.top tr th:nth-child(4) {
    box-shadow: inset 9px 0px 9px -9px rgba(0,0,0,0.4), inset -9px 0px 9px -9px rgba(0,0,0,0.4);
}

.table-wws tr td:nth-child(8), .table-wws tr th:nth-child(8) {
    box-shadow: inset 9px 0px 9px -9px rgba(0,0,0,0.4), inset -9px 0px 9px -9px rgba(0,0,0,0.4);
}

.table-wws {
    box-shadow: 9px 0 9px -9px rgba(0,0,0,0.4);
}

    .table-wws tbody tr td:nth-child(8) {
        max-width: 80px;
    }

    /* add euro sign  */
    .table-wws tbody tr td:nth-child(6)::before,
    .table-wws tbody tr td:nth-child(7)::before,
    .table-wws tbody tr td:nth-child(9)::before,
    .table-wws tbody tr td:nth-child(10)::before,
    .table-wws tbody tr td:nth-child(11)::before,
    .table-wws tbody tr td:nth-child(12)::before {
        content: '€';
        float: left !important;
        color: #D7DBE0;
    }

    .table-wws tbody tr:last-child td:nth-child(6)::before,
    .table-wws tbody tr:last-child td:nth-child(7)::before,
    .table-wws tbody tr:last-child td:nth-child(9)::before,
    .table-wws tbody tr:last-child td:nth-child(10)::before,
    .table-wws tbody tr:last-child td:nth-child(11)::before,
    .table-wws tbody tr:last-child td:nth-child(12)::before {
        color: #fff;
    }

    /* bottom row */
    .table-wws tbody tr:last-child td {
        background: #F5F6FA;
    }

        .table-wws tbody tr:last-child td:nth-child(1) {
            font-weight: bold;
        }

        .table-wws tbody tr:last-child td:nth-child(5) {
            font-weight: bold;
        }

        .table-wws tbody tr:last-child td:nth-child(6) {
            font-weight: bold;
            background-color: #34C57D;
            color: #fff;
        }

        .table-wws tbody tr:last-child td:nth-child(7) {
            font-weight: bold;
            background-color: #34C57D;
            color: #fff;
        }

        .table-wws tbody tr:last-child td:nth-child(8) {
            background-color: #fff;
        }

        .table-wws tbody tr:last-child td:nth-child(9),
        .table-wws tbody tr:last-child td:nth-child(10),
        .table-wws tbody tr:last-child td:nth-child(11),
        .table-wws tbody tr:last-child td:nth-child(12) {
            font-weight: bold;
            background-color: #00A74F;
            color: #fff;
        }

        .table-wws tbody tr:last-child td:first-child {
            border-left: solid #F5F6FA 8px;
            border-left-color: rgb(245, 246, 250);
        }

        .table-wws tbody tr:last-child td:last-child {
            border-right: solid #00A74F 8px;
            border-right-color: rgb(0, 167, 79);
        }

    /* table wws status wws */
    .table-wws tbody tr td span::after {
        font-size: 22px !important;
        vertical-align: middle;
        content: "•";
    }

    .table-wws tbody tr td span.success {
        color: #00A74F;
    }

    .table-wws tbody tr td span.danger {
        color: #f00;
    }


/* table result */
table.table-result {
    color: #152634;
    font-size: 14px;
    /* text-align: right; */
}

    table.table-result > :not(:last-child) > :last-child > * {
        border-bottom-color: #D7DBE0;
        border-bottom-width: 1px;
        border-top-width: 1px;
        border-right-width: 1px;
        background-color: #F5F6FA;
    }

    table.table-result col.bg {
        background: #F5F6FA
    }

.paging td table tbody tr td {
    /*    font: bold 15px Arial;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    padding: 2px 8px 2px 8px;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #CCCCCC;
    text-decoration: none;*/

    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

/* table wet en regelgeving */
.label_box {
    position: relative;
    margin-right: 10px;
    padding: 2px 8px;
    color: #fff;
}

    .label_box:after {
        left: 100%;
        top: 50%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(0,0,0,0);
        border-width: 10px;
        margin-top: -10px;
    }

.label-axxxx.label_box {
    background: #008036;
}

    .label-axxxx.label_box:after {
        border-left-color: #008036;
    }

.label-axxx.label_box {
    background: #288C3B;
}

    .label-axxx.label_box:after {
        border-left-color: #288C3B;
    }

.label-axx.label_box {
    background: #42983E;
}

    .label-axx.label_box:after {
        border-left-color: #42983E;
    }

.label-ax.label_box {
    background: #53A242;
}

    .label-ax.label_box:after {
        border-left-color: #53A242;
    }

.label-a.label_box {
    background: #64AF47;
}

    .label-a.label_box:after {
        border-left-color: #64AF47;
    }

.label-b.label_box {
    background: #94C247;
}

    .label-b.label_box:after {
        border-left-color: #94C247;
    }

.label-c.label_box {
    background: #BFDA1D;
}

    .label-c.label_box:after {
        border-left-color: #BFDA1D;
    }

.label-d.label_box {
    background: #FEDA00;
}

    .label-d.label_box:after {
        border-left-color: #FEDA00;
    }

.label-e.label_box {
    background: #FFBB00;
}

    .label-e.label_box:after {
        border-left-color: #FFBB00;
    }

.label-f.label_box {
    background: #F7740C;
}

    .label-f.label_box:after {
        border-left-color: #F7740C;
    }

.label-g.label_box {
    background: #F2231B;
}

    .label-g.label_box:after {
        border-left-color: #F2231B;
    }

.label-o.label_box {
    background: #9E005D;
}

    .label-o.label_box:after {
        border-left-color: #9E005D;
    }

.label-gw.label_box {
    background: #737373;
}

    .label-gw.label_box:after {
        border-left-color: #737373;
    }




table.table-result.table-bg-white tbody tr:nth-child(2) td {
    background-color: unset !important;
}

table.table-result.table-bg-white tbody tr td {
    border-right-width: 1px;
}

    table.table-result.table-bg-white tbody tr td:nth-child(1), table.table-result.table-bg-white tbody tr td:nth-child(2) {
        border-right-width: 0px;
    }

.table .theme-bage {
    color: #212529;
    background-color: #e9ecef;
    font-weight: normal;
}

/* table table-explanation */
.table-explanation {
}

    .table-explanation > :not(:last-child) > :last-child > * {
        border-bottom-color: #D7DBE0;
        border-bottom-width: 1px;
        border-top-width: 1px;
        border-right-width: 1px;
        background-color: #F5F6FA;
    }

    .table-explanation thead tr th {
        font-weight: 400;
        border-width: 1px;
        text-align: center;
    }

    .table-explanation thead.top tr th:nth-child(1) {
        border-width: 0px !important;
        background-color: #fff !important;
    }

    .table-explanation thead.top tr th:nth-child(2) {
        box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
    }

    .table-explanation thead tr th:nth-child(3) {
        box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
    }

    .table-explanation thead.top tr th:nth-child(3) {
        box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.0);
    }

    .table-explanation thead.top tr th:nth-child(3) {
        background-color: #00A74F;
        color: #fff;
    }

    .table-explanation thead tr th:nth-child(4), .table-explanation thead tr th:nth-child(5) {
        background-color: #00A74F !important;
        color: #fff;
    }

    .table-explanation tr td:nth-child(3) {
        box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
    }

.table-explanation {
    box-shadow: 9px 0 9px -9px rgba(0,0,0,0.4);
}

/* table table-result + table-result-auto */

table.table-result.table-result-auto > :not(:last-child) > :last-child > * {
    background-color: transparent;
}

table.table-result.table-result-auto {
    text-align: right;
}

    table.table-result.table-result-auto thead {
        text-align: center;
        background-color: transparent !important;
    }

        table.table-result.table-result-auto thead tr th:nth-child(1),
        table.table-result.table-result-auto tbody tr td:nth-child(1),
        table.table-result.table-result-auto tbody tr td:nth-child(2),
        table.table-result.table-result-auto tbody tr td:nth-child(3) {
            text-align: left;
        }

        table.table-result.table-result-auto thead.top tr th:nth-child(1) {
            border-width: 0px !important;
        }

col.bg-green {
    background: #F7FCF7
}

bg-green {
    background: #F7FCF7
}

table.table-result.table-result-auto > :not(caption) > * > * {
    padding: .5rem .5rem;
    border-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

table.table-result.table-result-auto tbody tr td:nth-child(6)::before,
table.table-result.table-result-auto tbody tr td:nth-child(7)::before,
table.table-result.table-result-auto tbody tr td:nth-child(8)::before,
table.table-result.table-result-auto tbody tr td:nth-child(9)::before,
table.table-result.table-result-auto tbody tr td:nth-child(10)::before {
    content: '€';
    float: left !important;
    color: #D7DBE0;
}

table.table-result.table-result-auto tbody tr td:nth-child(2), .table.table-result.table-result-auto thead tr th:nth-child(2) {
    box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.2);
}

table.table-result.table-result-auto tbody tr td:nth-child(4), .table.table-result.table-result-auto thead tr th:nth-child(4) {
    box-shadow: inset 9px 0px 9px -9px rgba(0,0,0,0.2), inset -9px 0px 9px -9px rgba(0,0,0,0.2);
}

table.table-result.table-result-auto tbody tr td:nth-child(6), .table.table-result.table-result-auto thead tr th:nth-child(6) {
    box-shadow: inset 9px 0px 9px -9px rgba(0,0,0,0.2), inset -9px 0px 9px -9px rgba(0,0,0,0.2);
}

table.table-result.table-result-auto tbody tr td:nth-child(8), .table.table-result.table-result-auto thead tr th:nth-child(8) {
    box-shadow: inset 9px 0 9px -9px rgba(0,0,0,0.2);
}

table.table-result.table-result-auto thead.top tr th:nth-child(2),
table.table-result.table-result-auto thead.top tr th:nth-child(3),
table.table-result.table-result-auto thead.top tr th:nth-child(4) {
    box-shadow: inset 0px 0 0px 0px rgba(0,0,0,0.0);
}

table.table-result.table-result-auto.table-hover > tbody > tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* table-portfolio  */

table.table-portfolio {
    width: 100%;
}

    table.table-portfolio th, table.table-portfolio td {
        width: 1%;
    }

    table.table-portfolio th {
        text-align: center;
    }

    table.table-portfolio tbody tr td:nth-child(3)::before {
        content: '€';
        float: left !important;
        color: #D7DBE0;
    }

.table-portfolio thead.top tr th:nth-child(2) {
    box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
}

.table-portfolio thead tr th:nth-child(3) {
    box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
}

.table-portfolio thead.top tr th:nth-child(3) {
    box-shadow: inset 0px 0 0px 0px rgba(0,0,0,0.0);
}

.table-portfolio thead.top tr th:nth-child(4) {
    box-shadow: inset 9px 0 9px -9px rgba(0,0,0,0.4);
}

.table-portfolio thead tr th:nth-child(12) {
    box-shadow: inset 9px 0 9px -9px rgba(0,0,0,0.4);
}

.table-portfolio tbody tr td:nth-child(3), .table-portfolio tbody tr th:nth-child(3) {
    box-shadow: inset -9px 0 9px -9px rgba(0,0,0,0.4);
}

.table-portfolio tbody tr td:nth-child(12), .table-portfolio tbody tr th:nth-child(12) {
    box-shadow: inset 9px 0 9px -9px rgba(0,0,0,0.4);
}

table.table-labels.table-portfolio thead th:nth-child(1) {
    background-color: #fff;
}

table.table-labels.table-portfolio > :not(:last-child) > :last-child > * {
    border-color: inherit;
}

table.table-labels.table-portfolio thead tr th {
    border-top-width: 1px;
    border-left-width: 1px;
}

    table.table-labels.table-portfolio thead tr th:last-child {
        border-right-width: 1px;
    }

    table.table-labels.table-portfolio thead tr th:nth-child(1) {
        border-top-width: 0px;
        border-bottom-width: 0px;
        border-left-width: 0px;
    }

table.table-labels.table-portfolio tbody tr td:hover {
    background-color: rgba(0,0,0,.075);
}

/* Filter Modal */
#filterModal .modal-body label {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    cursor: pointer;
}

    #filterModal .modal-body label.options {
        position: relative;
        padding-left: 40px;
    }

#filterModal .modal-body .options input {
    opacity: 0;
}

#filterModal .modal-body .checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #555;
    border: 1px solid #ddd;
    border-radius: 50%;
}

#filterModal .modal-body .options input:checked ~ .checkmark:after {
    display: block;
}

#filterModal .modal-body .options .checkmark:after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: 300ms ease-in-out 0s;
}

#filterModal .modal-body .options input[type="radio"]:checked ~ .checkmark {
    background: #21bf73;
    transition: 300ms ease-in-out 0s;
}

    #filterModal .modal-body .options input[type="radio"]:checked ~ .checkmark:after {
        transform: translate(-50%,-50%) scale(1);
    }

.tooltip .tooltip-inner {
    font-size: 12px;
    padding: 10px;
    min-width: 210px;
    text-align: right;
}


table a:not(.btn),
.table a:not(.btn) {
    color: #1b3344;
    text-decoration: underline;
}
