/*!
Theme Name: Vriesia
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vriesia
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Vriesia is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments


/* === /artikelen/ layout + filters === */
.vr-artikelen-layout{
	display:flex;
	gap:24px;
	align-items:flex-start;
}
.vr-artikelen-filters{
	width:320px;
	max-width:42vw;
	position:sticky;
	top:24px;
}
.vr-artikelen-results{
	flex:1;
	min-width:0;
}

.vr-artikelen-filterform{
	display:flex;
	flex-direction:column;
	gap:16px;
}
.vr-filter-block{
	background:#fff;
	border-radius:12px;
	padding:14px;
	box-shadow:0 1px 8px rgba(0,0,0,0.06);
}
.vr-filter-title{
	font-weight:700;
	margin-bottom:10px;
}
.vr-filter-label{
	display:block;
	font-weight:700;
	margin-bottom:6px;
}
.vr-filter-input{
	width:100%;
	padding:10px 12px;
	border:1px solid rgba(0,0,0,0.12);
	border-radius:10px;
}
.vr-filter-check{
	display:flex;
	align-items:center;
	gap:10px;
	margin:6px 0;
}
.vr-filter-empty{
	opacity:.7;
}
.vr-filter-actions{
	display:flex;
	gap:12px;
}
.vr-filter-apply{
	flex:1;
	padding:12px;
	border-radius:10px;
	border:0;
	cursor:pointer;
}
.vr-filter-reset{
	padding:12px;
	border-radius:10px;
	border:1px solid rgba(0,0,0,0.12);
	text-decoration:none;
	display:inline-flex;
	align-items:center;
}

.vr-filter-list-items .vr-is-hidden-by-limit{
	display:none;
}
.vr-filter-list-toggle{
	margin-top:10px;
	background:transparent;
	border:0;
	padding:6px 0;
	text-decoration:underline;
	cursor:pointer;
}

/* Hide numbered pagination (infinite scroll keeps it in the DOM) */
.post-type-archive-product .woocommerce-pagination{
	display:none;
}
.vr-artikelen-infinite-status{
	padding:16px 0;
	opacity:.8;
}

@media (max-width: 960px){
	.vr-artikelen-layout{flex-direction:column;}
	.vr-artikelen-filters{width:100%;max-width:none;position:static;}
}

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
/*	margin-bottom: 1.5em; */
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
/*
	margin: 1em 0;
*/
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: currentColor;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
:root {
    --outer-container-width: 1600px;
    --inner-container-width: 1440px;

    --color-primary: #ff5000;
    --color-secondary: #235789;
    --color-supporting-1: #231f20;
    --color-supporting-2: #fff;
    --color-supporting-3: #f2efea;

    --block-spacer: 4.5rem;
    --inner-block-spacer: 4rem;
    --related-block-spacer: 3rem;

    --grid-gap: 2rem;
}






/* START VRIESIA THEME */

