@media screen and (max-width: 767px) {
    .hidden__mobile {
        display: none !important;
    }
}

.navigation__list img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    height: 100px;
}

.navigation__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .navigation__list img {
        height: 77px;
        left: 60px;
    }

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .navigation__list img {
        left: 20px;
    }
}

.navigation__list:first-of-type {
    border-left: 0px solid #dde2e5;
}

.navigation__list--left {
    padding-left: 30px;
    margin-left: 274px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .navigation__list--left {
        margin-left: 239px;
        padding-left: 0;
    }
}

html {
    height: 100%;
}

* {
    font-family: inherit;
    line-height: inherit;
    color: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    color: #4d4442;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    background-color: #fff;
    line-height: 25px;
    padding: 0;
    margin: 89px 12% 116px 12%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
    body {
        margin: 0;
    }
}

h1 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    margin: 0;
    margin-bottom: 10px;
}

h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#main {
    width: 100%;
    margin-left: auto;
    padding: 30px 30px 0;
    overflow: hidden;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    display: none;
}

@media screen and (max-width: 1200px) {
    #main {
        padding: 30px 30px 0;
    }
}

#main .block {
    margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {
    #main .block {
        margin-bottom: 10px;
    }
}

#main .block:last-of-type {
    margin-bottom: 0;
}

.widget {
    background-color: #fff;
    padding: 30px;
    border: 0px solid #dde2e5;
}

@media screen and (max-width: 1200px) {
    .widget {
        padding: 20px;
    }
}

#topmenu {
    border-bottom: 0px solid #dde2e5;
    background-color: #fff;
    position: fixed;
    width: 100%;
    margin-top: -59px;
    z-index: 99;
}

@media screen and (max-width: 767px) {
    #topmenu {
        margin-top: 0;
        position: static;
    }
}

a {
    color: #F0A69F
}


input[type=checkbox] {
    zoom: 1.4;
}

ul.checkbox-list {
    list-style-type: none;
}

    ul.checkbox-list li {
        padding-top: 5px;
        padding-bottom: 5px;
    }

        ul.checkbox-list li label {
            padding-left: 5px;
            display: inline-block;
            max-width: 95%;
            vertical-align: top;
        }

.button {
    border: 0px solid #181e34;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 5px 4px 5px;
    background-color: #FED375;
    color: #181e34;
    text-transform: uppercase;
    margin-left: 6px;
    margin-top: 10px;
    margin-bottom:12px;
    padding-right: 25px;
    padding-left: 25px;
}

    .button:hover {
        text-decoration: none;
        background-color: #181e34;
        color: #ffffff;
        cursor: pointer;
    }

    .button:disabled,
    .button[disabled] {
        color: #ffffff !important;
        border: 2px solid #d3d3d3 !important;
        background-color: #d3d3d3 !important;
    }

.small {
    font-size: 0.9em;
}

.NieuweStroom {
    font-family: 'Source Serif Pro', serif;
    color: #1EBCB2;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 30px;
}

.NieuweStroomH2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    color: #1EBCB2;
    margin-top: 22px;
    margin-bottom: 10px;
    padding-top:10px;
}

.optioneel {
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count: 100;
}

@keyframes example {
    0% {
        color: black;
    }

    25% {
        color: #1EBCB2;
    }

    100% {
        color: black;
    }
}