body {
    background: #feffff;
}
.container {
    max-width: 750px;
}
.header {
    margin-top: 6rem;
    text-align: center;
}
.footer {
    padding: 2.5rem 0 2rem 0;
}
.docs-section {
    background: #feffff;
    padding: 4rem 0;
    margin-bottom: 0;
}
.section {
    padding: 6rem 0 5.75rem;
    text-align: center;
    background: #feffff;
}
/* Navbar */
.navbar+.docs-section {
    border-top-width: 0;
}
.navbar, .navbar-spacer {
    display: block;
    width: 100%;
    height: 6.5rem;
    z-index: 99;
}
.navbar-spacer {
    display: none;
}
.navbar-list {
    list-style: none;
    display: table;
    width: 100%;
}
ul.navbar-list,ul.tabs {
    padding-left: 0;
    margin-top: 0;
}
.navbar-item {
    position: relative;
    float: left;
    margin-bottom: 0;
}
.navbar-link {
    text-transform: uppercase;
    font-size: 70%;
    font-weight: 600;
    letter-spacing: .2rem;
    text-decoration: underline;
    line-height: 6.5rem;
    cursor: pointer;
    text-align:center;
    margin:0 1.5rem;
}
.navbar-item.active {
    text-decoration: none;
    display: inline;
    color:#000;
}
.navbar-item.home .navbar-link {
    margin-left:0;
}
.navbar-button {
    float:right;
}
.responsive .popover-link.active-container {
    color: #999;
    text-decoration: none;
}
.navbar-list li:nth-child(n+3) {
    display: none;
}
.navbar-divider {
    text-transform: uppercase;
    font-size: 100%;
    font-weight: 600;
    letter-spacing: .2rem;
    margin-right: 35px;
    text-decoration: none;
    line-height: 6.5rem;
    color: #2b2b2b;
}
#hamburger span {
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}
#hamburger span:hover {
    color: #999;
}

/* responsive additions */

.responsive {
    height: auto;
    max-width: 100%;
}
.responsive .navbar-list li {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
}
.responsive #hamburger {
    line-height: 6.5rem;
}
.responsive .popover-list {
    margin: 0 0 0 1rem;
}
.responsive .navbar-link, .responsive .navbar-item {
    line-height: 3.5rem;
    margin-right: 0;
}
form.navbar-link input {
    line-height: 3.5rem;
    margin-top: 1rem;
}
/* Bigger than 550 */

@media (min-width: 550px) {
    .header {
        margin-top: 18rem;
    }
    .docs-section {
        padding: 6rem 0;
    }
    .section {
        padding: 6rem 0 5.75rem;
    }
}
/* Bigger than 750 */

@media (min-width: 750px) {
    /* from here, we'll show the full nav menu, and the hamburger is hidden */
    #hamburger {
        display: none;
    }
    /* re-align main nav ul */
    .navbar-list {
        width: 100%;
    }
    .navbar-list li:not(:first-child) {
        display: block;
    }
    .has-docked-nav .navbar {
        position: fixed;
        top: 0;
        left: 0;
    }
    .has-docked-nav .navbar-spacer {
        display: block;
    }
    /* Re-overiding the width 100% declaration to match size of % based container */
    .has-docked-nav .navbar>.container {
        width: 80%;
    }
    /* custom offset for anchor links */
    .offset {
        padding-top: 8.5rem;
        /* header height of 6.5rem + empty space */
        margin-top: -7.5rem;
        /* counter the padding */
    }
    .section {
        padding: 5rem 0 4.75rem;
    }
}
/* Bigger than 1000 */
@media (min-width: 1000px) {
    .section {
        padding: 7rem 0 6.75rem;
    }
}
/* .active */
li.active a {
    text-decoration: none;
}
/* lightgrey */
.lightgrey {
    background:#fbfbfb;
}
/* dark theme */
.dark {
    background: #2B2B2B;
    color: #feffff;
}
/* tinted theme */
.tinted {
    background: #F7F7F8;
}
/* alternate / default theme */
.alternate {
    background: #7FA3B2;
    color: #feffff;
}
.alternate .tinted {
    background:transparent;
}
/* default theme */
.default {
    background: #5A8293;
    color: #feffff;
}