html,
input {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 300;
}
body {
    margin: 0;
    font-family: revert;
    font-optical-sizing: revert;
    font-style: revert;
    font-size: revert;
    font-weight: 300;
}
body.mobile-menu {
    overflow: hidden;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: var(--color-tertiary);
}
a:hover {
    text-decoration-line: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 5px;
}
p.underline > a,
a.underline {
    text-decoration-line: underline;
    text-underline-offset: 5px;
}
a:hover {
    text-decoration-color: var(--color-primary);
}
hr {
    height: 1px;
    margin: 0;
    font-size: 0;
    border: none;
    background-color: #bcbec0;
}
img {
    max-width: 100%;
    vertical-align: top;
}
strong {
    font-weight: 400;
}
ul {
    list-style: none;
    margin: revert;
}
fieldset {
    padding: 0;
    border: none;
}
fieldset + fieldset {
    margin-block-start: 2rem;
}
fieldset .list-vertical {
    margin-block: 0;
}
fieldset .list-vertical li + li {
    margin-block-start: 1rem;
    margin-block-end: 0;
}
fieldset.catalog-sort {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-block-end: 1rem;
    gap: 0.5rem;
}
fieldset.catalog-sort select {
    padding: 0.5rem;
}
fieldset.catalog-sort strong {
    margin-inline-end: 1rem;
}
legend {
    margin-block-end: 0.5rem;
    font-weight: 400;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
}
.width-100 {
    width: 100%;
}
.bullet-separator li {
    padding-inline-end: 0.5rem;
}
.bullet-separator li + li {
    list-style: disc;
}
.bullet-separator li + li::marker {
    color: #ccc;
}
.list-horizontal {
    display: flex;
}
.list-horizontal li {
    margin-inline-end: 1rem;
}
.list-vertical li:not(:last-of-type) {
    margin-block-end: 1rem;
}
.heading .list-vertical {
    margin-block-start: 0.5rem;
}
.heading.content-margin {
    margin-block-end: 3rem;
}
.card .heading.underline,
.card .card-body {
    padding: 1rem;
}
.padding-0 {
    padding: 0;
}
.padding-block-0 {
    padding-block: 0;
}
.padding-inline-0 {
    padding-inline: 0;
}
.strong {
    font-weight: 400;
}
nav ul,
ul.menu {
    padding: 0;
}
footer nav ul li + li,
footer ul.menu li + li {
    margin-block-start: 1rem;
}
footer .wp-block-heading,
.details .wp-block-heading,
.grid-with-heading .wp-block-heading {
    margin-block-start: 0;
}
.card-grid > div {
    padding: 1rem;
}
small,
.small {
    font-size: 16px;
}
.flex {
    display: flex;
}
.fg-black {
    color: #000;
}
.fg-primary {
    color: var(--color-primary);
    fill: currentColor;
}
.fg-supporting-2 {
    color: var(--color-supporting-2);
}
.bg-black {
    background-color: #000;
}
.bg-primary {
    background-color: var(--color-primary);
}
.bg-secondary {
    background-color: var(--color-secondary);
}
.bg-supporting-1 {
    background-color: var(--color-supporting-1);
}
.bg-supporting-2 {
    background-color: var(--color-supporting-2);
}
.bg-supporting-3 {
    background-color: var(--color-supporting-3);
}
.border-primary {
    border-color: var(--color-primary);
}
.border-secondary {
    border-color: var(--color-secondary);
}
.border-supporting-1 {
    border-color: var(--color-supporting-1);
}
.border-supporting-2 {
    border-color: var(--color-supporting-2);
}
.border-supporting-3 {
    border-color: var(--color-supporting-3);
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.text-center {
    text-align: center;
}
.spacer-top {
    margin-block-start: var(--block-spacer);
}
.inner-spacer {
    padding-block: var(--inner-block-spacer);
}
.inner-spacer-start {
    padding-block-start: var(--inner-block-spacer);
}
.related-spacer-start {
    padding-block-start: var(--related-block-spacer);
}
.inner-spacer-end {
    padding-block-end: var(--inner-block-spacer);
}
.heading,
.wp-block-heading {
    font-weight: 400;
}
h2.heading,
h2.wp-block-heading {
    font-size: 32px;
}
h3.heading,
h3.wp-block-heading {
    font-size: 22px;
}
h3.heading.icon svg,
h3.wp-block-heading.icon svg,
.icon svg {
    margin-inline-end: 0.5rem;
    height: 1rem;
    transform: translateY(-1px);
}
.heading.icon,
.wp-block-heading.icon {
    display: inline-flex;
    align-items: center;
}
.heading.underline,
.wp-block-heading.underline {
    border-bottom: 1px solid #bcbec0; /* currentColor; */
    width: 100%;
    padding-bottom: 1rem;
}
.heading.center,
.wp-block-heading.center {
    text-align: center;
    justify-content: center;
}
.margin-block-0 {
    margin-block: 0;
}
.margin-block-start-0 {
    margin-block-start: 0;
}
.margin-block-end-0 {
    margin-block-end: 0;
}
.margin-inline-0 {
    margin-inline: 0;
}
.margin-inline-start-0 {
    margin-inline-start: 0;
}
.outer-container {
    max-width: var(--outer-container-width);
    margin: 0 auto;
    padding-inline: var(--grid-gap);
}
.inner-container {
    max-width: var(--inner-container-width);
    margin: 0 auto;
    padding-inline: var(--grid-gap);
}
.button,
.ghost-button {
    display: inline-block;
    white-space: nowrap;
    border-radius: 8px;
    padding-inline: 1rem;
    padding-block: 0.75rem;
    font-weight: 400;
}
button[disabled] {
    opacity: 0.5;
}
button,
select,
input {
    font-family: 'Source Sans Pro';
    font-size: 1rem;
}
input,
select {
    font-weight: 300;
}
.hidden {
    display: none;
}
.button {
    border: none;
}
.button.icon {
    display: flex;
    align-items: center;
}
.button.icon svg {
    transform: translateY(1px);
}
.ghost-button {
    border-width: 2px;
    border-style: solid;
}
a.ghost-button:hover {
    text-decoration: none;
/*    border-color: var(--color-primary); */
}
.logo img {
    height: 50px;
}
/*
.product-card {
    display: flex;
    flex-direction: column;
    max-width: 8rem;
    word-break: break-all;
    font-size: 16px;
}
*/
.product-list-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    word-break: break-all;
    justify-content: space-between;
}
.product-list-item + .product-list-item {
    border-top: 1px solid #dfdfdf;
    padding-block-start: 2rem;
}
.product-list-item > div {
    display: flex;
    gap: 1rem;
    flex: 1;
    flex-direction: column;
}
.product-list-item .image {
    display: block;
    background-color: #f8f8f8;
    align-self: flex-start;
}
.product-list-item .image img {
    mix-blend-mode: multiply;
}
.product-list-item .name {
    font-weight: 400;
}
.product-list-item .info {
    display: flex;
    flex: 1;
    gap: 1rem;
}
.product-list-item .offer {
    display: flex;
/*
    flex: 1;
*/
    flex-direction: column;
    gap: 1rem;
}
.product-list-item .offer svg {
/*
    fill: var(--color-primary);
*/
}
.product-list-item .offer > div {
    display: flex;
}
.product-list-item .pricing {
    text-align: right;
}
.product-list-item .pricing,
.product-list-item-mini .pricing {
    flex-direction: column;
    gap: 1rem;
}
.price-now,
.price-before {
    font-size: 1.5rem;
    white-space: nowrap;
}
.price-now {
    margin-inline-end: 1rem;
    font-weight: 400;
}
.price-before {
    margin-inline-end: 0.5rem;
    background: linear-gradient(to left top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%);
    color: #767676;
}
.decimals,
.decimals-separator {
    font-size: 0.7em;
    display: inline-block;
    transform: translateY(-5px);
}
.decimals-separator {
    margin-inline: 0.1rem;
}

