:root {
    --bloembraaden-default-paper-color: #fff;
    --bloembraaden-default-key-color: #000;
}

/**
 * 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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
main, section, article, nav, figure, figcaption,
header, footer, aside, mark, details, summary, time,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    color: var(--bloembraaden-default-key-color);
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6em;
    background-color: var(--bloembraaden-default-paper-color);
}

fieldset, legend {
    display: inline;
    vertical-align: top;
}

img {
    display: block;
    line-height: 0;
    border: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

s {
    text-decoration: line-through;
}

/**
 * basic margins
 */
p, h2, h3, h4, h5, h6 {
    margin-top: .8rem;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
    margin-top: 0;
}

ol li {
    margin-bottom: .6rem;
}

ol label {
    display: block;
}

/* links and wannabe links */
a, .peatcms-link {
    text-decoration: underline;
    cursor: pointer;
}

/**
 * formatting headers
 */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none;
}

h1 {
    font-size: 2em;
    font-weight: bold;
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
}

h3 {
    font-size: 1.6em;
    font-weight: bold;
}

h3 {
    font-size: 1.4em;
    font-weight: bold;
}

h4 {
    font-size: 1.2em;
    font-weight: bold;
}

h5 {
    font-weight: bold;
}

h6 {
    font-weight: bold;
}

[data-peatcms-placeholder] {
    display: none !important;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

/**
 * handy standard css classes
 */
.nodisplay,
.display-none {
    display: none;
}

/* nice embed https://stackoverflow.com/a/20130011 */
.embed-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: #CCC
}

.embed-iframe {
    position: relative;
    padding-top: 56.25%; /* 16 × 9 */
}

.embed-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.attention-grabber,
.peatcms_attention_grabber {
    animation: peatcms_attention_grabber .2s 6 ease-in-out; /* 6 = iteration count, used to be infinite but removing the class does not stop the animation in IE11 then */
}

@keyframes peatcms_attention_grabber {
    0% {
        transform: translateX(0)
    }
    25% {
        transform: translateX(-6px)
    }
    75% {
        transform: translateX(6px)
    }
    100% {
        transform: translateX(0)
    }
}

.peatcms_signal_change {
    animation: peatcms_pulsating .3s 2 ease-in;
}

/**
 * Messages
 */
#message_wrapper {
    position: fixed;
    width: 80vw;
    top: 0;
    left: 10vw;
    display: block;
    z-index: 101;
}

.message {
    position: relative;
    display: block;
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: var(--bloembraaden-default-paper-color);
    box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .28);
}

.log {
    color: rgb(48, 63, 123);
}

.warn {
    color: rgb(216, 136, 16);
}

.error {
    color: rgb(200, 0, 0);
    font-weight: bold;
}

.note {
    background-color: #ffc;
}

.message .button.close::before {
    content: '×';
}

.message .button.close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px;
    color: var(--bloembraaden-default-paper-color);
    border-radius: 5px; /* same as message */
    background-color: rgb(90, 90, 90);
    font-weight: bold;
    width: auto;
    height: auto;
}

.message .button.close:hover {
    background-color: rgb(0, 180, 20);
}

/**
 * prompts
 */
#bloembraaden-prompt-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#bloembraaden-prompt-wrapper .bloembraaden-prompt {
    background-color: rgb(255, 255, 255);
    padding: 1em;
    border-radius: 1em;
    max-width: 400px;
}

/**
 * from parser
 */
.nowrap {
    white-space: nowrap;
}

/**
 * Form elements
 */
textarea,
button,
input[type="submit"],
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="password"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #484844;
    padding: .25em;
    margin-bottom: .25em;
    outline: none;
    outline-offset: -1px;
}

textarea,
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="password"] {
    outline: solid 1px #484844;
}

button,
input[type="submit"] {
    padding: .25em .5em;
}

@keyframes peatcms_pulsating {
    25% {
        opacity: 1;
    }
    75% {
        opacity: .31;
    }
}

.bloembraaden-fade-out {
    animation: bloembraaden_fade_out .5s forwards ease-in-out;
}

