*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background: white;
    color: black;
    margin: 0;
    overflow-y: scroll;
}
a {
    text-decoration: none;
    color: #2020c0;
}
a:hover {
    text-decoration: underline;
}

header {
    background: #d0efcf;
    padding: 12pt 16pt 2pt 16pt;
}

main, footer {
    padding: 12pt 16pt;
}
.container {
    margin: 0 auto;
}

header nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 -8px;
}
header nav ul li {
    margin: 0;
    padding: 2px 8px;
    border-right: 1px solid #eec1b1;
}
header nav ul li:last-child {
    border: none;
}
header a {
    color: #4d3319;
}
div.breadcrumbs {
    margin: 1em 0;
    font-size: 80%;
    color: #eec1b1;
}

footer {
    background: #aae4a9;
    color: black;
}
footer .container {
    display: flex;
    flex-flow: row wrap;
}
footer .container > div {
    flex: 1 1 0;
    margin-right: 32pt;
}
footer h2 {
    font-size: 100%;
    margin: 0 0 10pt 0;
    padding: 10pt 0;
    text-transform: uppercase;
    white-space: nowrap;
}
footer a {
    color: #4d3319;
}
footer ul {
    padding-inline-start: 0;
}
footer li {
    margin-top: 0.5em;
}

img.logo, img.photo {
    width: 100%;
}

hr {
    width: 80%;
    margin: 3em;
    border: 1px solid #ffa800;
}

.mandatory {
    color: red;
    font-weight: bold;
}

div.qrcode > img {
    display: none;
}
div.qrcode > input {
    display: none;
}
div.qrcode > input + label:before {
    position: absolute;
    left: -1.2em;
    content: "\25B6";
}
div.qrcode > input:checked + label:before {
    content: "\25BC";
}
div.qrcode > input:checked ~ img {
    display: block;
}
div.qrcode > label {
    display: block;
    position: relative;
    color: #2020c0;
}
div.qrcode > label:hover {
    cursor: pointer;
}

@media (min-width: 800px) {
    .container {
        max-width: 760px;
    }
}
