@import url("default.css?v7");
@import url("menu.css?v9");
@import url("popup.css?v10");

*, :before, :after {
    box-sizing: border-box;
}

.column-1 {
	width: 100%;
}

.column-2 {
    width: 49%;
}

.column-3 {
    width: 32.3333%;
}

.column-4 {
    width: 24%;
}

.column-5 {
    width: 17.6666%;
}

.radio-option, .checkbox-option {
	margin-bottom: .5rem;
}

.radio-option.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.radio-option label, .checkbox-option label {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.radio-option .radio-box, .checkbox-option .checkbox-box {
	position: relative;
	min-width: 20px;
	min-height: 20px;
	border: 2px solid #0070B8;
	border-radius: 50%;
}

.radio-option input:focus + label, .checkbox-option input:focus:within + label {
    outline: 2px solid #0070B8;
    border-radius: 4px;
}

.disabled.radio-option .radio-box, .disabled.checkbox-option .checkbox-box {
    border: 2px solid #343434;
}

.checkbox-option .checkbox-box {
    border-radius: .25rem;
}

.radio-option input:checked + label .radio-box:after, .checkbox-option input:checked + label .checkbox-box:after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0070B8;
}

.checkbox-option input:checked + label .checkbox-box:after {
    border-radius: .25rem;
}

.f-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.kvk-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding: 1.5rem 1.5rem;
	border: 1px solid #707070;
	border-radius: .25rem;
	margin-bottom: 2rem;
}

.kvk-box p:last-child {
    margin-bottom: 0;
}

.kvk-box h3, .chart-wrapper h3, .selection-wrapper h3 {
	margin-bottom: 1rem;
}

.kvk-box .column-2 {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.kvk-box-number {
    display: flex;
    gap: .3rem;
    color: #00526e;
    font-size: 54px;
    font-weight: bold;
    line-height: 1;
}

.kvk-box-label {
	font-size: 1rem;
}

#nav_module {
    display: none;
}

.label-link .link-btn {
    padding: 0;
    text-decoration: underline;
    color: #0070b9;
    cursor: pointer;
}

.open-popup {
    margin-left: .3rem;
}

.label-link .link-btn:before {
    display: none;
}

.info-dialog {
	display: none;
	position: absolute;
	bottom: 21px;
	left: -22px;
	padding-bottom: 20px;
}

.info-dialog-inner {
    width: 332px;
    padding: 1.1rem 1.5rem;
    border: 1px solid #949494;
    border-radius: 4px;
    background: #FFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.info-dialog-inner:before {
	position: absolute;
	left: 27px;
	bottom: 11px;
	content: "";
	display: block;
	border-width: 10px 13px 0 13px;
	border-style: solid;
	border-color: #949494 transparent transparent transparent;
}

.info-dialog-inner:after {
	position: absolute;
	left: 29px;
	bottom: 12px;
	content: "";
	display: block;
	border-width: 9px 12px 0 10px;
	border-style: solid;
	border-color: #FFF transparent transparent transparent;
}

.dialog-header {
    display: flex;
    justify-content: right;
}

.close-dialog {
    display: flex;
    text-decoration: none;
}

.close-dialog svg {
    width: 13px;
    fill: #343434;   
}

.close-dialog i {
    font-size: 1.1rem;
    color: #343434;
}

.info-dialog-inner p {
	margin-bottom: 0;
}

.more-info-wrapper {
    position: relative;
    display: inline-flex;
}

.v-center {
    vertical-align: top;
    margin-top: 3px;
}

.more-info-btn {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.more-info-btn svg {
    fill: #0070B9;
    min-width: 20px;
    width: 20px;
    overflow: visible;
}

.table-section {
    width: 100%;
    margin-bottom: 3rem;
}

table {
    width: 100%;
	text-align: left;
	border-collapse: collapse;
	color: #555555;
}

table thead tr th, table thead tr td {
	padding: 0.5rem 2rem 0.5rem 0;
	border-bottom: 1px solid #343434;
	color: #343434;
	font-weight: 500;
}

table tr th, table tr td {
	padding: 1rem 2rem 1rem 0;
	border-bottom: 1px solid #D3D3D4;
}

table tr th:last-child, table tr td:last-child {
	padding-right: 0;
}

table tr .number-cell {
	text-align: right;
}

.mobile-visible {
    display: none;
}

.extra-info-field {
    margin-top: 1rem;
}

.m-0 {
    margin: 0;
}

.company-counter-wrapper {
    margin-top: 6rem;
}

.input-wrapper {
    margin-bottom: 2rem;
}

.seperate-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.seperate-section .line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #BEBEBE;
    z-index: 1;
}

