.site-header > div {
    align-items: center;
    color: #333;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-weight: 300;
    position: relative;
}

.site-header a {
    color: inherit;
}

/* xs zoek en menu knoppen */
.site-header .zoek-knop,
.site-header .menu-knop,
.site-header .rs-knop {
    align-self: stretch;
    background-color: #fff;
    border-bottom: 1px solid #f4f4f4;
    color: #00428b;
    font-size: 2.5rem;
    height: 8rem;
    width: 8rem;
}

.site-header .menu-knop,
.site-header .zoek-knop {
    border-left: 1px solid #f4f4f4;
}

.site-header .zoek-knop a,
.site-header .menu-knop a,
.site-header .rs-knop a { 
    align-items: center;
    display: flex;
    height: 100%;    
    justify-content: center;
    transition: transform 0.2s linear;
}
.site-header .menu-knop a:hover,
.site-header .menu-knop a:focus,
.site-header .menu-knop .active,
.site-header .rs-knop a:hover,
.site-header .rs-knop a:focus,
.site-header .rs-knop .active,
.site-header .zoek-knop a:hover,
.site-header .zoek-knop a:focus,
.site-header .zoek-knop .active {
    cursor: pointer;
    text-decoration: none;
    transform: scale(1.2);
}

/* logo */
.site-header .logolink {
    background-color: #fff;
    border-bottom: 1px solid #f4f4f4;
    flex: 1;
    height: 8rem;
    padding: 1rem 2rem;
}

.site-header .logolink a {
    display: block;
}

.site-header .logolink img {
    display: block;
    height: 100%;
    max-height: 6rem;
    width: auto;
}

/* menus */
.site-header .primair-menu,
.site-header .secundair-menu {
    width: 100%;
}
.site-header.verberg-icoon .primair-menu .fa,
.site-header.verberg-icoon .secundair-menu .fa {
    display: none;
}
.site-header .primair-menu > ul,
.site-header .secundair-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.site-header .primair-menu > ul > li,
.site-header .secundair-menu li {
    list-style-type: none;
    margin: 0;
}

/* primair-menu */
.site-header .primair-menu {
    font-weight: normal;
    text-transform: uppercase;
    width: 100%;
}

.site-header .primair-menu.ng-hide {
    opacity:0;
}

.site-header .primair-menu > ul > li {
    border-bottom: 1px solid #f4f4f4;
}

.site-header .primair-menu > ul > li > a {
    background-color: #fff;
    display: block;
    padding: .8em 1em .6em;
}

.site-header .primair-menu > ul > li > a:hover, 
.site-header .primair-menu > ul > li > a:focus {
    background-color: #eee;
}



/* secundair-menu */
.site-header .secundair-menu li:not(.dossiers) {
/* dit voorkomt dat op mobiel beginkapitalen weggehaald worden      text-transform: lowercase; */
}

.site-header.verberg-icoon .secundair-menu li.dossiers .fa {
    display: inline-block;
}

.site-header .secundair-menu.ng-hide {
    opacity: 0;
}
.site-header .secundair-menu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.site-header .secundair-menu > ul li .fa {
    display: inline-block;
    margin-right: 5px;
}

/* zoekbalk */
.site-header .zoekbalk {
    background-color: #00428b;
    color: #fff;
    left: 0;
    height: 8rem;
/*    position: fixed; */
    top: 0;
    transition: all linear 0.5s;   
    width: 100%;
}
 
.site-header .zoekbalk.ng-hide {
    opacity:0;
}
.site-header .zoekbalk button,
.site-header .zoekbalk a {
    transition: transform 0.2s linear;
}

.site-header .zoekbalk button:hover,
.site-header .zoekbalk button:focus,
.site-header .zoekbalk a:focus,
.site-header .zoekbalk a:hover {
    text-decoration: none;
    transform: scale(1.2);
}

.site-header .zoekbalk form {
    align-items: center;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    margin: 0;
    position: relative;
}

.site-header .zoekbalk input {
    background-color: transparent;
    border: 0;
    color: inherit;
    flex: 1;
    font-weight: 600;
    height: 100%;
	padding: 0 7rem 0 2rem;
	width: 100%;
}

