@import url("menu.css?v2");

*,
:before,
:after {
    box-sizing: border-box;
}

*:focus-visible {
    outline-color: var(--focus-outline-color);
    outline-offset: var(--focus-outline-offset);
    outline-style: var(--focus-outline-style);
    outline-width: var(--focus-outline-width);
}

html,
body {
    margin: 0;
}

body {
    font-family: 'Nitti Eindhoven';
    font-weight: normal;
    font-size: 18px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

#aspnetForm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: 'Eindhoven Type';
    margin: 0;
    line-height: 1;
    font-weight: 500;
}

h1,
.h1 {
    font-size: clamp(1.75rem, 0.125rem + 3.7143vw, 3.375rem);
    /* font-size: 54px; */
    color: var(--default-white);
}

#content h1 {
    color: var(--primary-red-color);
}

h2,
.h2,
h2 a {
    font-size: clamp(1.25rem, 0.75rem + 1.1429vw, 1.75rem);
    /* font-size: 28px; */
    color: var(--primary-red-color);
}

h2 a {
    display: block;
}

h2,
.h2 {
    margin-bottom: 25px;
}

h3 {
    /* font-size: clamp(1.125rem, 0.6875rem + 1vw, 1.5625rem); */
    font-size: clamp(1.25rem, 0.6875rem + 1vw, 1.5625rem);
    font-family: 'Nitti Eindhoven';
    /* font-size: 25px; */
    color: var(--default-black);
}

/* class h3 is voor de footer */

.page-intro p,
.b_cat-intro p {
    margin: 0 0 3rem;
    font-size: 1.4rem;
    line-height: 1.6;
}

p {
    font-size: 18px;
    color: var(--default-black);
    padding: 0;
}

.b_btn {
    font-size: clamp(1.125rem, 0.9375rem + 0.4286vw, 1.3125rem);
    /* font-size: 21px; */
    padding: 20px;
    line-height: 1;
    transition: .3s ease-in-out;
    color: var(--default-white);
    background: var(--default-black);
    border: none;
    height: fit-content;
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            0% 100%);
    cursor: pointer;
}

.b_btn:hover {
    background: var(--primary-red-color) !important;
    color: #FFF;
}

.b_btn:focus-visible {
    clip-path: unset;
    outline-color: var(--focus-outline-color);
    outline-offset: -6px;
}

a {
    font-size: 18px;
    text-decoration: none;
    color: var(--default-black);
    display: inline-block;
    position: relative;
}

a:hover {
    color: var(--primary-red-color);
    border-bottom: none;
}

p,
.b_module-list .linkurl,
.nieuwsitem {
    a {
        color: var(--primary-red-color);

        &:hover {
            text-decoration: underline;
        }
    }
}

.linkname h2, .faqitem h2 {
    margin-bottom: 1rem;
}

.faqitem h2 {
    &.expanded {
        a:before {
            content: "\f068";
        }
    }

    a {
        display: flex;
        align-content: center;
        gap: 1rem;
        
        &:before {
            content: "\2b";
            font-family: "Font Awesome 6 Pro";
            transition: .25s all ease-in-out;
        }
    }
}

.faqlistitem__answer {
    display: none;
}

.faqlistitem__answer.visible {
	display: block;
}

.b_module-list {
    .linkdescription p {
        margin-top: 0;

        &:last-child {
            margin-bottom: 0;
        }

        &:empty {
            display: none;
        }
    }

    a h2 {
        display: flex;
        align-items: center;

        &:after {
            font-size: 1.25rem;
            display: inline-block;
            content: "\f08e";
            margin-left: 1rem;
            font-family: "Font Awesome 6 Pro";
        }
    }

    .linkurl {
        display: none;
    }
}

.breadcrum_container {
    display: none;
}

#qs-container {
    max-width: 100%;
    margin: 0 auto;
}

.newspreviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 5rem;

    .nieuwstitel {
        display: flex;
        flex-direction: column;
        row-gap: .5rem;

        .nieuwsdatum {
            order: 2;
            color: grey;
        }

        .datumseparator {
            display: none;
        }

        .titeltekst {
            order: 1;
        }
    }
}