.seperate-icon {
    position: relative;
    padding: 20px 0;
    background: #FFF;
    z-index: 2;
}

.seperate-section svg {
    width: 25px;
    fill: #00526e;
}

.content-wrapper-count {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.3;
}

#branch-count {
    border-radius: 6px;
    padding: 10px 25px;
    box-sizing: border-box;
    color: #000;
    font-weight: 500;
    line-height: 2.25;
    border: 2px solid #f58a11;
}

#branch-type, #branch_location {
    font-weight: 500;
}

.more-informatie {
    margin-top: 6rem;
}

.more-informatie ul {
    padding: 0;
}

.more-informatie ul li {
    list-style-type: none;
    position: relative;
    box-shadow: 0 1px 4px 0 hsl(10deg 10% 10% / 20%);
    vertical-align: top;
    border-radius: 4px;
	margin-bottom: 30px;
}

.more-informatie .inner-content {
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
	position: relative;
}

.more-informatie .inner-content h3 {
    min-height: 64px;
}

.more-informatie ul li:before {
    content: '';
    background-color: #ff9300;
    width: 100%;
    height: 5px;
    position: absolute;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.faqitem {
    margin-bottom: 1rem;
    border: 1px solid #bebebe;
    border-radius: 0.25rem;
}

.faqitem:hover, .expanded {
    border-color: #757575;
}

.faqitem h2 {
    margin: 0;
}

.faqitem h2 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    color: #343434;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
}

.faqitem h2 a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 1rem;
}

.faqitem h2 a:hover {
    color: #00526e;
}

.faqitem:not(.expanded) h2 a:hover {
    box-shadow: 0 4px 6px 0 hsla(0,0%,75%,.33), 0 1px 3px 0 hsla(0,0%,75%,.33);
    transform: translateY(-1px);
}

.faqlistitem__answer {
    display: none;
    padding: 0 1rem 1.5rem 1.5rem;
}

.expanded .faqlistitem__answer {
    display: block;
}

.faqitem.expanded h2 a:after {
    content: "\f077";
}

.paragraph-wrapper {
    margin-bottom: 1rem;
}

.inline-paragraph {
    display: inline;
}

.page_homekvkregio #qs-container, .page_home #qs-container {
    max-width: 100%;
}

