#pk_flex_content .flex_layout.locatie_overzicht .heading {
    text-align: center;
    margin-bottom: 60px;
}


#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    column-gap: 20px;
    row-gap: 12px;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box {
    min-height: 80px;
    width: calc(33.333% - 13.33px);
    flex-shrink: 0;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box .tt-title {
    font-size: 16px;
    font-weight: 500;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box .separator {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--tt-verloop);
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;     -moz-transition: opacity 0.2s ease-in-out;     -webkit-transition: opacity 0.2s ease-in-out;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box.open .separator {
    opacity: 1;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box.open .tt-info-inner {
    margin-top: 0px;
}

#pk_flex_content .flex_layout.locatie_overzicht .tt-info-box .icon {
    height: 24px;
    width: 24px;
}

#pk_flex_content .flex_layout.locatie_overzicht .tt-info-box .icon svg {
    width: 15px;
    height: 15px;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box .departments-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}

#pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box .departments-links a {
    color: var(--tt-donker-blauw-100);
}

@media screen and (max-width: 992px) {
    
    #pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box {
        min-height: unset;
        width: calc(50% - 20px);
        padding: 32px;
    }
    
    #pk_flex_content .flex_layout.locatie_overzicht .heading {
        text-align: center;
        margin-bottom: 40px;
    }
    
}


@media screen and (max-width: 767px) {
    
    #pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper {
        gap: 20px;
    }

    #pk_flex_content .flex_layout.locatie_overzicht .provincies-wrapper .tt-info-box {
        width: 100%;
    }
    
}