﻿
:root {
    --bar-color: #203663; /* donker blauw (32,54,99) */
    --bar-text: #f1f1f1;
    --highlight-color: #E22341; /* rood (226,35,65) */
    --highlight-text: white;
    --support-color: #b7c7e8; /* licht blauw (183,199,232) */
}

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v15-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/ubuntu-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/ubuntu-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/ubuntu-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/ubuntu-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/ubuntu-v15-latin-regular.svg#Ubuntu') format('svg'); /* Legacy iOS */
}

* {
    box-sizing: border-box;
}


body {
    background: white;
    color: #333;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    line-height: 1.3em;
    margin: 8px;
}

h1 h2 h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.siteheader {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: var(--support-color);
    padding: 10px;
    border-radius: 4px;
}

.sitecontainer {
    min-height: 400px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    border-radius: 4px;
    font-size: 1.2em;
    height: 40px;
    padding: 8px;
    width: 100%;
    background-color: var(--bar-color);
    color: var(--bar-text);
    display: block;
    min-height: 20px;
}

.bottombar {
    background: #f2f2f2;
    margin-top: 80px;
    width: 100%; /* Full width */
    padding: 80px;
}

li a {
    color: #333;
    margin-top: 10px;
}

.validator {
    background: none repeat scroll 0 0 #febaba;
    border: 1px solid #fe8787;
    border-radius: 3px;
    margin: -60px 80px;
    padding: 4px;
    position: absolute;
}

.blockPopup {
    -webkit-box-shadow: 0 0 10px #333;
    background: whitesmoke;
    border: 6px solid #0088c4;
    border-radius: 6px;
    box-shadow: 0 0 10px #333;
    color: #333;
    display: none;
    max-height: 800px;
    padding: 6px;
}

.footerWrap {
    background: #f2f2f2;
}

.footerItem {
}

.footerNugget {
    color: #333;
}

    .footerNugget a {
        color: white;
        text-decoration: underline;
    }




/* 
    Media Queries
*/
@media screen and (min-width: 1024px) {
    .dynSmallHidden {
        display: block;
    }

    .dynSmallOnly {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .dynSmallHidden {
        display: none;
    }

    .dynSmallOnly {
        display: block;
    }
}