@keyframes bloembraaden_fade_out {
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.bloembraaden-fade-in {
    animation: bloembraaden_fade_in .4s forwards ease-in-out;
}

@keyframes bloembraaden_fade_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/**
 * Pretty select lists
 */
body select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: none;
    padding: .25em 1.6rem .25em .25em;
    margin-bottom: .25em;
    /* border for select can only be done with outline */
    outline: none;
    outline-offset: -1px;
    /* the arrow image (https://www.filamentgroup.com/lab/select-css.html): */
    /* the color is the 484844 slightly after 'fill' */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23484844%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    /*linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);*/
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

body select::-ms-expand {
    display: none;
}

/**
 * slider https://cheewebdevelopment.com/boilerplate-vanilla-javascript-content-slider/
 */

.peatcms-slideshow-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    transition: 300ms;
}

/* ensure that we can adjust z-index or position elements absolutely within the slideshow itself (e.g., navigation) */
.peatcms-slideshow {
    position: relative;
}

/* set all slides as absolute positioning so they will stack on top of each other, and hidden from one another */
.peatcms-slide-entry {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity .6s;
}

.peatcms-slide-entry.active { /* this is how we transition the slides in/out */
    opacity: 1;
    visibility: visible;
}

/* set up our basic left/right navigation, would should ideally be vertically centered */

.peatcms-slide-nav {
    list-style: none;
}

.peatcms-slide-nav li {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    color: #333;
    background-color: var(--bloembraaden-default-paper-color);
    font-size: 25px;
}

/* pull our navigation out of the slider container to avoid z-index issues */

#peatcms-prev-slide {
    left: 0;
}

#peatcms-next-slide {
    right: 0;
}

/* src sets */
[data-srcset] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0; /* will be set to 1 by javascript */
    transition: opacity .4s ease;
}

/* carousel */
.carousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carousel .slide {
    flex: 0 0 auto;
    cursor: grab;
    height: 100%;
}

.carousel[data-mouse-is-down] .slide {
    cursor: grabbing;
}

/* just common sense */
[hidden] {
    display: none;
}

/* prevent CLS */
.cf-turnstile {
    height: 72.5px;
}

.cf-turnstile.invisible {
    max-height: 0;
    max-width: 0;
}
/**
 * Reset font and default color
 */
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
main, section, article, nav, figure, figcaption,
header, footer, aside, mark, details, summary, time,
table, caption, tbody, tfoot, thead, tr, th, td, input, select, textarea {
    font-family: 'Arial', sans-serif;
    letter-spacing: 0;
    line-height: 1.5em;
    color: #474852;
}

h1, h2 {
    line-height: 1.2em;
    margin-bottom: .3em;
}

/**
 * standard...
 */
.table {
    display: table;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
}

nav > * {
    margin-bottom: .23rem;
}

.cf-turnstile {
    height: 72.5px;
}

/**
 * style
 */
html, body {
    background-color: #f0f0f3;
    font-size: 18px;
}

.PEATCMS_data_stasher {
    display: none !important; /* TODO remove when done developing this part */
}

.peatcms-email-link {
    color: #364f81;
}

li {
    list-style-type: none;
}

hr {
    border: none;
    border-bottom: solid 1px #474852;
    width: 80%;
    margin: 0 auto 40px auto;
    padding: 40px 0 0 0;
    clear: both;
    float: none;
    height: 0;
}

input[type="submit"].cta,
.cta {
    cursor: pointer;
    padding: .101rem .325rem;
    border-top: solid 1px #474852;
    border-right: solid 3px #474852;
    border-bottom: solid 3px #474852;
    border-left: solid 1px #474852;
    background-color: #fff;
    text-decoration: none;
    display: inline-block;
}

input[type="submit"].cta {
    font-size: 1.12rem;
    color: #000;
}

.inconspicuous {
    opacity: .71;
}

/* menus */
#headermenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.6rem;
    cursor: pointer;
    background-color: #f0f0f3;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .14);
    z-index: 11;
}