/* Introduction section start */
#introduction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.introduction-text {
    background: var(--primary-red-color);
    padding: 60px 30px 30px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.introduction-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    /* width: 100px; */
    width: clamp(1.875rem, -2.5rem + 10vw, 6.25rem);
    height: clamp(1.875rem, -2.5rem + 10vw, 6.25rem);
    /* height: 100px; */
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.introduction-text p {
    /* font-size: 22px; */
    font-size: clamp(1.125rem, 0.875rem + 0.5714vw, 1.375rem);
    font-weight: 400;
    color: var(--default-white);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.section-text {
    max-width: 645px;
    width: 100%;
}

/* Introduction section end */



/* Search section start */
.search-section {
    max-width: 731px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 25px;
    padding-right: 30px;
}
.wrapper_ballroom_asp__homeonderzoek040_aspx .b_search-container,
.wrapper_ballroom_homeonderzoek040 .b_search-container {
    display: block !important;
    position: relative;
}

.b_search-container {
    width: 100%;
    height: unset;
}

.ssr-ac-container {
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
}

.ac-s-container {
    height: 60px;
}

.ac-s-container label {
    display: block;
    margin-top: 12px !important;
}

.br-large {
    border-radius: 0;
    border: solid 3px var(--primary-red-color);
}

.ac-s-container>.ac-s-input-container>i {
    position: absolute;
    top: 21px;
    left: 19px;
    font-weight: 600;
    font-size: 12px;
}

.ac-s-container>.ac-s-input-container>input {
    background: var(--default-white);
    font-size: 18px;
    color: var(--default-black);
}

.ac-s-container>.ac-s-input-container label.active {
    margin-top: 1px !important;
    font-size: 13px;
}

.ac-s-container>.ac-s-input-container.focus {
    outline: 2px solid var(--default-black);
    outline-offset: 2px;
}

.btn-color {
    background-color: var(--primary-red-color);
    outline: solid 4px #fff;
    outline-offset: -3px;
    border-radius: 0;
    transition: .3s ease-in-out;
}

.btn-color:hover {
    background-color: var(--default-black);
}

.ac-s-container>.ac-s-input-container>button>span {
    padding: 14px 25px;
    text-transform: unset;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Nitti Eindhoven';
}

.btn-color:focus-visible {
    outline-color: var(--default-black);
    outline-offset: -3px;
}

/* Search section end */


/* Monitor section start */
.grid.monitoren {
    padding-top: 128px;

    .b_btn {
        margin-top: 1rem;
    }
}

.grid.subpage {
    padding: 2rem 0 0 0;

    h2 {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }
}

.monitoren .tileset--content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.monitoren .tileset--content--items {
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.17));
}

.monitoren .tile-section-icon {
    max-height: 204px;
}

.monitoren .tile {
    display: flex;
    flex-direction: column;
    background: var(--default-white);
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0% 100%);
}

.home-tiles .tile:nth-child(n+5) {
    display: none;
}

.monitoren .tile img {
    width: 100%;
    max-height: 204px;
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            0% 100%);
    object-fit: cover;
}

.monitoren .tile-section-text {
    color: var(--default-black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-content a {
    margin-top: auto;
}

.monitoren .text-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    flex-grow: 1;
}

.inner-text {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    flex-grow: 1;
}

.m-link {
    margin-top: auto;
}

.monitoren .a-fa {
    color: var(--primary-red-color);
}

.monitoren .a-fa:hover {
    color: var(--default-black);
}

.monitoren .a-fa:after {
    content: '\f054';
}


/* Thema section start */
.thema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.h3_style {
    font-family: 'Eindhoven Type';
    font-size: 18px;
    padding: 20px;
    display: block;
    color: var(--default-white);
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            0% 100%);
}

#ctl00_QsPH_bevolking_tileset .h3_style {
    background: var(--primary-red-color);
}

#ctl00_QsPH_fysieke_tileset .h3_style {
    background: var(--tertiary-green-color);
}

#ctl00_QsPH_sociale_tileset .h3_style {
    background: var(--quaternary-plum-color);
}

#ctl00_QsPH_economie_tileset .h3_style {
    background: var(--secondary-blue-color);
}

.beleidsthema .tile-style--thema {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: solid 1px #a1a1a1;
}

.beleidsthema .tile-style--thema a div:after {
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    content: "\f054";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 4px;
}

.beleidsthema .tile-style--thema a {
    width: 100%;
}