.product-list-item p {
    margin: 0;
}
.product-list-item img {
/*
    border: 1px solid #bcbec0;
*/
    padding: 0.5rem;
    max-height: 9rem;
    border-radius: 4px;
    background-color: white;
}
.product-list-item .special {
    display: grid;
    justify-content: flex-start;
}
.special-label {
/*
    font-size: 16px;
    color: #ec0000;
*/
    padding: 0.5rem 1rem;
/*
    font-weight: 400;
    border-width: 1px;
    border-style: solid;
    border-color: #000;
*/
    border-radius: 8px;
    background-color: #f8f8f8;
/*    display: inline-flex; */
    white-space: nowrap;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
.special-label svg {
    height: 1rem;
    margin-inline-end: 0.5rem;
    white-space: nowrap;
    vertical-align: middle;
}
.special-offer {
    padding: 0.25rem;
    background-color: #ec0000;
    color: white;
    font-weight: 400;
    white-space: nowrap;
    margin-inline-end: 1rem;
}
.product-list-item .bullet-separator li {
    list-style: none;
}
.quantity input {
    width: 4rem;
    height: 3rem;
    text-align: center;
    padding: 0.5rem;
}
.product-list-item button,
#product button {
    font-size: 18px;
    font-family: 'Source Sans Pro';
    font-weight: 300;
}
.quantity button {
    background-color: #f2f2f2;
    border-radius: 8px;
    border: none;
    padding: 0.5rem 1rem;
}
/*
.product-list-item .price,
.product-list-item .special {
    display: flex;
    align-items: center;
}
*/
.product-list-item .price {
    display: flex;
}
.product-list-item .price,
.product-list-item .special {
    align-items: center;
}
.product-list-item .cart,
#product .cart {
    display: flex;
    gap: 1rem;
}
#product .cart,
.product-features {
    margin-block-start: 2rem;
}
#product img {
    max-width: 210px;
}
#product .pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Remove default product name, let theme take over */
article.type-product .entry-header {
    display: none;
}
.product-features li + li {
    margin-block-start: 1rem;
}
.product-features svg {
    width: 1.5rem;
}
.category-list .ghost-button {
    margin-inline-end: 1rem;
    margin-block-end: 1rem;
}
.button-cart {
    width: 4rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-cart svg {
    height: 1.5rem;
}
#top {
    padding-block: 1rem;
/*    position: sticky;
    top: 0; */
}
#top,
#site-header input,
#categories {
    font-size: 16px;
}
.ghost-button {
    padding-inline: 1rem;
    padding-block: 0.75rem;
    font-weight: 400;
}
#site-header {
/*     position: sticky;
    top: -75px; */
}
#site-header form.site-search {
}
#site-header #top form.site-search {
    display: none;
}
#site-header :not(#top) form.site-search input {
    max-width: revert;
}
#site-header svg {
    height: 18px;
}
#mobile-bar {
    display: flex;
    align-items: center;
    padding-block-end: 1rem;
}
#mobile-bar a {
    display: inline-block;
}
#mobile-bar form.site-search ~ a {
    margin-inline-start: 1rem;
}
#menu-toggle svg {
    display: flex;
    height: 18px;
    margin-inline-end: 1rem;
}
#menu-toggle {
}
#mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    width: min(70vw, 300px);
    height: 100%;
    background-color: var(--color-supporting-2);
    padding: 1rem;
    z-index: 1;
    border-top: 1px solid #bcbec0;
    transform: translateX(calc(min(70vw, 300px) * -1));
    pointer-events: none;
    overflow: auto;
}
.mobile-menu #mobile-menu {
    transform: translateX(0);
    pointer-events: revert;
}
#mobile-menu .heading ~ .heading,
#mobile-menu .wp-block-heading ~ .wp-block-heading {
    margin-block-start: 1rem;
}
form.site-search {
    text-align: right;
}
form.site-search,
input[type="search"] {
    width: 100%;
}
input[type="search"] {
    padding-inline: 1rem;
    padding-block: 0.75rem;
    font-weight: 400;

    background-color: #f8f8f8;
    border: none;
    border-radius: 8px;
    width: 100%;
/*    max-width: 500px; */
    text-overflow: ellipsis;
    padding-inline-end: var(--grid-gap);
}
form.site-search label {
    position: relative;
}
form.site-search label::after {
    position: absolute;
    background-image: url(/wp-content/themes/vriesia/assets/icon/search.svg);
    right: 1rem;
    top: 0;
    background-repeat: no-repeat;
    content: '';
    width: 1rem;
    height: 1rem;
    transform: translateY(2px);
}
#top > div {
}