#mainmenu svg,
#headermenu svg {
    max-height: 2rem;
}

#hamburger {
    height: 1rem;
    margin: .8rem;
    max-width: 9%;
}

#mainmenu .logo,
#headermenu .logo {
    display: inline-block;
    position: absolute;
    left: 3.9rem;
    max-width: calc(90% - 50px);
    height: 1.6rem;
    margin: .5rem .5rem .5rem 0;
}

#mainmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f0f0f3;
    display: none; /* activated by hamburger */
    z-index: 12;
    overflow-y: auto;
}

#mainmenu > * {
    margin: 1rem 2rem;
}

#mainmenu > *:last-child {
    margin-bottom: 4rem;
}

#mainmenu li a {
    text-decoration: none;
    font-size: 1.33rem;
    line-height: 2rem;
    font-weight: bold;
}

[data-mainmenu-open] body {
    overflow: hidden;
}

[data-mainmenu-open] #mainmenu {
    display: block;
}

#hamburger-close {
    height: 1.6rem;
    margin: .49rem .99rem;
    cursor: pointer;
    max-width: 8%;
    border-radius: 50%;
}

.cart > * {
    margin: 0 .3rem .3rem 0;
}

body > header + * {
    margin-top: 3.41rem;
}

/* love-bar button bar */
.love-bar .table {
    margin: 0 auto;
    width: 400px;
}

.love-bar .cell:last-child {
    text-align: right;
}

/* variant */
#fixed {
    /*position: fixed;*/
    top: 2.6rem;
    left: 0;
    height: calc(100vh - 2.6rem);
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}

/*#swipeup, #footer, #love, .bare-content {*/
body > section, body > aside, body > footer {
    position: relative;
    background-color: #f0f0f3;
    z-index: 2;
    padding: .5rem 2rem;
}

#swipeup {
    z-index: 2;
    margin-top: 1.46rem;
    box-shadow: 0 -3px 2px 0 rgba(0, 0, 0, .07);
    border-top-left-radius: 1.41rem;
    border-top-right-radius: 1.41rem;
}

/* slideshow */
.carousel {
    position: relative;
    margin-top: 1.69rem;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    /* iOS natural scrolling: */
    -webkit-overflow-scrolling: touch;
    /* remove the scrollbar... */
    scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.carousel > .strip {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    /* iOS natural scrolling: */
    -webkit-overflow-scrolling: touch;
    /* remove the scrollbar... */
    scrollbar-width: none; /* Firefox */
}

.carousel > .strip::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.slide .slide-content {
    padding: 1.91em;
}

.slide .variant-showcase {
    opacity: 0;
    transition: opacity .39s ease-in-out;
    /* button format */
    white-space: nowrap;
    padding: .2em .4em;
    background-color: rgba(255, 255, 255, .59);
    color: #000;
    text-decoration: none;
    border-radius: .21rem;
}

.slide:hover .variant-showcase {
    opacity: 1;
}

.slide .variant-showcase.peatcms-current-slug {
    display: none;
}

#fixed .carousel.images {
    position: fixed;
    left: 0;
    top: 0;
    margin-top: 2.6rem;
    height: calc(100vh - 2.6rem);
}

.images_on_page .carousel.images {
    height: 40vh;
    margin-right: -2rem;
    width: calc(100% + 2rem);
}

.carousel.love,
.carousel.instagram,
.carousel.variants {
    margin-left: -2rem;
    width: calc(100% + 4rem);
    height: 80vh;
}

#love,
.carousel.love {
    height: calc(300px + 10rem);
}

.carousel.love .slide h3 {
    height: 2rem;
    overflow: hidden;
}

.carousel.love .slide:last-of-type,
.images_on_page .carousel.images .slide:last-of-type {
    margin-right: 2rem;
}

.carousel.variants.poor {
    height: 45vh;
}

.carousel .slide:not(:last-of-type) {
    margin-right: .5rem;
}

.carousel .slide .slide-content {
    position: absolute;
}