/* Thema section eind */

.b_module-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    margin-top: 2rem;
}

#nav_module {
    width: 170px;
    
    ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
}

#nav_module li {
    margin-bottom: .5rem;
}

#nav_module a {
    text-decoration: none;
}

#nav_module .active a {
    display: inline-block;
    font-weight: 600;
    padding-left: .5rem;
    border-left: 5px solid var(--primary-red-color);
    word-break: break-word;
}

.b_module-items {
    max-width: 780px;
    
    ul li {
        margin-bottom: 3rem;
        background: #ffffff;
    }
}

/* Databank section start */
.databank h2 {
    color: var(--default-black);
}

.section_databank {
    background: var(--light-grey);
}

.databank p {
    max-width: 675px;
    margin: 0;
}

.section-text-databank {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.section-text-databank .b_btn {
    color: var(--default-white) !important;
}

.section-text-databank .b_btn:focus-visible {
    outline-color: var(--focus-outline-color);
    outline-offset: -6px;
}

.section-text-databank .a-fa:after {
    content: '\f061';
    font-weight: 600;
    bottom: 1px;
    position: relative;
    font-size: 14px;
}

/* Section Databank end */

/* Contactpage start */
#container_contactinfo {
    max-width: 700px;
}

.subscribe {
    display: none;
}

.contactinput input:not(.b_btn),
.contactinput textarea {
    padding: 20px;
    min-width: 300px;
    width: 50%;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Contactpage end */

/* Loginpage start */
.container_loginfield input:not(.b_btn) {
    padding: 20px;
    min-width: 300px;
    width: 50%;
    margin-bottom: 10px;
    font-size: 18px;
}

.wrapper_ballroom_ASP__login_aspx .loginfield .b_btn {
    margin-right: 20px;
}

/* Loginpage end */


/* custompagecontent start */
#custompagecontent {
    max-width: 1000px;
    width: 100%;
}

#custompagecontent h1 {
    margin-bottom: 15px;
}

#custompagecontent h3 {
    color: var(--primary-red-color);
}

.b-space {
    margin-top: 24px;
    color: var(--default-black) !important;
}

.b-space:hover {
    color: var(--primary-red-color) !important;
}

.b-space.a-fa:after {
    margin-left: 8px;
}

.wrapper_ballroom_faq h1,
.wrapper_ballroom_links h1 {
    margin-bottom: 40px;
}


@media screen and (max-width: 1370px) {

    .thema-grid,
    .monitoren .tileset--content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .section-text-databank {
        flex-direction: column;
    }

    .introduction-text p {
        -webkit-line-clamp: 4;
    }
}

@media screen and (max-width: 1200px) {
    .b_module-items {
        flex: 1;
    }
}

@media screen and (max-width: 1040px) {
    .thema-grid,
    .monitoren .tileset--content {
        grid-template-columns: 1fr 1fr;
    }

    #introduction {
        grid-template-columns: 1fr;
    }

    .section-text,
    .search-section {
        max-width: 100%;
    }

    .search-section {
        padding-left: 30px;
    }

    .introduction-text {
        padding: 30px;
    }

    #content,
    .grid {
        padding: 64px 30px;
    }

    .grid.monitoren {
        padding-top: 64px;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 800px) {
    #nav_module {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .b_module-items {
        flex: 100%;
    }
}

@media screen and (max-width: 700px) {

    .thema-grid,
    .monitoren .tileset--content {
        grid-template-columns: 1fr;
    }

    .container_loginfield input:not(.b_btn),
    .contactinput input:not(.b_btn),
    .contactinput textarea {
        width: 100%;
        min-width: 250px;
    }

    .wrapper_ballroom_ASP__login_aspx .loginfield .b_btn {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 424px) {
    .ac-s-container>.ac-s-input-container>button>span {
        padding: 14px 10px;
    }

    .search-section {
        padding-right: 15px;
    }

    .ac-s-container>.ac-s-input-container label {
        margin-left: 10px;
    }

    .fa-magnifying-glass:before,
    .fa-search:before {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .search-section {
        padding-left: 15px;
    }

    .introduction-text {
        padding: 15px;
    }

    #content,
    .grid {
        padding: 32px 15px;
    }

    .grid.monitoren {
        padding-top: 32px;
        padding-bottom: 0;
    }
}