.content--container--banner {
    display: flex;
    height: 540px;
    background: linear-gradient(to top, #FFF 4.4%, #e6f2f5 4.4%) no-repeat top right;
}

.content--wrapper--banner {
	width: 100%;
	padding: 3rem 2rem 0rem 2rem;
	background: url(images/prent-hero-primair-regiodatatool.svg) no-repeat top right;
	background-size: auto 100%;
}

.content--container--banner--inner {
    max-width: 502px;
}

.intro-subheader {
    display: block;
    font-size: 1.4rem;
    padding: 0;
	margin-bottom: 0;
}

p.intro {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.content--container {
    margin-bottom: 4rem;
}

.tileset--content--items, .newslist, .info-block ul, .newspreviews {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5%;
}

.tile {
    margin-bottom: 1rem;
}

.tile a {
    display: flex;
    height: 100%;
    padding: 1rem;
    align-items: center;
    text-decoration: none;
    color: #007cc1;
    box-shadow: 0 1px 4px 0 hsla(10, 10%, 10%, 0.2);
    border-radius: 4px;
    transition: all ease-in-out .15s;
    position: relative;
}

.tile a:hover {
	box-shadow: 0 1px 6px 0 hsla(10, 10%, 10%, 0.3);
}

.tile__section--icon img {
    height: 100px;
}

.tile__section--text h3 {
    margin-bottom: .5rem;
}

.tile__section--text p {
    margin-bottom: 0;
    font-size: 1rem;
    min-height: 60px;
    @media screen and (max-width: 1000px) {
        min-height: unset;
    }
}

.meta, .nieuwsdatum {
    font-size: .8rem;
}

.nieuwsdatum {
    order: 2;
}

.meta__separator, .postername, .datumseparator {
    display: none;
}

h3 a {
    color: #00526e;
    text-decoration: none;
}

.nieuwstitel {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.newslist .odd, .newslist .even, .info-block li, .nieuwsitem {
	position: relative;
	width: 49%;
	padding: 2rem;
    margin-bottom: 2rem;
	box-shadow: 0 1px 4px 0 hsla(10, 10%, 10%, 0.2);
}

.newslist .listitem__title, .titeltekst {
    min-height: 52px; 
}

.newslistitem__preview {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    display: -webkit-box;
    white-space: pre-wrap;
}

.newslistitem__readmore, .nieuwscontrol {
    margin-top: 1rem;
}

.newslistitem__readmore:before, .nieuwscontrol:before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    margin-right: 1rem;
    font-size: 1rem;
}

.newslist .odd:before, .newslist .even:before, .info-block li:before, .nieuwsitem:before {
    content: '';
    background-color: #ff9300;
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.info-block ul {
    padding: 0;
    list-style: none;
}

.subscribe {
    display: none;
}

.contactform .contactinput {
    margin-bottom: 1rem;
}

@media screen and (max-width: 1250px) {
	.content--container--banner {
		height: 400px;
	}
}

@media screen and (max-width: 1060px) {
	.content--container--banner {
		height: 300px;
	}
}

@media screen and (max-width: 1000px) {
    .column-2, .column-3 {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
	.content--container--banner {
		height: 500px;
		padding-top: 1rem;
		background: #E6F2F5 url(images/prent-hero-primair-regiodatatool.svg) no-repeat bottom left;
		background-size: 520px auto;
	}
	
    .content--wrapper--banner {
        background: none;
    }

    .newslist .odd, .newslist .even, .info-block li, .nieuwsitem {
        width: 100%;
    }

    .newslist .listitem__title, .titeltekst {
        min-height: auto;
    }

    .seperate-section {
        display: none;
    }

    .company-counter-wrapper .column-3 {
        margin-top: 3rem;
    }

    .radio-option label, .checkbox-option label {
        gap: 1rem;
    }
}

@media screen and (max-width: 850px) {
    .info-dialog {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,.55);
        padding-bottom: 0;
        z-index: 99;
    }

    .info-dialog-inner {
        position: absolute;
        width: 80%;
        top: 50%;
        left: 50%;
        width: 80%;
        transform: translate(-50%, -50%);
    }

    .info-dialog-inner:before, .info-dialog-inner:after {
        display: none;
    }

    .desktop-visible {
        display: none;
    }

    .mobile-visible {
        display: block;
    }

    .mobile-visible table, .mobile-table .explanation-text {
        margin-top: 2rem;
    }

    .mobile-visible table:first-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 570px) {
    #content {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .content--container {
        margin-bottom: 2rem;
    }

    .content--container--banner .grid {
        padding: 0;
    }
    
    .content--container--banner--inner {
        padding: 0.1rem 1rem 0.1rem 1rem;
    }

    .content--container--banner--inner h1 {
        font-size: 1.9rem;
    }

    .intro-subheader {
        font-size: 1.125rem;
    }

    p.intro {
        font-size: 1rem;
    }
}

.nieuw-block {
    position: absolute;
    top: 0;
    right: 0px;
    height: 150px;
    z-index: 101;
    color: #FFF;
    font-weight: bold;
    overflow: hidden;
	font-size: 15px;
}

.nieuw-inner-block {
    width: 327px;
    padding: 8px 0px 5px 63px;
    margin: -15px -111px 0 0px;
    z-index: 999;
    background: #00A694;
    color: #fff;
    font-weight: bold;
    transform: rotate(40deg);
    box-sizing: border-box;
    text-align: center;
}

.nieuw-text {
    /* transform: rotate(-40deg); */
    letter-spacing: 0.08em;
}