.site-header .zoekbalk input:focus {
    outline: 1px dotted;
}
.site-header .zoekbalk form .fa {
	color: inherit;
    display: block;
    font-size: 2rem;
    height: 6rem;
    line-height: 3;
    text-align: center;
    width: 5rem;
}

.site-header .zoekbalk button {
    background-color: transparent;
    border: 0;
    color: inherit;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.site-header .zoekbalk input::-webkit-input-placeholder {
	color: inherit;
    font-weight: 300;
    opacity: .6
}

.site-header .zoekbalk input::-moz-placeholder {
	color: inherit;
    font-weight: 300;
    opacity: .6
}

.site-header .zoekbalk input:-ms-input-placeholder {
	color: inherit;
    font-weight: 300;
    opacity: .6
}


@media screen and (max-width: 991px) {
    .site-header {
        height: 8rem;
        /* left: 0; 
        position: fixed;
        top: 0; */
        width: 100%;
        z-index: 1030;
    }
    
    .site-header .container {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .site-header .primair-menu {
        background-color: rgba(0,0,0,.3);
        height: 100%;
        position: fixed;
        top: 12rem;
        transition: all linear 0.5s;    
        z-index: 2;
    }    
    
    .site-header .secundair-menu {
        transition:all linear 0.5s;  
        z-index: 2;
    }   
    
    
    .site-header .secundair-menu li {
        border-bottom: 1px solid #ddd;
        border-left: 1px solid #ddd;
        border-top: 1px solid #ddd;
        flex: 1 1 auto;
        text-align: center;
    }
    
    .site-header .secundair-menu li a {    
        background-color: #eee;   
        display: inline-block;
        height: 100%;
        padding: 1rem 0;
        width: 100%;
        transition: transform 0.2s linear;
    }
    .site-header .secundair-menu li a:hover,
    .site-header .secundair-menu li a:focus,
    .site-header .secundair-menu li .active {
        cursor: pointer;
        background-color: #ddd;
    }

    #rs_1.rsexpanded {
        align-items: center;
        background-color: #fff;
        display: flex;
        left: 0;
        height: 8rem;
        justify-content: center;
        position: fixed;
        top: 0;
        transition: all linear 0.5s;
        width: 100% !important;
    }
    
}

@media screen and (min-width: 768px) {
    .site-header .logolink {
        padding: 1rem 3rem;
    }
}
@media screen and (min-width: 992px) {
    .site-header,
    .site-header .logolink {
        background-color: transparent;
    }
    
    .site-header.fixed {  
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 5;
    }
        
    .site-header > div {
        align-items: stretch;
    }
    
    .site-header:not(.toon-zoekknop) .zoek-knop,
    .site-header .menu-knop,
    .site-header .rs-knop {
        display: none;
    }    
    
    .site-header .logolink {
        border-bottom: 0;
        flex: 0 1 auto;
        width: 25%;
    }
    
    .site-header .logolink img {
        margin: 0;
        width: 100%;
    }
     
    .site-header .primair-menu {
        text-transform: none;
        width: 50%;
    }
    
    .site-header .primair-menu ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .site-header .secundair-menu {
        width: 100%;    
    }
    .site-header .primair-menu > ul > li {
        border: 0;
    }
    
    .site-header .primair-menu > ul > li > a {
        background-color: transparent;
        border: 0; 
    }
    
    .site-header .primair-menu > ul > li a:hover, 
    .site-header .primair-menu > ul > li a:focus {
        background-color: transparent;
        font-weight: inherit;
    }
    
    .site-header:not(.toon-zoekknop) .zoekbalk {
        left: auto;
        height: auto;
        position: static;
        top: auto;
        transition: all 0s ease 0s;
        width: 25%;
    }
    
    .site-header:not(.toon-zoekknop) #closeSearch {
        display: none;
    }
    .site-header .zoekbalk form {
        margin: 0;
    }
    
    .site-header .zoek-knop a:hover,
    .site-header .zoek-knop a:focus,
    .site-header .zoek-knop .active {
        transform: none;
    }   
    
    .site-header.zoekknop-icoon .zoekbalk button > span:first-of-type {
        border: 0; 
        clip: rect(0, 0, 0, 0); 
        height: 1px; 
        margin: -1px;
        overflow: hidden; 
        padding: 0; 
        position: absolute; 
        width: 1px;
    }
        
    .site-header a .fa::before {
        display: inline-block;
    }
    
    .site-header.toon-zoekknop .zoek-knop {
        align-self: auto;
        border-bottom: 0;
        display: inline-block;
        font-size: 1.5em;
        height: auto;
        margin: 0 1.5rem 0 3rem;
        width: auto;
    }
    
    .site-header.toon-zoekknop .zoek-knop a:hover,
    .site-header.toon-zoekknop .zoek-knop a:focus {
        transform: scale(1.2);
    }    
    
}