#top {
    display: flex;
    align-items: center;
}
#top {
    justify-content: center;
}
/*
#top a:not(.site-search):not(.ghost-button) {
    display: block;
}
*/
#top a:not(.logo) {
    display: none;
}
#top > div a {
    margin-inline-start: 20px;
}
#bottom > div > div {
    display: flex;
    flex-direction: column;
}
#bottom > div:first-of-type > div {
    flex-basis: 50%;
    margin-block: 1rem;
}
#bottom a  {
    display: inline-flex;
    margin-block-end: 1rem;
}
/*
#bottom small a:first-of-type {
    order: 1;
}
*/
#bottom form.site-search {
    margin-block: 1rem;
}
#bottom > div:last-of-type {
/*    margin-block-start: var(--grid-gap); */
}
#bottom small {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
#categories {
    display: none;
}
#categories ul {
    display: flex;
    list-style: none;
    white-space: nowrap;
    overflow-x: auto;
    text-overflow: ellipsis;
    margin-block: 0;
    margin-inline: var(--grid-gap);
}
#categories ul::-webkit-scrollbar {
    display: none;
}
#categories li + li {
    padding-inline-start: 2rem;
}
#categories a {
    padding-block: 1rem;
    display: inline-flex;
    align-items: center;
}
#categories svg {
    margin-inline-end: 0.5rem;
}
.entry-content {
    margin-block-start: 0;
}
#vp-split {
    gap: 0;
    display: unset;
}
#vp-split > div > div > div {
    direction: ltr;
    text-align: center;
    justify-content: center;
}
#vp-split > div {
    padding-block: var(--inner-block-spacer);
}
#vp-split > div > div > div {
    padding-inline: var(--grid-gap);
    width: 100%;
    max-width: 35rem;
    margin: 0 auto;
}
#vp-split > div:first-of-type {
    color: #000;
    background-color: #fafafa;
}
#vp-split > div:last-of-type {
    color: #fff;
    background-color: #235789;
    direction: rtl;
}
#vp-split > div:last-of-type .ghost-button {
    color: currentColor;
    border-color: currentColor;
}
/*
#vp-split img {
    height: 250px;
}
*/
.col-2,
.col-3,
footer .col-4 {
    display: grid !important;
    grid-row-gap: var(--grid-gap);
}
.col-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--grid-gap);
}
.col-3.center > div {
    text-align: center;
    max-width: 25rem;
    justify-self: center;
}
.col-3.center > div > img {
    max-height: 9rem;
}
footer .col-4,
.col-4.stack,
.col-4 .wp-block-group__inner-container {
    display: grid !important;
    gap: var(--grid-gap);
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: var(--grid-gap);
}
.col-4.center {
    text-align: center;
}
.col-4.center .wp-block-group {
    justify-content: center;
}
.col-4 a {
    display: inline-block;
}
.col-4 a + a {
    margin-block-start: 1rem;
}
.col-4 > div > img,
.col-4.stack > div > img,
.col-4 .wp-block-group__inner-container > div > img {
    height: 9rem;
}
img.full-height {
    height: revert;
}
ul.underline {
    list-style: none;
    padding-inline: 0;
}
ul.underline li {
    border-bottom: 1px solid #fafafa;
}
a.underline {
    text-decoration-line: underline;
}
.status-message {
    border: 1px solid #dfdfdf;
    background-color: #f8f8f8;
    padding: 0.5rem;
}
.list-item-cta {
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center; /* Ensures items are aligned */
    max-width: 100%; /* Ensures the list item does not exceed its parent */
    overflow: hidden; /* Prevents overflow */
}

