@charset "UTF-8";
:root {
/* kleuren */
    --action: #f36d5b;
    --action-hover: #da5f4f;
}
* {
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    font-variant: normal;
    color:#666;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
}

h1, h2, h3 {
    font-weight: 600;
    font-variant: normal;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 5px;
    color:#111;
}
h1 {
	text-transform: uppercase;
	letter-spacing: 2px;
    margin-bottom: 20px;
}
h3 {
    //color: #555;
    font-weight: 400;
    font-style: italic;
}
p {
    padding-bottom: 20px;
}
p.max-width-650 {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}
a,
a[href^="tel"] {
    color: #111;
    text-decoration: none;
}
.txt-oranje a {
    color: orangered;
    text-decoration: underline;
}
@media only screen and (min-width: 768px) {
    body {
        font-size: 14px;
        line-height: 28px;
    }
}

/* algemene voorwaarden */
.algemene-voorwaarden section {
    padding-top: 20px;
    padding-bottom: 20px;
}
.algemene-voorwaarden section ol {
    padding-left: 15px;
}
.algemene-voorwaarden section ol ol,
.algemene-voorwaarden section ol ul {
    padding-left: 20px;
    padding-bottom: 0px;
}
.algemene-voorwaarden section ol li {
    list-style-type: lower-alpha;
    list-style-type: decimal;
}
.algemene-voorwaarden section p {
    padding-bottom: 0px;
}

#container-home-images {
    background-color: cornflowerblue;
    width: 100%;
    flex-direction: column;
    height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
}

section {
    position: relative;
}
.blur {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    overflow: hidden;
}
.border-top {
    border-top: 1px solid #999;
}
.border-bottom {
    border-bottom: 1px solid #999;
}
/*
KLEUREN
*/
.bg-blauw {
    background-color: #006291;
}
.bg-grijs {
    background-color: #c8c0be;
    background-color: #9c9b9a;
}
.bg-lichtgrijs {
    background-color: #f5f5f5;
}
.bg-donkergrijs {
    background-color: #333;
}
.bg-wit {
    background-color:#fff;
}
.bg-geel {
    background-color: #d9bf12;
}
.txt-zwart {
    color: #000;
}
.txt-donkergrijs {
    color: #111;
}
.txt-groen {
    color:#9bb620;
}
.txt-oranje {
    color: orangered;
}
.txt-wit {
    color:#ffffff;
}
.txt-action {
    color: var(--action);
}
/*
Check boxes en Radio buttons
*/
.checkbox,
.radio {
    position: absolute;
    left: -9999px;
}

.checkbox__label,
.radio__label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    height: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.checkbox__label a {
    text-decoration: underline;
    margin-left: 6px;
}
.checkbox__label::before,
.checkbox__label::after,
.radio__label::before,
.radio__label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    box-sizing: border-box;
}

.checkbox__label::before,
.radio__label::before {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #666;
}

.radio__label::before,
.radio__label::after {
    border-radius: 50%;
}

input:focus + .checkbox__label::before,
input:focus + .radio__label::before {
    border-color: #666;
}

.checkbox__label::after,
.radio__label::after {
    width: 12px;
    height: 12px;
    margin: 4px;
    background-color: #333;
    transform: scale(0);
    transform-origin: 50%;
    transition: transform 150ms;
}

input:checked + .checkbox__label::after,
input:checked + .radio__label::after {
    transform: scale(1);
}

input[disabled] + .checkbox__label::before,
input[disabled] + .radio__label::before {
    border-color: #999;
}

input:checked[disabled] + .checkbox__label::after,
input:checked[disabled] + .radio__label::after {
    background-color: #999;
}
/*
BASICS
*/
.rounded-corners, .rounded-corners a {
    border-radius: 5px;
}
strong, .bold{font-weight: 600}
.italic{font-style: italic}
article{position:relative}


.clear-left {clear: left}
.clear-right {clear: right}
.clear-both {clear: both}

.float-left{ float:left}
.float-right{ float:right}
.float-none{ float:none}

.txt-align-left { text-align:left}
.txt-align-right { text-align:right}
.txt-align-center { text-align:center}
.inline-block { display:inline-block}

em {font-style: italic}
strong {font-weight: bold}

/* The Magnificent Clearfix: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table }
.clearfix:after { clear: both }
.clearfix { zoom: 1 }