/* webbergen-klassiek */

    
@media screen and (max-width: 475px) {  
    .site-header .rs-knop {
        display: none;
    }        
}
    
    
.site-header.webbergen-klassiek .primair-menu {
    font-weight: 500;
    text-transform: none;
}

.site-header.webbergen-klassiek .primair-menu li {
    text-align: center;
}

.site-header.webbergen-klassiek .primair-menu li a {
    background-color: #00428b;
    color: #fff;
}
.site-header.webbergen-klassiek .primair-menu a:hover,
.site-header.webbergen-klassiek .primair-menu a:focus {
    background-color: #ccc !important;
    color: #333;
    text-decoration: none;
}
    
@media screen and (max-width: 991px) {
    .site-header.webbergen-klassiek {
        height: auto;
    }
    .site-header.uitgeklapt.webbergen-klassiek {
        background-color: rgba(0,0,0,.3);
        height: 100%;
    }
    
    .site-header.webbergen-klassiek .socials {
        background-color: #eee;
        border-bottom: 1px solid #fff;
        order: 7;
        text-align: center;
        width: 100%;
        }
    
    .site-header.webbergen-klassiek .socials .socialmedia-volgen::before
    { content: "Volg ons op"; font-size: .8em; font-weight: 500; margin-right: .5em; }
    
    .site-header.webbergen-klassiek .socials .socialmedia-volgen ul
    { display: inline-block; }
    
    .site-header.webbergen-klassiek .primair-menu {
        order: 5;
        position: relative;
        top: auto;
        width: 100%;
    }
    .site-header.webbergen-klassiek .primair-menu ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .site-header.webbergen-klassiek .primair-menu li {
        width: 50%;
    }
    
    .site-header.webbergen-klassiek .primair-menu li:nth-child(even) {
        border-left: 1px solid #fff;
    }
    
    .site-header.webbergen-klassiek .primair-menu li a {
        height: 100%;
        padding: 20px;
    }
}