.tool {
    padding: 1rem 2rem 3rem 2rem;
    margin: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2b7a78;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2b7a78;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Utilities */
.cursor-grab {
    cursor: grab;
}
.no_underline {
    text-decoration: none;
}
.valign-top {
    display: table-cell;
    vertical-align: top;
}
.border-top {
    border-top: 1px solid;
    border-color: #e1e1e1;
}
.border-bottom {
    border-bottom: 1px solid;
    border-color: #e1e1e1;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-capitalize {
    text-transform: capitalize;
}
.text-center {
    text-align: center;
}
.bold {
    font-weight: bold;
}

/* odd/even background colors inside (visible) tables, see https://codepen.io/gfra/pen/nFrEc */
.odd {
    background:#e1e1e1;
}

/* responsive table */
@media screen and (max-width: 750px) {
    table.responsive:not(.pika-table) {
        border: 0;
    }
    table.responsive:not(.pika-table) thead {
        display: none;
    }
    table.responsive:not(.pika-table) tr {
        margin-bottom: 1rem;
        display: block;
        border: 1px solid #e3e3e3;
        background-color: white;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
    table.responsive:not(.pika-table) td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
    }
    table.responsive:not(.pika-table) td:before {
        content: attr(data-label);
        float: left;
        font-weight:bold;
        text-transform: uppercase;
        font-size: 80%;
    }
    table.responsive:not(.pika-table) td:last-child {
        border-bottom: 0;
    }
    table.responsive:not(.pika-table) td:first-child,table:not(.pika-table) td:last-child {
        padding:12px 15px;
    }
    table.responsive:not(.pika-table) .button { margin: 0; }
}

/* alerts */
.alert {
    display: block;
    padding: 20px;
    margin: 2rem 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.alert-success {
    background-color: #D5F5E3;
    color: green;
}
.alert-info {
    background-color: #B4C6CD;
    color: #2b2b2b;
}
.alert-warning {
    background-color: #FCF3CF;
    color: #2b2b2b;
}
.alert-error {
    background-color: #F2D7D5;
    color: #C0392B;
}

.alert-error:hover {
    background-color: #F2C3BE;
    color: #333;
}

.alert-neutral {
    color: inherit;
}
/* faq */
.faqContainer {
    border-bottom: 1px solid #d3d7cf;
    margin-bottom: 1.5rem;
}
.faqQuestion {
    text-align: left;
    margin-bottom: 0.5rem;
}
.faqAnswer {
    text-align: left;
    margin-left: 2em;
    margin-bottom:2rem;
}
.faqAnswer>p {
    margin-bottom: 1rem;
}
/* blockquote */
blockquote p {
    margin-bottom: 0.5em;
}
blockquote p::before, blockquote p::after {
    content: '"';
}
blockquote cite::before {
    content: ' ~ ';
}
/* code */
code[class*="language-"],
pre[class*="language-"] {
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    color: #eee;
    background: #2b2b2b;
    font-family: Roboto Mono, monospace;
    line-height: 1.5em;

    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;

    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

code[class*="language-"]::-moz-selection,
pre[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection,
pre[class*="language-"] ::-moz-selection {
    background: #363636;
}

code[class*="language-"]::selection,
pre[class*="language-"]::selection,
code[class*="language-"] ::selection,
pre[class*="language-"] ::selection {
    background: #363636;
}

:not(pre) > code[class*="language-"] {
    white-space: normal;
    border-radius: 0.2em;
    padding: 0.1em;
}

pre[class*="language-"] {
    overflow: auto;
    position: relative;
    margin: 0.5rem 0 1rem 0;
    padding: 1rem;
}

.language-css > code,
.language-sass > code,
.language-scss > code {
    color: #fd9170;
}

[class*="language-"] .namespace {
    opacity: 0.7;
}

.token.atrule {
    color: #c792ea;
}

.token.attr-name {
    color: #ffcb6b;
}

.token.attr-value {
    color: #a5e844;
}

.token.attribute {
    color: #a5e844;
}

.token.boolean {
    color: #c792ea;
}

.token.builtin {
    color: #ffcb6b;
}

.token.cdata {
    color: #80cbc4;
}

.token.char {
    color: #80cbc4;
}

.token.class {
    color: #ffcb6b;
}

.token.class-name {
    color: #f2ff00;
}

.token.comment {
    color: #616161;
}

.token.constant {
    color: #c792ea;
}

.token.deleted {
    color: #ff6666;
}

.token.doctype {
    color: #616161;
}

.token.entity {
    color: #ff6666;
}

.token.function {
    color: #c792ea;
}

.token.hexcode {
    color: #f2ff00;
}

.token.id {
    color: #c792ea;
    font-weight: bold;
}

.token.important {
    color: #c792ea;
    font-weight: bold;
}

.token.inserted {
    color: #80cbc4;
}

.token.keyword {
    color: #c792ea;
}

.token.number {
    color: #fd9170;
}

.token.operator {
    color: #89ddff;
}

.token.prolog {
    color: #616161;
}

.token.property {
    color: #80cbc4;
}

.token.pseudo-class {
    color: #a5e844;
}

.token.pseudo-element {
    color: #a5e844;
}

.token.punctuation {
    color: #89ddff;
}

.token.regex {
    color: #f2ff00;
}

.token.selector {
    color: #ff6666;
}

.token.string {
    color: #a5e844;
}

.token.symbol {
    color: #c792ea;
}

.token.tag {
    color: #ff6666;
}

.token.unit {
    color: #fd9170;
}

.token.url {
    color: #ff6666;
}

.token.variable {
    color: #ff6666;
}
/* image in text styling */
figure {
    margin: 1em 0;
}
figure>img {
    padding: 0;
    border: 1px solid #E1E1E1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
figure>figcaption{
    color:#333;
}
/* Custom margins for blog articles */
.article h2, .article h3, .article h4 {
    margin-top: 4rem;
    margin-bottom: 1.2rem;
}
.article .ankeiler h1 {
    margin-bottom: 0.5rem;
}
.article .ankeiler p {
    font-size: 1.25em;
}
.article ol, .article ul {
    margin-left: 4rem;
    margin-right: 4rem;
}
/* contact form */
.potje_voor_de_bijtjes {
    display: none;
}
/* loader */
#loader {
    text-align: center;
    vertical-align: middle;
    display:none;
}
#loader svg path, .loader svg rect {
    fill: #2e3436;
}