* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--base-font);
    font-size: var(--base-font-size);
    line-height: 1.7;
    overflow-x: hidden;
    background: #F2F2F2 url('/cdn/assets/images/css/backgrounds/background_nederland.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-color);
    transition: background-image 0.35s ease-in-out;
}

body::-webkit-scrollbar {
    width: 20px;
}

body::-webkit-scrollbar-track {
    background: #E6E6E6;
}

body::-webkit-scrollbar-thumb {
    background: #A8A8A8;
}

hr {
	margin: 20px 0px;
}

p {
    margin-bottom: 10px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1 { font-size: calc(var(--base-font-size) + 6px); }
h2 { font-size: calc(var(--base-font-size) + 4px); }
h3 { font-size: calc(var(--base-font-size) + 2px); }
h4 { font-size: calc(var(--base-font-size) + -1px); }
h5 { font-size: calc(var(--base-font-size) + -2px); }
h6 { font-size: calc(var(--base-font-size) + -3px); }

h1, h2, h3, h4, h5, h6 {
margin-bottom: 20px;
}

h1 button,
h2 button,
h3 button,
h4 button,
h5 button,
h6 button { margin: 0; float: right; }

time {
color: #777;
}

textarea,
select,
input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 0;
    display: block;
    resize: none;
    outline: none;
    font-family: var(--base-font);
    font-size: var(--base-font-size);
    background: transparent;
    color: #7E858B;
    border: 1px solid #A7ADAF;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
}

textarea:focus,
input:focus,
select:focus {
    border-color: #000;
}

button,
a.button {
    line-height: 1.6;
    padding: 3px 15px;
    display: inline-block;
    text-decoration: none;
    font-family: var(--base-font);
    font-size: var(--base-font-size);
    background: linear-gradient(to bottom, #f2f2f2 0%, #ebebeb 42%, #dddddd 47%, #cfcfcf 100%);
    color: #000;
    border: 1px solid #707070;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.1s ease-in;
}

button:hover,
a.button:hover,
button:focus {
    background: linear-gradient(to bottom, #eaf6fd 0%, #d9f0fc 42%, #bee6fd 47%, #bce5fc 58%, #a7d9f5 100%);
    border: 1px solid #3C7FB1;
    box-shadow: 0 0 3px #A7D9F5;
}

button:active {
    box-shadow: inset 0 -1px 6px rgba(0, 0, 0, 0.2), inset 0 -0.7em #BEE6FD, 0 0 3px #A7D9F5;
}

button.active {
    background: linear-gradient(to bottom, #eaf6fd 0%, #d9f0fc 42%, #bee6fd 47%, #bce5fc 58%, #a7d9f5 100%);
    border: 1px solid #3C7FB1;
    box-shadow: 0 0 3px #A7D9F5;
}