@media screen and (min-width: 992px) {  
    
    .site-header.webbergen-klassiek {
        background-color: #fff;
        height: auto;
    }
    
    .site-header.webbergen-klassiek:not(.fixed) {
        position: relative;
    }
    
    .site-header.webbergen-klassiek::before {
        background-color: #00428b;
        content: " ";
        display: block;
        height: 6rem;
        left: 0;
        position: absolute;
        top: 9.9rem;
        width: 100%;    
        z-index: 0;
    } 
        
    .site-header.webbergen-klassiek > div {
        background-color: transparent;
        display: -ms-grid;
        -ms-grid-columns: 1fr 33.333333% 33.333333%;
        -ms-grid-rows: 5rem 1fr 6rem;
        display: grid;
        grid-template-columns: 1fr 33.333333% 33.333333%;
        grid-template-rows: 5rem 1fr 6rem;
        padding: 0;
    }
    
    .site-header.webbergen-klassiek .logolink {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row-start: 1;  
        grid-row-end: 3;
        height: 9.9rem;
        overflow: hidden;
        padding: 0;
        width: auto;
    }
    
    .site-header.webbergen-klassiek .secundair-menu {
        align-self: center; 
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        -ms-grid-row: 1;        
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row-start: 1;
        align-items: center;
        display: flex;
        justify-content: flex-end;
    }
    
    .site-header.webbergen-klassiek .socials {
        align-self: center;
        -ms-grid-column: 3;
        -ms-grid-row: 2;        
        grid-column-start: 3;
        grid-row-start: 2;
        position: relative;
        text-align: right;
    }
    
    .site-header.webbergen-klassiek .primair-menu {        
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        -ms-grid-row: 3;        
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 3;
        background-color: #00428b;
        color: #fff;
        margin-bottom: 0;
        width: auto;
    }
    
    .site-header.webbergen-klassiek .zoekbalk {
        background-color: purple;
        -ms-grid-column: 3;
        -ms-grid-row: 3;        
        grid-column-start: 3;
        grid-row-start: 3;
        width: auto;
    }
    
    
    .site-header.webbergen-klassiek .logolink a {
        align-self: center;
        display: inline-block;
    }
    
    .site-header.webbergen-klassiek .logolink img {
        max-height: 9rem;
    }
    
    .site-header.webbergen-klassiek .primair-menu ul, 
    .site-header.webbergen-klassiek .primair-menu li,
    .site-header.webbergen-klassiek .primair-menu::before {
        height: 6rem;
    }
    
    .site-header.webbergen-klassiek .primair-menu li {
        align-items: center;
        border-left: 1px solid rgba(255, 255, 255, .8);
        color: inherit;
        display: flex; 
        flex: 1;
        letter-spacing: .5px;
        overflow: hidden;
    }
    
    .site-header.webbergen-klassiek .primair-menu li:last-of-type {
        border-right: 1px solid rgba(255, 255, 255, .8);
    }
    
    .site-header.webbergen-klassiek .primair-menu li a {
        display: block;
        height: 100%;
        padding: 20px 0;
        width: 100%;
        transition: background-color 0.2s linear, color 0.2s linear;
    }
        
    .site-header.webbergen-klassiek .primair-menu a.active {
        background-color: #fff;
        border-top: 1px dotted #ccc;
        color: #333;
        text-decoration: none;
    }
    
    .site-header.webbergen-klassiek .secundair-menu > ul li {
        display: inline-block;
        height: 100%;
        margin-left: 1rem;
        width: auto;
    }
    .site-header.webbergen-klassiek .secundair-menu > ul li a {    
        border-bottom: 1px dotted #666;
        text-transform: none;
    }
    
    .site-header.webbergen-klassiek .secundair-menu li:not(:first-of-type):before {
        color: #aaa;
        content: " | ";
        padding-right: 1rem;
    }
    
    .site-header.webbergen-klassiek .secundair-menu > ul li a:hover,
    .site-header.webbergen-klassiek .secundair-menu > ul li a:focus {
        border-bottom-style: solid;
        text-decoration: none;
    }

    .site-header.webbergen-klassiek .secundair-menu .inlogknop a {
        background-color: #4082CB;
        border: 1px solid #4082CB;    
        border-radius: 2px;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
        color: #fff;
        font-weight: 500;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
        transition: background-color 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s;
    }
        
    .site-header.webbergen-klassiek .secundair-menu .inlogknop a:hover,
    .site-header.webbergen-klassiek .secundair-menu .inlogknop a:focus {
        background-color: #fff;
        box-shadow: none;
        color: #0077C9;
        text-decoration: none;
    }

    .site-header.webbergen-klassiek .zoekbalk,
    .site-header.webbergen-klassiek.toon-zoekknop .zoek-knop {
        background-color: #0077C9;
        color: #fff;
    }
    
    .site-header.webbergen-klassiek:not(.toon-zoekknop) .zoekbalk,
    .site-header.webbergen-klassiek.toon-zoekknop .zoek-knop {
        height: 6rem;
    }
    
    .site-header.webbergen-klassiek.toon-zoekknop .zoekbalk {
        height: 15rem;
        max-width: 100%;
    }
    .site-header.webbergen-klassiek.toon-zoekknop .zoek-knop {
        margin: 0;
    }
    .site-header.webbergen-klassiek .zoekbalk form {        
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, .8);
        height: 100%;
    }
    
    .site-header.webbergen-klassiek .zoekbalk input {
        font-weight: bold;
        padding-right: 4rem;
    }
           
    .site-header.webbergen-klassiek .zoekbalk input:focus {
        border-bottom: 0;
    }
    
    .site-header.webbergen-klassiek:not(.toon-zoekknop) .zoekbalk form > .fa {
        height: 6.0rem;
        padding: 1.5em 1em;
    }
    
    .site-header.webbergen-klassiek .zoekbalk input::-webkit-input-placeholder {
        border-bottom: 1px solid;
    }
    .site-header.webbergen-klassiek .zoekbalk input:-moz-placeholder {
        border-bottom: 1px solid;
    }
    .site-header.webbergen-klassiek .zoekbalk input::-moz-placeholder {
        border-bottom: 1px solid;
    }
    .site-header.webbergen-klassiek .zoekbalk input:-ms-input-placeholder {
        border-bottom: 1px solid;
    }
        
    .site-header.webbergen-klassiek:not(.toon-zoekknop) .zoekbalk button {
        height: auto;
        padding: 0;
        right: 0;
    }    
    
    .site-header.webbergen-klassiek:not(.toon-zoekknop) .zoekbalk form .fa {
        font-size: 1.5rem;
        line-height: 4;
    }
}