.carousel .slide img {
    height: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carousel.variants .slide img {
    /* the carousel has height 80vh */
    height: calc(80vh - 6.5rem);
}

.carousel.variants.poor .slide img {
    /* the poor variants carousel has height 45vh */
    height: calc(45vh - 3rem);
}

.carousel.love .slide {
    width: 90%;
    max-width: 242px;
    margin-right: 1.87rem;
}

.carousel.love .slide:first-of-type {
    margin-left: 2rem;
}

.carousel.love .slide .img {
    width: 100%;
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel.love[data-item_count="0"] {
    height: 0;
}

.carousel[data-mouse-is-down] .slide {
    cursor: grabbing;
}

[data-menu-open] .carousel .slide {
    cursor: inherit;
}

.carousel-right:after {
    content: '';
    color: #fff;
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    right: 2rem;
    border-right: solid 4px #fff;
    border-top: solid 2px #fff;
    transform: rotateZ(45deg);
    top: 44%;
    opacity: 0;
}

.carousel-right:after {
    transition: opacity .39s linear;
}

[data-scrolled-start="1"] .carousel-right:after {
    opacity: 1;
}

.cart[data-item_count="0"] {
    display: none; /* no use showing a cart without items in this design */
}

#shoppinglist_excerpt {
    padding-bottom: 8rem;
}

/* thumb related: rich thumb and poor thumb... */
.poor.thumb .cta {
    margin: .19rem .45rem;
}

.thumb .price {
    font-size: 18px; /* iOs apparently does not understand inherit */
}

.thumb[data-online="false"] {
    background-color: #cc0000;
}

/* button bar(s) */
.info,
.love-bar {
    padding: .19rem .45rem;
}

.love-bar .cell:nth-child(2) {
    padding: 0 .38rem;
    color: #000;
}

#fixed .love-bar {
    display: block;
    position: fixed;
    background-color: rgba(255, 255, 255, .59);
    z-index: 2;
    border-radius: .23rem;
    margin: 1.91rem;
}

.series-access .toggles:after,
.button-share,
input[type="submit"].button-delete,
input[type="submit"].button-love {
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
    vertical-align: middle;
    border-radius: 50%;
    outline-offset: 3px;
}

.button-share {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 137.98 115.85"%3E%3Cpath d="M1746.17,492.85a20.82,20.82,0,0,0-20.05,15.27l-49-7.89c0-.5.07-1,.07-1.52a24,24,0,0,0-5.35-15.12l34.24-33.53a17.65,17.65,0,1,0-3.23-3.3l-34.24,33.53a24.09,24.09,0,1,0,7.78,24.5l49,7.89c0,.33-.05.66-.05,1a20.83,20.83,0,1,0,20.82-20.83Zm-44.61-55.22a13.93,13.93,0,1,1,13.92,13.92A13.93,13.93,0,0,1,1701.56,437.63Zm-50.63,76a16.77,16.77,0,1,1,16.76-16.76A16.77,16.77,0,0,1,1650.93,513.68Zm93.81,15.09a15.33,15.33,0,1,1,15.32-15.32A15.32,15.32,0,0,1,1744.74,528.77Z" transform="translate(-1629.02 -418.66)"/%3E%3C/svg%3E');
}

input[type="submit"].button-delete {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 132.03 132.03"%3E%3Cpath d="M1267.72,470a66,66,0,1,0-44.26,82.18A66,66,0,0,0,1267.72,470ZM1143,504.27a61.33,61.33,0,1,1,76.36,41.13A61.33,61.33,0,0,1,1143,504.27Z" transform="translate(-1138.48 -422.98)"/%3E%3Cpath d="M1209,485.92l26.3,26.6-5.85,5.86L1203.2,491.6l-27.08,26.55-5.44-5.51,26.77-26.72-26.66-26.31,5.86-5.86,26.55,26.49,26.54-26.49,5.51,5.45Z" transform="translate(-1138.48 -422.98)"/%3E%3C/svg%3E%0A');
}