.list-item-cta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1; /* Ensures it takes the available space */
    max-width: 9rem;
}

.list-item-cta a {
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0; /* Prevents the CTA from shrinking */
    margin-inline-start: 1rem; /* Adds spacing between the text and CTA */
}
/*
.list-item-cta {
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.list-item-cta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-inline-end: var(--grid-gap);
}
.list-item-cta a {
    text-decoration: underline;
    white-space: nowrap;
}
*/
.text-left {
    text-align: left;
}
.text-2-img > .wp-block-group__inner-container,
.img-text > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: var(--grid-gap);
    grid-row-gap: var(--grid-gap);
}
.text-2-img > .wp-block-group__inner-container > div:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}
.text-2-img > .wp-block-group__inner-container > div:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}
.text-2-img > .wp-block-group__inner-container > div:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
    text-align: center;
}
.text-2-img img {
    width: 100%;
}
.text-2-img .heading,
.text-2-img .wp-block-heading {
    margin-block-start: 0;
}

.img-text > .wp-block-group__inner-container {
    text-align: center;
}
.img-text .heading,
.img-text .wp-block-heading {
    margin-block-start: 0;
}
.img-text img {
    width: 100%;
    max-width: 423px;
}
.col-2.center img {
    width: 100%;
/*    height: 18.5rem; */
}
.col-2.center {
    display: flex;
    gap: var(--grid-gap);
    align-items: center;
    justify-content: center;
}
.col-2.center > div:last-of-type {
    flex-basis: calc(var(--inner-container-width) / 3);
}
.col-1.center {
    max-width: 38rem;
    text-align: center;
    margin: 0 auto;
}
details {
    padding-block-end: 1rem;
    border-bottom: 1px solid var(--color-supporting-2);
    text-align: left;
}
summary {
    list-style: none;
    background-image: url(/wp-content/themes/vriesia/assets/icon/chevron-down.svg);
    background-position: 100% 0.5rem;
    background-repeat: no-repeat;
    padding-inline-end: 3rem;
}
details[open] summary {
    background-image: url(/wp-content/themes/vriesia/assets/icon/chevron-up.svg);
}
details + details {
    margin-block-start: 2rem;
}
.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.table-header-group {
    display: table-header-group;
    font-size: 16px;
}
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
}
.catalog {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
}
.product-list {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.product-list > ul {
    display: flex;
/*    flex: 1; */
    flex-direction: column;
    padding-inline-start: 0;
    gap: 2rem;
}
.product-list.horizontal ul {
    display: grid;
    grid-template-columns: repeat(3, min(60vw, 300px));
    overflow-x: scroll;
}
.product-list.horizontal .product-list-item + .product-list-item {
    border-top: revert;
    padding-block-start: revert;
}
.product-filter {
    flex-basis: 250px;
    min-width: 280px;
}
.product-filter {
    display: none;
}
#cart .product-filter {
    display: revert;
    margin-block-start: var(--grid-gap);
}
.product-filter.expanded {
    display: block;
}
.product-filter fieldset .list-vertical li {
    max-width: 360px;
}
.product-filter fieldset .list-vertical li {
    white-space: nowrap;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
#cart-totals {
    position: sticky;
    top: 2rem;
    height: 100%;
}
#cart-totals > div {
    padding: 1rem;
    border: 1px solid #000;
