/* CSS Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSS Reset Einde */
body {
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  font-weight: 400;
  color: #000000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1020px) {
  body {
    font-size: 16px;
    line-height: 1.6em;
  }
}

::selection {
  background: rgba(37, 128, 195, 0.4);
}

a {
  color: #2580C3;
  text-decoration: none;
}
a:hover {
  color: #000000;
}

b, strong {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

h2, h3, h4, h5, h6 {
  line-height: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 400;
  color: #2580C3;
  margin-bottom: 10px;
}
@media (min-width: 1020px) {
  h1 {
    font-size: 44px;
    line-height: 1.2em;
  }
}

h2, h3, h4 {
  font-size: 18px;
}
@media (min-width: 1020px) {
  h2, h3, h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 16px;
}
@media (min-width: 1020px) {
  h5 {
    font-size: 20px;
  }
}

main p,
main ul,
main ol {
  margin-bottom: 20px;
}
main p ul,
main p ol,
main ul ul,
main ul ol,
main ol ul,
main ol ol {
  margin-bottom: unset;
}

ul li,
ol li {
  margin-left: 20px;
  margin-bottom: 5px;
}

ul li {
  list-style-type: disc;
}

ol li {
  list-style-type: decimal;
}

.wrapper {
  position: relative;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}

.page__header {
  background: #2580C3;
  min-height: 80px;
  color: #ffffff;
}
@media (min-width: 1020px) {
  .page__header {
    margin-bottom: 40px;
  }
}
.page__header .header__logo {
  height: 80px;
  text-align: center;
  display: block;
}
.page__header .header__logo img {
  max-height: 80px;
}

.page__main .wrapper {
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (min-width: 1020px) {
  .page__main .wrapper {
    flex-wrap: nowrap;
  }
}
.page__main .wrapper nav {
  position: relative;
  flex: 100% 0 0;
  box-sizing: border-box;
  background: #F8F8F8;
  padding: 20px;
  border-radius: 5px;
  margin-right: 60px;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1020px) {
  .page__main .wrapper nav {
    flex: 280px 0 0;
  }
}
.page__main .wrapper nav h3 {
  margin-bottom: unset;
}
.page__main .wrapper nav .nav__toggle {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
}
@media (min-width: 1020px) {
  .page__main .wrapper nav .nav__toggle {
    display: none;
  }
}
.page__main .wrapper nav .menu-hoofdmenu-container {
  padding-top: 10px;
  display: none;
}
@media (min-width: 1020px) {
  .page__main .wrapper nav .menu-hoofdmenu-container {
    display: block;
  }
}
.page__main .wrapper nav a {
  color: #000000;
}
.page__main .wrapper nav a:hover {
  text-decoration: underline;
}
.page__main .wrapper nav .current_page_item {
  font-weight: bold;
}
.page__main .wrapper nav .current_page_item li {
  font-weight: normal;
}
.page__main .wrapper nav .nav__url {
  display: block;
}
.page__main .wrapper nav .nav__level1 {
  padding-left: 0;
}
.page__main .wrapper nav .nav__level2 {
  padding-left: 10px;
}
.page__main .wrapper nav .nav__separator {
  display: block;
  height: 10px;
}

.index__page,
.article__page {
  flex: 100% 1 1;
  padding: 20px;
}
@media (min-width: 1020px) {
  .index__page,
.article__page {
    padding: 0;
  }
}
.index__page a,
.article__page a {
  border-bottom: 1px dotted #2580C3;
  text-decoration: none;
}
.index__page a:hover,
.article__page a:hover {
  color: #000000;
  border-bottom: 1px dotted #000000;
}

.onPageMenu li.current-menu-item {
  display: none;
}

article .article__info {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.8em;
  margin-bottom: 10px;
}

figcaption {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

code {
  font-family: "Courier New", sans-serif;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: #ecf0f1;
  color: #34495e;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: -5px;
  line-height: 20px;
}

.melding {
  display: block;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.melding .melding__icoon {
  display: inline-block;
  width: 30px;
}
.melding.melding-groen {
  background: rgba(39, 174, 96, 0.15);
}
.melding.melding-rood {
  background: rgba(241, 196, 15, 0.15);
}

footer {
  background: rgba(37, 128, 195, 0.05);
  box-sizing: border-box;
  text-align: center;
  padding: 30px 40px;
  border-radius: 10px;
}

/*# sourceMappingURL=style.css.map */