/* ophalen van aanvullende css */

.portaal-foto img { 
    display: block;
    height: 310px;
    object-fit: cover;
    width: 100%;    
}
.zoekveld-home {
    border: 0;
    margin-bottom: -4em;
    position: relative;
    text-align: center;
    top: -65px;
}
.zoekveld-home button {
    background: #00428b;
    border: 1px white;
    border-radius: 0px 3px 3px 0px;
    height: 55px;
    margin-left: -5px;
    vertical-align: top;
    width: 55px;
}    
.zoekveld-home .fa {
    color: #ffffff;

}
.zoekveld-home input {
    border: 0px;
    height: 55px;
    padding: 0 0 0px 10px;
    width: 50%;    
}
.zoekveld-home input::-webkit-input-placeholder {
    color: rgba(51,51,51,.8);
    font-weight: 300;
}
.zoekveld-home input:-moz-placeholder {
    color: rgba(51,51,51,.8);
    font-weight: 300;
}
.zoekveld-home input::-moz-placeholder {
    color: rgba(51,51,51,.8);
    font-weight: 300;
}
.zoekveld-home input:-ms-input-placeholder {
    color: rgba(51,51,51,.8);
    font-weight: 300;
}

@media screen and (min-width: 768px) {   
    .zoekveld-home {
        top: -150px;
    } 
    .zoekveld-home input {
        width: 30%;    
    }
}

@media screen and (min-width: 992px) {   
    .zoekveld-home {
        top: -170px;
    } 
    .zoekveld-home input {
        width: 30%;    
    }
}

@media screen and (min-width: 1200px) {   
    .zoekveld-home {
        top: -190px;
    } 
}
.ip-widget-header {
    border-bottom: 0px;
}

.lijst-iconen .item a {
    color: inherit;
    height: 100%;
    overflow: hidden;
    -webkit-transition: background-color 0.2s linear, color 0.2s linear;
    -moz-transition: background-color 0.2s linear, color 0.2s linear;
    -o-transition: background-color 0.2s linear, color 0.2s linear;
    transition: background-color 0.2s linear, color 0.2s linear;
}

.lijst-iconen a:focus,
.lijst-iconen a:hover {
    box-shadow: none;
    text-decoration: underline;
}

.lijst-iconen .item .icoon {
    font-size: 1.2em;
    margin-right: 1rem;
    opacity: .85;
    text-align: center;
    width: 4rem;
}

.lijst-iconen .item .icoon:before {
    display: inline-block;
    text-decoration: underline; /* IE11 fix ivm underline bij :hover:before */
}
.lijst-iconen .item .icoon:before,
.lijst-iconen .item .icoon:focus:before,
.lijst-iconen .item .icoon:hover:before {    
    text-decoration: none; /* IE11 fix ivm underline bij :hover:before */
}