/*
    background-color: #f2f2f2;
*/
/*
    min-width: 360px;
*/
    width: 100%;
}
.totals-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-end: 1rem;
/*    font-weight: 400; */
}
.totals-line .heading,
.totals-line .wp-block-heading {
    margin: 0;
    font-weight: 300;
}
#cart-totals button svg {
    display: none;
}

@media screen and (min-width: 480px) {
    #bottom > div:first-of-type {
        flex-direction: unset;
        align-items: center;
    }
    #bottom > div > div {
        flex-direction: revert;
    }
    #bottom > div:first-of-type > div:first-of-type {
        order: 2;
    }
    #bottom a {
        margin-block-start: revert;
        margin-inline-end: 1rem;
    }
    #bottom small {
        flex-direction: revert;
    }
}
@media screen and (min-width: 640px) {
    .logo img {
        height: 70px;
    }
    .text-2-img > .wp-block-group__inner-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        grid-column-gap: var(--grid-gap);
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(3) {
        grid-area: 2 / 1 / 3 / 3;
    }
    .col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .col-4,
    .col-4.stack,
    .col-4 .wp-block-group__inner-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-list-item {
        flex-direction: revert;
    }
    #product {
        display: grid;
        grid-template-columns: minmax(200px, 1fr) 1fr 1fr;
        gap: var(--grid-gap);
    }
    #product > div:first-of-type {
        grid-column: 1 / 2;
    }
    #product > div:last-of-type {
        grid-column: 2 / 4;
    }
    #product img {
        max-width: 100%;
    }
}
@media screen and (min-width: 768px) {
    #top {
        justify-content: space-between;
    }
    #top > div {
        display: flex;
        align-items: center;
        flex-basis: 70%;
        justify-content: flex-end;
    }
    #top a:not(.logo) {
        display: block;
    }
    #mobile-bar {
        display: none;
    }   
    #bottom a {
        margin-block-end: revert;
    }
    #bottom > div:first-of-type > div {
        margin-block: revert;
    }
    #bottom > div:last-of-type {
        flex-direction: revert;
        align-items: center;
        gap: var(--grid-gap);
    }
    #bottom > div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-block-start: 1rem;
    }
    #bottom > div + div {
        margin-block-start: 2rem;
    }
    #bottom form.site-search {
        margin-block: revert;
    }
    #bottom form.site-search input[type="search"] {
        max-width: 500px;
    }
    #bottom small {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    #site-header #top form.site-search {
        display: revert;
        margin-block-end: revert;
    }
    #site-header form.site-search {
        display: none;
        padding-block-end: revert;
    }
    #categories {
        display: block;
    }
    .text-2-img > .wp-block-group__inner-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        grid-column-gap: var(--grid-gap);
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(1) {
        grid-area: 1 / 2 / 2 / 3;
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(2) {
        grid-area: 2 / 2 / 3 / 3;
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(3) {
        grid-area: 1 / 1 / 3 / 2;
        text-align: revert;
    }
    #top form.site-search {
        display: unset;
        margin-inline-end: 1rem;
    }
}
@media screen and (min-width: 960px) {
    .col-3 {
        gap: var(--grid-gap);
        grid-template-columns: repeat(3, 1fr);
    }
    footer .col-4,
    .col-4.stack,
    .col-4 .wp-block-group__inner-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .img-text > .wp-block-group__inner-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--grid-gap);
        text-align: left;
    }
    .img-text > .wp-block-group__inner-container > div:nth-child(2) {
        max-width: 25rem;
    }
    .text-2-img > .wp-block-group__inner-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: var(--grid-gap);
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(1) {
        grid-area: 1 / 2 / 2 / 2;
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(2) {
        grid-area: 1 / 3 / 2 / 3;
    }
    .text-2-img > .wp-block-group__inner-container > div:nth-child(3) {
        grid-area: 1 / 2 / 2 / 1;
    }
    .product-filter-toggle {
        display: none;
    }
    .product-filter {
        display: block;
    }
    #cart .product-filter {
        margin-block-start: 0;
    }
    .catalog {
        flex-direction: revert;
        gap: var(--grid-gap);
    }
    fieldset.sort {
        display: none;
    }
    fieldset.catalog-sort {
        display: flex;
        align-self: flex-end;
        align-items: center;
        flex-direction: revert;
        gap: revert;
    }
    #cart fieldset.catalog-sort {
        align-self: flex-start;
    }
    #product {
        grid-template-columns: minmax(360px, 1fr) 1fr 1fr;
    }
    #product .pricing {
        display: revert;
        flex-direction: revert;
        gap: revert;
    }
}
@media screen and (min-width: 1280px) {
    footer .col-4,
    .col-4.stack,
    .col-4 .wp-block-group__inner-container {
        grid-template-columns: repeat(4, 1fr);
    }
    #vp-split {
        display: flex;
    }
    #vp-split > div {
        display: flex;
        flex-basis: 50%;
        justify-content: flex-end;
    }
    #vp-split > div > div {
        display: flex;
        width: 70%;
        min-width: 30rem;
        max-width: calc(var(--inner-container-width) / 2);
        align-items: baseline;
    }
    #vp-split > div > div > div {
        width: unset;
        margin: unset;
        max-width: 27rem;
    }
    .product-list.horizontal ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: revert;
    }
    .product-filter {
        flex-basis: 360px;
    }
    fieldset.catalog-sort {
        align-self: flex-end;
    }
    .product-list-item > div {
        flex-direction: revert;
    }
    .product-list-item .cart {
        flex-direction: column;
    }
    .product-list-item .bullet-separator {
        display: flex;
    }
    .product-list-item .bullet-separator li {
        margin-inline-end: 1rem;
    }
    .product-list-item .bullet-separator li + li {
        list-style: disc;
    }
    .product-list-item .price,
    .product-list-item .special {
        align-items: center;
    }
    .product-list-item:not(.product-list-item-mini) .pricing {
        flex-direction: revert;
        align-items: center;
        gap: revert;
    }
}
@media screen and (min-width: 1440px) {
    #vp-split > div > div {
        min-width: 33rem;
    }
}
@media screen and (min-width: 1600px) {
    #categories ul {
        justify-content: center;
    }
}
