/************************************************************************************************* RESET CSS */
/* CSS Resets */
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 {
    border: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    list-style-type: none;
    font-size: 100%;
}


/************************************************************************************************* GLOBAL CSS */
html {
    height: 100%;
    margin: 0 !important;
}

body {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-family: Arial, Helvetica;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

figure {
    position: relative
}

figure img {
    width: 100%
}

img, object, embed {
    max-width: 100%;
}

img {
    height: auto;
}

input, select, option, textarea {
    font: inherit;
    color: inherit;
    vertical-align: middle;
    margin-top: 0;
}

a[nohref] {
    cursor: pointer;
}

strong, b {
    font-weight: bold;
}

i, em {
    font-style: italic;
}

header {
    position: relative;
}

/* Behaviour classes */
.hide {
    display: none !important;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.noborder, .noborder:hover {
    border: 0;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.mobile {
    display: none !important;
}

.nomobile {
    display: block;
}

.nobreak {
    display: inline-block !important;
}

/* Mobile */
@media only screen and (max-width: 700px) {
    /* maximaal ivm breedte bepaalde websites */
    .mobile {
        display: block !important;
    }

    .nomobile {
        display: none !important;
    }
}

/* hide chrome type=number spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
}

/* hide firefox type=number spinners */
input[type='number'] {
    -moz-appearance: textfield;
}

.max-width {
    width: 100%;
}

div.qrcode * {
    display: none;
}

div.qrcode > img {
    display: block;
}