* {
    box-sizing: border-box;
}

@font-face {
    src: url(../fonts/ProductSansRegular.ttf);
    font-family: PSR;
}

@font-face {
    src: url(../fonts/ProductSansBold.ttf);
    font-family: PSB;
}

body {
    line-height: normal;
    min-height: 100vh;
}

.static {
    margin: auto;
    width: 95%;
}

main {
    padding: 0 2% 2% 2%;
}

h1 {
    margin: auto;
    font-size: 50px;
    font-family: PSB;
    padding: 1% 0 1% 0;
}

h2 {
    margin: auto;
    font-size: 30px;
    font-family: PSB;
    padding: 1% 0 1% 0;
}

h3 {
    margin: 0;
    font-size: 25px;
    font-family: PSB;
    padding: 1% 0 1% 0;
}

h4 {
    margin: 0;
    font-size: 18px;
    font-family: PSB;
    padding: 1% 0 1% 0;
}

p {
    text-align: left;
    font-size: 16px;
    font-family: PSR;
    padding: 1% 0 1% 0;
}

strong {
    font-family: PSB;
    padding: 1% 0 1% 0;

}

a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

a:hover {
    text-decoration: underline;
}

ul {
    text-align: left;
    font-size: 16px;
    font-family: PSR;
    padding: 1% 0 1% 0;
}

ol {
    text-align: left;
    font-size: 16px;
    font-family: PSR;
    padding: 1% 0 1% 0;
}

ol li {
    list-style: decimal;
    margin: 1% 0 1% 20px;
    padding: 1% 0 1% 0;
}

/*https://stackoverflow.com/questions/29356534/css-responsive-multiline-list-with-dashed-lines-name-price*/

ul.prijslijst {
    padding: 0;
}

ul.prijslijst li {
    display: table;
}

ul.prijslijst li span {
    display: table-cell;
}

ul.prijslijst li span:first-child {
    /* TITLE */
    position: relative;
    overflow: hidden;
    /* Don't go underneath the price */
}

ul.prijslijst li span:first-child:after {
    /* DASHES */
    content: "";
    position: absolute;
    bottom: 0.5em;
    /* Set as you want */
    margin-left: 0.5em;
    /* Keep same for the next span's left padding */
    width: 100%;
    border-bottom: 1px dashed #000;
}

ul.prijslijst li span + span {
    /* PRICE */
    text-align: right;
    width: 1%;
    /* Trick it */
    vertical-align: bottom;
    /* Keep Price text bottom-aligned */
    padding-left: 0.5em;
    /* white-space: nowrap;       /* Uncomment if needed */
}

img {
    vertical-align: baseline;
}

.icon {
    width: 1.3vw;
    align-content: center;
    flex-direction: row;
}

#footer_onderaan {
    position: fixed;
    bottom: 0;
    width: 100vw;
}

figcaption {
    font-family: PSR;
    margin: 1%;
}