input[type="submit"].button-love {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 138.57 138.57"%3E%3Cpath d="M1733.35,676.13q-23.56,0-34.64,20.78-11.09-20.77-34.65-20.78-33.25,2.77-34.64,38.8,0,44.34,69.29,99.77Q1768,759.28,1768,714.93,1766.61,678.9,1733.35,676.13ZM1700.16,809.3q-61.5-49.2-61.5-88.56,1.23-32,30.75-34.44,20.91,0,30.75,18.45,9.84-18.45,30.75-18.45,29.52,2.46,30.75,34.44Q1761.66,760.1,1700.16,809.3Z" transform="translate(-1629.42 -676.13)"/%3E%3C/svg%3E%0A');
}

input[type="submit"].button-love.loved {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 138.57 138.57"%3E%3Cpath d="M1495.35,676.13q-23.56,0-34.64,20.78-11.09-20.77-34.65-20.78-33.25,2.77-34.64,38.8,0,44.34,69.29,99.77Q1530,759.28,1530,714.93,1528.61,678.9,1495.35,676.13Z" transform="translate(-1391.42 -676.13)"/%3E%3C/svg%3E%0A');
}

/* use a nice graphic for the buy now (koop nu) button */
.koop-nu input {
    display: none;
}

.koop-nu {
    display: block;
    height: 3.11rem;
    width: 200px;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 947 200"%3E%3Cdefs%3E%3Cstyle%3E .a %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3Crect width="947" height="200"/%3E%3Crect class="a" x="3" y="2" width="933" height="184"/%3E%3Cpath d="M90,555.72V430.36H101.4V489.1l56.68-58.74H173L113.56,490.3l62.25,65.42H159.28L101.4,492.1v63.62Z" transform="translate(-53 -391)"/%3E%3Cpath d="M543.94,555.72V430.36H566.8q13.53,0,19.91,1.46a30.9,30.9,0,0,1,11.09,4.79A28,28,0,0,1,607,448.34a40.88,40.88,0,0,1,3.25,16.53q0,17.89-10,26.24t-31.68,8.35H555.33v56.26Zm11.39-66.28h7.79q20.73,0,27.87-5.26t7.15-18.45a31.1,31.1,0,0,0-1.62-10.24,24.86,24.86,0,0,0-4.89-8.34,17.87,17.87,0,0,0-9.07-5.31q-5.74-1.54-19.44-1.54h-7.79Z" transform="translate(-53 -391)"/%3E%3Cpath d="M717.21,555.72V425.05L806,529.94V430.36h10.62v129L727.91,454.34V555.72Z" transform="translate(-53 -391)"/%3E%3Cpath d="M864.9,430.36h11.21v81.86q0,18.59,8.48,27.61t25.95,9q17.21,0,25.68-9t8.48-27.61V430.36h11.39v78.18q0,25.43-11.31,38t-34.24,12.55q-23,0-34.34-12.55t-11.3-38Z" transform="translate(-53 -391)"/%3E%3Cpath d="M262.5,425a66,66,0,1,0,66,66A66,66,0,0,0,262.5,425Zm-3,129.26a61.33,61.33,0,1,1,61.33-61.32A61.32,61.32,0,0,1,259.47,554.26Z" transform="translate(-53 -391)"/%3E%3Cpath d="M484.74,537a66,66,0,1,0-93.19,5.29A66,66,0,0,0,484.74,537Zm-94.42-88.33a61.32,61.32,0,1,1,4.92,86.59A61.32,61.32,0,0,1,390.32,448.62Z" transform="translate(-53 -391)"/%3E%3C/g%3E%3C/svg%3E%0A');
}

/* series access */
.series-access h2 {
    cursor: pointer;
}

.series-access .toggles:after {
    height: 1.4rem;
    width: 1.4rem;
    margin: .61rem 0 0 .5rem;
    content: '';
    position: absolute;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 132.03 132.03"%3E%3Cpath d="M1267.72,724a66,66,0,1,0-44.26,82.18A66,66,0,0,0,1267.72,724ZM1143,758.27a61.33,61.33,0,1,1,76.36,41.13A61.33,61.33,0,0,1,1143,758.27Z" transform="translate(-1138.48 -676.98)"/%3E%3Cpath d="M1203.2,768.6m-.2.4-32.21-32.39,5.86-5.86,26.55,26.49,26.54-26.49,5.51,5.45" transform="translate(-1138.48 -676.98)"/%3E%3C/svg%3E%0A');
    transition: opacity 301ms ease-in-out;
    vertical-align: text-bottom;
}