/* icoon links van titel, verticaal gecentreerd = standaard configuratie*/
.lijst-iconen .item a {    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.lijst-iconen .item .titel {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* icoon boven, horizontaal gecentreerd */
.lijst-iconen .icoon-boven .item a {    
    display: block;
    text-align: center;
}

.lijst-iconen .icoon-boven .item .icoon {
    display: block;
    font-size: 2.5em;
    margin-bottom: 1rem;
    margin-right: 0;
    width: auto;
}

.lijst-iconen .icoon-boven.verberg-titel .item .icoon {
    margin-bottom: 0;
}

.lijst-iconen .icoon-boven .item .titel {
    display: block;
}


/* ophalen van widget-config-opties css */
/* padding & margin binnen parent element en binnen items */







.id_8 > .opties .item {
    margin-bottom: 2px;
}


/* afwijkende padding bij kolomindelng */


/* ophalen van aanvullende css */
.toptaken {
    margin-top: 1rem;
    position: relative;
}
.toptaken a {
    background-color: transparent;
    border: 0;
    color: #333;
    font-size: 1.2em;
    margin: 0;
    min-height: 0;
    padding: 0; /* IE11 fix - initial is niet valid */
    padding: initial;
}

.toptaken .item a:focus,
.toptaken .item a:hover {
    background-color: transparent;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
}

.toptaken .item:nth-child(1) a {
    background-color: #00428b;
    color: #fff;
}

.toptaken .item:nth-child(2) a {
    background-color: #0D4F98;
    color: #fff;
}

.toptaken .item:nth-child(3) a {
    background-color: #1A5CA5;
    color: #fff;
}

.toptaken .item:nth-child(4) a {
    background-color: #2668B1;
    color: #fff;
}

.toptaken .item:nth-child(5) a {
    background-color: #3375BE;
    color: #fff;
}

.toptaken .item:nth-child(6) a {
    background-color: #4082CB;
    color: #fff;
}

.toptaken a:focus,
.toptaken a:hover {
    background-color: #0086d6 !important;
    box-shadow: none;
    color: #333 !important;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .toptaken {
        margin-top: 0;
        top: -60px;
    }    
    .toptaken .item {
        padding: 0 !important;
    }
}

@media screen and (min-width: 992px) {
    .toptaken {
        margin-bottom: 5rem;
        top: -60px;
    }    
    
    .toptaken .item a {
        padding: 2rem 1rem;
    }    
}

@media screen and (min-width: 1200px) {
    .toptaken {
        top: -85px;
    }    
    .toptaken .item a {
        padding: 2rem 2rem;
    }
}
.lijst-foto-titel .opties:not(.toon-item-rand):not(.toon-item-kader):not(.toon-item-achtergrond) .item > a {
    color: inherit;
}
.lijst-foto-titel .item > a {
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;    
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
	flex-direction: column;    
    overflow: hidden;
}

.lijst-foto-titel .item a:hover,
.lijst-foto-titel .item a:focus {
    text-decoration: underline;
}
.lijst-foto-titel .item .titel {  
    -webkit-flex: 1 0 auto; 
    flex: 1 0 auto; /* IE11 fix : zonder auto valt bij column direction deel titel achter foto */
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    padding: 0 0 1rem 0;
}

.lijst-foto-titel .titel-verticaal-centreren .item .titel {  
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: auto 0;
}
.lijst-foto-titel .titel-horizontaal-centreren .item .titel {  
    text-align: center;   
}

.lijst-foto-titel .item .foto {
    overflow: hidden;
}
.lijst-foto-titel .item img {
    display: block;
    height: 200px;
    object-fit: cover;   
    width: 100%;    
    transition: all .5s ease;
}

.lijst-foto-titel .item a:hover img,
.lijst-foto-titel .item a:focus img {
    opacity: .7;
}

.lijst-foto-titel .foto-strak .item > a {
    padding: 0;
}


.lijst-foto-titel .foto-links .item > a,
.lijst-foto-titel .foto-rechts .item > a {
	-webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; 
}

.lijst-foto-titel .foto-links .item .titel,
.lijst-foto-titel .foto-rechts .item .titel{
     -webkit-flex: 1;
    flex: 1;
    order: 1;
    padding-left: 1.5rem;
    padding-bottom: 0;
}
   
.lijst-foto-titel .foto-links .item .foto,
.lijst-foto-titel .foto-rechts .item .foto {
    -webkit-flex: 1;
    flex: 1;
}

.lijst-foto-titel .foto-links .item img,
.lijst-foto-titel .foto-rechts .item img {
    height: 100%;
}

.lijst-foto-titel .foto-links.foto-strak .item .titel {
    padding: 1.5rem;
}    

.lijst-foto-titel .foto-rechts .item .titel {
    padding: 1.5rem 1.5rem 1.5rem 0;
    order: 0;
}   
.lijst-foto-titel .foto-rechts .item .foto {
    order: 1;   
}    
         
.lijst-foto-titel .foto-rechts.foto-strak .item .titel {
    padding-left: 1.5rem;
}  

.lijst-foto-titel .foto-links.titel-verticaal-centreren .item .titel,
.lijst-foto-titel .foto-rechts.titel-verticaal-centreren .item .titel {  
    -webkit-flex: 1;
    flex: 1;
    align-self: center;
}

.lijst-foto-titel .foto-boven .item .titel {
    padding: 1rem 0 0 0;
    order: 1;	
}
.lijst-foto-titel .foto-boven.foto-strak .item .titel {
    padding: 1rem 1.5rem;
}




/* ophalen van widget-config-opties css */
/* padding & margin binnen parent element en binnen items */







.id_14 > .opties .item {
    margin-bottom: 30px;
}


/* afwijkende padding bij kolomindelng */


/* ophalen van aanvullende css */

.uitgelicht h2 {
    color: #333;
    font-family: Lato,sans-serif;
    font-size: 2em;
    font-style: italic;
    font-weight: normal;
    margin: 0 0 .5em;
    padding-bottom: 1px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .uitgelicht {
        position: relative;
        top: -60px;
    }
}


@media screen and (min-width: 992px) {
    .uitgelicht {
        top: -100px;
    } 
}


@media screen and (min-width: 1200px) {   
    .uitgelicht {
        top: -115px;        
    } 
}
.portaal-nav-hoofditems {
    background-color: rgba(0,0,0,.05);
    color: #000;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 2rem 0 1rem 0;
}

.portaal-nav-hoofditems h2 {
    font-size: 2.1rem;
    font-weight: bold;
    margin: 0 0 2.5rem;
}

.portaal-nav-hoofditems .list-unstyled {   
    margin: 0;
}

.portaal-nav-hoofditems a {
    display: block;
    padding-left: 2rem;
    position: relative;
}

.portaal-nav-hoofditems a.externe-link:after {
    color: rgba(0,0,0,.7);
    content: "\f08e";
    display: inline-block;
    font: normal normal normal 1.4rem/1 FontAwesome;
    padding-left: 1rem;
}

.portaal-nav-hoofditems a:before {
    color: rgba(0,0,0,.5);
    content: "\f105";
    display: inline-block;
    font: normal normal normal 1.9rem/1 FontAwesome;
    left: 0;
    position: absolute;
    top: 2px;
}

.portaal-nav-hoofditems a:focus:before,
.portaal-nav-hoofditems a:hover:before {
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .portaal-nav-hoofditems {
        position: relative;
        top: -60px;
    }
    .portaal-nav-hoofditems ul {
        break-inside: avoid-column;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
    .portaal-nav-hoofditems li {
        display: inline-block;
        margin-bottom: 1rem;
        padding: 0 20px;
        width: 100%;
    }
    .portaal-nav-hoofditems a {
        display: inline-block;
    }
}


@media screen and (min-width: 992px) {
    .portaal-nav-hoofditems ul {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
    .portaal-nav-hoofditems {
        top: -100px;
    } 
}
.twitterfeed .grid {
    margin-left: -15px;
    width: calc(100% + 30px);
}
.twitterfeed .tegel {
    background-color: #f8f8f8;
    border-radius: 2px;
    box-shadow: 0px 1px 3px 0px rgba(6, 6, 6, 0.15);    
    flex-shrink: 0;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.twitterfeed .blok {
    padding: 0 15px;
}

.twitterfeed .kop {
    color: rgba(0, 0, 0, .66);
    height: 6.2rem;
    font-size: 1.2rem;
    padding: 2rem;
    position: relative;
}


.twitterfeed .kop .fa {
    background-color: #e3e3e3;
    border-radius: 50%;
    color: #646464;
    font-size: 1.5rem;
    padding: .5rem;
    position: absolute;
    right: 1.3rem;
    text-align: center;
    top: 1.3rem;
}
.twitterfeed .content {
    overflow: hidden;
    padding: 0 2rem 2rem;
}

.twitterfeed .content a {
    color: inherit;
}

.twitterfeed .content > img {
    height: auto;
    max-width: 100%;
}
.twitterfeed .afzender {
    background-color: #fff;
    height: 7.2rem;
    line-height: 1;
    max-height: 7.2rem;
    min-height: 7.2rem;
    padding: 2rem;
}

.twitterfeed .afzender strong {
    font-size: 1.4rem;
}

.twitterfeed .afzender small {
    font-size: 1.2rem;
}

/* === responsive === */
@media screen and (min-width: 768px) {   
    .twitterfeed .tegel {
        height: 41rem;
    }
}

@media screen and (min-width: 992px) {   
    .twitterfeed .tegel {
        margin-bottom: 0;
    }
}
*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

.scroll-down {
  position: absolute;
  bottom: 40%;
  left: 95%;
  margin-left: -16px;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #000;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.scroll-down:before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid black;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@media screen and (min-width: 769px) {   
    .scroll-button {
        top: ;
    } 

}

@media screen and (min-width: 992px) {   
    .scroll-button {
        top: ;
    } 

}

@media screen and (min-width: 1200px) {   
    .scroll-button {
        top: ;
    } 
}




.scrollarrow {
    background-color: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 2px;
    bottom: 0;
    height: 70px;
    left: 50%;
    margin-left: -35px;	
    position: fixed;
    text-align: center;
    transition: opacity .25s ease-in-out;
    width: 70px;
    z-index: 1;
}

.scrollarrow .fa {
    color: #fff;
    font-size: 60px;
    opacity: 0.9;
    text-shadow: 1px 1px 1px #ccc;
}
.portaalfooter {
    margin-top: 0;
}

.portaalfooter .contact {
    line-height: 2;
    margin-bottom: 1.5em;
}
.portaalfooter .contact h2 {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 5px;
}
.portaalfooter a:not(.fa) {
    color: inherit;
    text-decoration: underline;
}
.portaalfooter a:not(.fa):hover,
.portaalfooter a:not(.fa):focus {
    text-decoration: none;
}
.portaalfooter .contact .fa {
    margin-right: 5px;
    text-align: center;
    width: 14px;
}
.portaalfooter .rechts {
    text-align: right;
}

.portaalfooter .sitelinks {
    font-size: 1.1em;
    margin: 1em 0 0;
}

.portaalfooter .sitelinks a {
    color: inherit;
}
.portaalfooter .sitelinks li:not(:first-of-type):before {
    content: " | ";
    padding-right: 10px;
}

.portaalfooter .socialmedia-volgen .fa {
    background-color: #0086d6;
    color: #fff;
}

.portaalfooter .socialmedia-volgen .fa:hover,
.portaalfooter .socialmedia-volgen .fa:focus {
    background-color: #fff !important;
    color: #0086d6;
}

@media screen and (min-width: 769px) {
    .portaalfooter .sitelinks {
        font-size: 1.2em;
        margin-top: 2.3em;    
    }
    
    .portaalfooter .contact {
        margin-bottom: 0;
    }
}
