/* settings voor de header*/

#header-kop{
    position: fixed;
    top:0px;
    width: 100%;
    height: var(--headerbalk-klein);
    border-bottom-width:0px;
    border-bottom-color:var(--headerbalk1);
    border-bottom-style: solid;
    z-index: 50;
}

#header-rij1{
    height:50%;
    width:100%;
    background-color: var(--headerbalk1);
}
#header-rij2{
    height:50%;
    width:100%;
    background-color: var(--headerbalk2);
}
#header-rij3{
    height:2px;
    width:100%;
    background-color: #000000;
}

#header-koptekst{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: var(--header-naam-text-klein);
    line-height: var(--header-naam-text-klein);
    margin-left: var(--header-naam-links-klein);
    color: var(--headerkoptext);
}

#header-imgNMLOGO {
    visibility: hidden;
    height: calc(var(--headerlogo-klein));
    top: 0px;
    margin-left: 20px;
    position: fixed;
    z-index: 99;
}

#header-menu-bar {
    top: 0px;
    width: 100%;
    position: fixed;
    visibility: visible;
    z-index: 80;
}

#zoek-button{
width: 35px;
height: 35px;
background-color: var(--darkmode-css-button-bg);
border-style: solid;
padding: 0px;
margin-left: 8px;
margin-top: 2px;
border-radius: 10px;
}

@media screen and (min-width: 900px){
    #header-koptekst{
        font-size: var(--header-naam-text-groot);
        line-height: var(--header-naam-text-groot);
        margin-left: var(--header-naam-links-groot);
    }

    #header-kop{
        height: var(--headerbalk-groot);
    }

    #header-imgNMLOGO {
        height: calc(var(--headerlogo-groot));
    }
    
    #header-menu-bar {
        visibility: hidden;
    }

    #header-imgNMLOGO {
        visibility: visible;
    }

    #header-rij2{
        position: relative;
        min-height: 20px;
    }
    #header-bottom-menu{
        position: absolute;
        bottom: 2px;
        align-items: center;
        width: 100%;
    } 

    
}