.series-access .toggled {
    height: auto;
    max-height: 0;
    overflow: hidden;
    margin-left: -2rem;
    margin-right: -2rem;
    transition: max-height 351ms ease-in-out;
}

.series-access .toggles.open:after {
    opacity: 0;
}

/* on page */
.series-access .carousel {
    margin-top: 0;
}

.series-access .carousel,
.series-access .toggled.open {
    max-height: 400px;
}

.series-access .carousel .slide {
    max-width: 300px;
}

.series-access .carousel h3,
.series-access .carousel p {
    padding: 0 .84rem;
}

.series-access .carousel img {
    margin: 0 auto .2rem auto;
    height: 50%;
}

/* Instagram */
#instagram {
    display: block;
    position: relative;
}

#instagram h4 {
    margin-bottom: 1.03rem;
}

#instagram .slide {
    display: inline-block;
    float: left; /* to eliminate ghost space between elements */
    text-align: center;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#instagram .slide a { /* Bekijk op insta */
    font-weight: bold;
    text-decoration: none;
    font-size: .81rem;
    padding: .2em .4em;
    height: 1rem;
}

#instagram .slide:after {
    line-height: .81rem;
    vertical-align: middle;
    float: left;
    width: 0;
    margin-top: .2rem
}

#instagram .CAROUSEL_ALBUM:after {
    content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" aria-label="Carrousel" fill="%23474852" height="18" role="img" viewBox="0 0 48 48" width="18"%3E%3Cpath d="M34.8 29.7V11c0-2.9-2.3-5.2-5.2-5.2H11c-2.9 0-5.2 2.3-5.2 5.2v18.7c0 2.9 2.3 5.2 5.2 5.2h18.7c2.8-.1 5.1-2.4 5.1-5.2zM39.2 15v16.1c0 4.5-3.7 8.2-8.2 8.2H14.9c-.6 0-.9.7-.5 1.1 1 1.1 2.4 1.8 4.1 1.8h13.4c5.7 0 10.3-4.6 10.3-10.3V18.5c0-1.6-.7-3.1-1.8-4.1-.5-.4-1.2 0-1.2.6z"%3E%3C/path%3E%3C/svg%3E');
}

#instagram .VIDEO:after {
    content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" aria-label="Video" fill="%23474852" height="18" role="img" viewBox="0 0 48 48" width="18"%3E%3Cpath d="M9.6 46.5c-1 0-2-.3-2.9-.8-1.8-1.1-2.9-2.9-2.9-5.1V7.3c0-2.1 1.1-4 2.9-5.1 1.9-1.1 4.1-1.1 5.9 0l30.1 17.6c1.5.9 2.3 2.4 2.3 4.1 0 1.7-.9 3.2-2.3 4.1L12.6 45.7c-.9.5-2 .8-3 .8z"%3E%3C/path%3E%3C/svg%3E');
}

#instagram .slide.bloembraaden-dark a,
#instagram .slide.bloembraaden-dark:after {
    background-color: rgba(240, 240, 243, .82); /* same as background #f0f0f3 */
}

/* ordering: */
#cart .variant {
    margin: .38rem 0;
    clear: both;
}

#cart ul {
    clear: both;
}

#cart ul li {
    display: inline-block;
    float: left;
    padding-right: .29rem;
}

#cart ul li:not(:last-child):after {
    content: '»';
    padding-left: .29rem;
}

#cart ul li.price {
    font-weight: bold;
}

#peatcms-order-form {
    width: 533px;
    margin-left: 2rem;
}

#peatcms-order-form label {
    width: 200px;
    overflow: hidden;
    display: inline-block;
    padding: .25rem 0;
}

#peatcms-order-form select,
#peatcms-order-form textarea,
#peatcms-order-form input[type="text"],
#peatcms-order-form input[type="email"] {
    vertical-align: text-bottom;
    background-color: #fff;
    width: 300px;
    font-size: 1rem;
    border: none;
    outline: none;
    padding: .25rem;
}

#peatcms-order-form select {
    width: calc(300px + .5rem); /* width of select apparently includes padding */
}

#peatcms-order-form input[type="checkbox"] {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    vertical-align: text-bottom;
    outline-color: #474852;
}

#peatcms-order-form select:focus,
#peatcms-order-form textarea:focus,
#peatcms-order-form input[type="text"]:focus,
#peatcms-order-form input[type="email"]:focus {
    box-shadow: 1px 1px 0 2px #474852;
}

#peatcms-order-form #billing_address {
    display: none;
}

#separate_billing_address:checked ~ #billing_address {
    display: block;
}

#peatcms-order-form textarea {
    width: 500px;
}

#order-button-region {
    clear: both;
    display: block;
    border-top: solid 2px #474852;
}

.peatcms-ordering ~ #love,
.peatcms-ordering ~ #footer {
    display: none;
}

.validation_message {
    position: absolute;
    display: inline-block;
    z-index: 2;
    padding: .2em .6em;
    margin: 2px 0 2px -204px;
}

.validation_message.invalid {
    background-color: rgb(200, 40, 40);
    color: rgb(255, 255, 255);
    padding: .1em .5em;
}

section[role="main"] img {
    max-width: 100%;
    max-height: 71vh;
}

@media (max-width: 560px) {
    #peatcms-order-form {
        width: calc(90% - 2rem);
    }

    #peatcms-order-form label {
        width: 100%;
        display: block;
    }

    #peatcms-order-form input[type="text"],
    #peatcms-order-form input[type="email"],
    #peatcms-order-form textarea {
        width: 100%;
    }

    .validation_message {
        margin: -32px 0 2px 0;
    }

    #headermenu .logo {
        right: .5rem;
    }
}

/* closing the page... */
#bloembraaden-tagline {
    clear: both;
    padding: 4rem 0;
    font-size: .824rem;
    text-align: center;
}

/* loading... https://codepen.io/avstorm/pen/xJbdbw */
.loading-animation {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 30px;
    transform: rotate(45deg);
}

.loading-animation div {
    width: 6px;
    height: 6px;
    background: #474852;
    border-radius: 100%;
    float: left;
    margin-bottom: 12px;
    animation: scaleDot 2s ease infinite;
}

.loading-animation div:not(:nth-child(4n+4)) {
    margin-right: 12px;
}

.loading-animation div:nth-child(1) {
    animation-delay: 0s;
}

.loading-animation div:nth-child(2),
.loading-animation div:nth-child(5) {
    animation-delay: 0.1s;
}

.loading-animation div:nth-child(3),
.loading-animation div:nth-child(6),
.loading-animation div:nth-child(9) {
    animation-delay: 0.2s;
}

.loading-animation div:nth-child(4),
.loading-animation div:nth-child(7),
.loading-animation div:nth-child(10),
.loading-animation div:nth-child(13) {
    animation-delay: 0.3s;
}

.loading-animation div:nth-child(8),
.loading-animation div:nth-child(11),
.loading-animation div:nth-child(14) {
    animation-delay: 0.4s;
}

.loading-animation div:nth-child(12),
.loading-animation div:nth-child(15) {
    animation-delay: 0.5s;
}

.loading-animation div:nth-child(16) {
    animation-delay: 0.6s;
}

@-moz-keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@-o-keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scaleDot {
    40% {
        transform: scale(1.3) translate(-2px, -2px);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.loaded ~ .loading-animation {
    display: none;
}

/* better focus styles */
input[type="submit"]:focus,
a:focus-visible img,
*:focus-visible {
    outline: solid 2px #e00101;
}

input[type="submit"],
input[type="image"],
img,
svg {
    outline-offset: 3px;
}

