/*
Theme Name: Materiaalmaatjes
Theme URI: https://
Description: Thema voor de website van Materiaalmaatjes
Version: 0.1
Author: Bonsai media
Author URI: https://www.bonsaimedia.nl/
*/



/* 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, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



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





/* Variables */

:root {
	--main-red: #e24c3B;
	--main-orange: #f7941e;
}





/* Global styles */

body {
	background: #fef7eD;
	color: #000;
	font: 20px/30px "proxima-nova-condensed", sans-serif;
}



h1, h2, h3, h4, h5, h6 {
	color: #000;
	font-style: italic;
	font-weight: 700!important;
	font-family: "futura-pt-condensed", sans-serif!important;
	text-transform: uppercase;
}

h1 { margin-bottom: 20px; font-size: 58px!important; line-height: 64px!important; }
h2 { margin-bottom: 18px; font-size: 38px!important; line-height: 44px!important; }
h3 { margin-bottom: 16px; font-size: 32px!important; line-height: 38px!important; }
h4 { margin-bottom: 14px; font-size: 24px!important; line-height: 28px!important; }

h1:only-child, h2:only-child, h3:only-child, h4:only-child, h5:only-child, h6:only-child {
	margin-bottom: 0;
}

h1 i {
	margin-bottom: 20px;
}



strong {
	font-weight: 700;
}



a {
	color: #000;
	text-decoration: none;
	transition: all 0.2s;
}



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



hr {
	height: 1px;
	margin: 0 0 20px;
	background: #000;
	border: 0;
}



/* --- Input */

::placeholder {
	color: #000;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #000;
}

::-ms-input-placeholder {
	color: #000;
}



form {}

form p {}
form p:not(:last-child) {
	margin-bottom: 0;
}

form label, form legend {
	font-size: 14px;
}

form legend {
	margin-bottom: 10px;
}

input[type=text], input[type=number], input[type=email], input[type=tel], input[type=password], input[type=submit], textarea, select, button {
	width: 100%;
	margin-bottom: 20px;
	padding: 11px 10px;
	background: #fff;
	color: #000;
	font: 20px/30px "proxima-nova-condensed", sans-serif;
	text-align: left;
	border: 0;
	border-radius: 0;
	transition: all 0.2s;
	-webkit-appearance: none;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, textarea:focus, select:focus, button:focus {}



select {
	/*
	background-image: url(img/select.png)!important;
	background-position: right 20px center!important;
	background-size: 14px 8px!important;
	background-repeat: no-repeat!important;
	*/
}

textarea {
	height: 100px;
}

input[type=submit], button {
	display: block;
	width: auto;
	margin: 0;
	padding: 13px 20px;
	background: #000;
	color: #fff;
	font: italic 600 22px  "futura-pt-condensed", sans-serif;
	text-align: center;
	text-transform: uppercase;
	border: 0;
}
input[type=submit]:hover, button:hover {}





/* Global classes */

.left { float: left; }
.right { float: right; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }



.position-relative {
	position: relative;
}

.align-items-flex-start {
	align-items: flex-start;
}

.align-items-flex-end {
	align-items: flex-end;
}



.fluid {
	width: 100%;
	float: left;
}

.container {
	max-width: 1436px;
	margin: 0 auto;
	padding: 0 20px;
}



/* --- Text */

span.intro {
	font: italic 500 32px/38px "futura-pt-condensed", sans-serif;
}



/* --- Buttons */

a.button, button.button, span.button {
	display: inline-block;
	margin: 0 15px 15px 0;
	padding: 13px 48px 13px 20px;
	background: var(--main-red);
	color: #fff;
	font: italic 700 22px "futura-pt-condensed", sans-serif;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
}
a.button:only-child, button.button:only-child, span.button:only-child {
	margin-right: 0;
}
a.button:hover, button.button:hover, span.button:hover {
	box-shadow: -6px 6px var(--main-orange);
}



a.button.primary, button.button.primary, span.button.primary {
	background: var(--main-red) url(img/arrow-right-white.png) right 20px center/19px 16px no-repeat;
	color: #fff;
}
a.button.primary:hover, button.button.primary:hover, span.button.primary:hover {
	box-shadow: -6px 6px var(--main-orange);
}



a.button.secondary, button.button.secondary, span.button.secondary {
	background: var(--main-orange) url(img/arrow-right-white.png) right 20px center/19px 16px no-repeat;
	color: #fff;
}
a.button.secondary:hover, button.button.secondary:hover, span.button.secondary:hover {
	box-shadow: -6px 6px var(--main-red);
}



a.button.tertiary, button.button.tertiary, span.button.tertiary {
	background: #000 url(img/arrow-right-white.png) right 20px center/19px 16px no-repeat;
	color: #fff;
}
a.button.tertiary:hover, button.button.tertiary:hover, span.button.tertiary:hover {
	box-shadow: -6px 6px #fff;
}



a.button.quaternary, button.button.quaternary, span.button.quaternary {
	background: #fff url(img/arrow-right-black.png) right 20px center/19px 16px no-repeat;
	color: #000;
}
a.button.quaternary:hover, button.button.quaternary:hover, span.button.quaternary:hover {
	box-shadow: -6px 6px #000;
}



/* --- Slider */

.flickity-button {
	background: #000!important;
}
.flickity-button:disabled {
	opacity: 0.3!important;
}

.flickity-prev-next-button {
	top: auto!important;
	bottom: -92px!important;
	width: 52px!important;
	height: 52px!important;
	padding: 0;
	border-radius: 0!important;
	transform: none!important;
}

.flickity-prev-next-button.previous {
	right: 22px!important;
	left: auto!important;
	background: #000 url(img/arrow-left-white.svg) center/19px 16px no-repeat!important;
}

.flickity-prev-next-button.next {
	right: -40px!important;
	background: #000 url(img/arrow-right-white.svg) center/19px 16px no-repeat!important;
}



.flickity-prev-next-button .flickity-button-icon {
	display: none;
}



/* --- Block */

.block {
	float: left;
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 35px 40px 40px;
	overflow: hidden;
}

.block.mmlm-card {
	background: transparent;
}

.block.brown {
	background: #eedcc5;
}

.block.gradient {
	background: var(--main-red);
	background: linear-gradient(45deg, var(--main-red) 1%, var(--main-orange) 100%);
	color: #fff;
}

.block.gradient h2 {
	color: #fff;
}



/* --- Accordion */

.accordion {
	float: left;
	width: 100%;
	margin: 0!important;
}

.accordion > li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #000;
	list-style: none!important;
}

.accordion > li .accordion-control {
	position: relative;
	padding: 32px 72px 32px 0;
	cursor: pointer;
}
.accordion > li .accordion-control:before {
	position: absolute;
	top: 20px;
	right: 0;
	width: 52px;
	height: 52px;
	background: #000 url(img/arrow-down-white.png) center/16px 19px no-repeat;
	content: " ";
	transition: box-shadow 0.2s;
}
.accordion > li .accordion-control:hover:before {
	box-shadow: -5px 5px #fff;
}

.accordion li .accordion-control.open {}
.accordion li .accordion-control.open:before {
	background-image: url(img/arrow-up-white.png);
}

.accordion li .accordion-control h4 {
	margin-bottom: 0;
	font-size: 24px;
	line-height: 28px;
}

.accordion li .accordion-panel {
	display: none;
	padding: 0 0 20px;
}



/* --- Form */

.gform_required_legend {
	display: none;
}


.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	padding: 11px 10px!important;
	font-size: 20px!important;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 19px !important;
    line-height: 1.2em !important;
}



/* --- Grid Builder */

/*
.wpgb-facet .wpgb-facet-title {
	margin-bottom: 20px!important;
}



.wpgb-facet .wpgb-input, .wpgb-facet select.wpgb-select {
	min-height: 51px!important;
	padding: 5px 20px!important;
	background: #fff!important;
	font-size: 15px!important;
	line-height: 138%!important;
	border: 0!important;
	border-radius: 10px!important;
}

.wpgb-facet .wpgb-autocomplete-facet .wpgb-input, .wpgb-facet .wpgb-date-facet .wpgb-input, .wpgb-facet .wpgb-search-facet .wpgb-input {
	text-indent: 0!important;
}

.wpgb-facet .wpgb-input-icon {
	display: none;
}

.wpgb-facet .wpgb-geolocation-facet .wpgb-input {
	text-indent: 0!important;
	border-radius: 20px!important;
}



.wpgb-facet .wpgb-checkbox-facet .wpgb-checkbox-control {
	width: 22px!important;
	height: 22px!important;
	border-color: #001433!important;
	border-width: 1px!important;
	border-radius: 5px!important;
}

.wpgb-facet .wpgb-checkbox-facet .wpgb-checkbox[aria-pressed="true"] .wpgb-checkbox-control {
	border-color: #001433!important;
	background-color: #001433!important;
}
.wpgb-facet .wpgb-checkbox-facet .wpgb-checkbox[aria-pressed="true"] .wpgb-checkbox-control:after {
	border-color: #fff!important;
}



.wpgb-facet .wpgb-geo-radius {
	min-height: 51px;
	margin-top: 20px!important;
	line-height: 51px!important;
}

.wpgb-facet .wpgb-geolocation-facet label {
	background: var(--main-color-blue);
	color: #fff;
	border-radius: 20px;
}

.wpgb-facet .wpgb-geo-radius input {
	width: 70%!important;
	margin: 0 15px 0 -4px!important;
	padding: 0 20px!important;
	background: #fff;
	font-weight: 400!important;
	text-align: left!important;
	border-radius: 20px 0 0 20px!important;
	box-shadow: none!important;
}



.wpgb-facet button.wpgb-button {
	padding: 14px 32px!important;
	font-weight: 600!important;
	font-size: 18px!important;
	line-height: 20px!important;
	border-radius: 24px!important;
}



.wpgb-facet .wpgb-pagination {
	margin: 0 auto!important;
}

.wpgb-facet .wpgb-pagination li {
	height: 50px!important;
	background: none;
	font-size: 20px!important;
	line-height: 50px!important;
}

.wpgb-facet .wpgb-pagination li a, .wpgb-facet .wpgb-pagination li a:hover {
	padding: 0 22px!important;
	background: #DFF3FF;
	color: var(--main-color-blue)!important;
	font-size: 21px!important;
	line-height: 56px!important;
	border-radius: 28px;
}
.wpgb-facet .wpgb-pagination li a[aria-current] {
	background: var(--main-color-blue);
	color: #fff!important;
}

.wpgb-facet .wpgb-pagination li span {
	line-height: 50px;
}
*/



/* --- Cover */

.cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* --- Video */

.video-container {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	margin-bottom: 0;
	padding-bottom: 56.25%;
	padding-top: 0;
	background: #000;
	overflow: hidden;
}

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



/* --- Labels */

span.label {
	display: inline-block;
	margin: 0 10px 10px 0;
	padding: 3px 12px;
	background: #EBF7FF;
	color: #0F1E33;
	font-size: 13px;
	line-height: 185%;
	border-radius: 15px;
}

span.label.loc {
	background: #FFF3E8;
}

span.label img {
	float: left;
	margin: 7px 7px 0 0!important;
}





/* Header */

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	background: #fff;
	z-index: 101;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.06);
}

#header .container {
	max-width: 1616px;
}

#header .row {
	height: 110px;
}



#logo {
	float: left;
	margin-top: 20px;
}

#logo img {
	float: left;
}



#spacer {
	width: 100%;
	height: 110px;
}



/* --- Nav */

.nav {}

.nav ul {}

.nav ul li {
	position: relative;
	display: inline-block;
	margin-left: 30px;
	padding: 29px 0;
	font: italic 700 24px/52px "futura-pt-condensed", sans-serif;
	text-transform: uppercase;
}

.nav ul li a {
	display: inline-block;
}
.nav ul li a:hover {
	color: var(--main-orange);
}

.nav ul li.current-menu-item a {
	color: var(--main-orange);
}



/* Zorg dat het uitlog-icoon exact op dezelfde hoogte uitlijnt als de overige menu-items */

/*
.nav ul li.menu-item-logout a {
	display: inline-flex;           /* zelfde blokhoogte, verticaal centreren
	align-items: center;
	padding: 26px 0;               /* gelijk aan reguliere menu-links
	line-height: 1;                /* vermijd baseline verschuiving
}

.nav ul li.menu-item-logout {       /* lijn dit item verticaal uit met de tekst-items
	vertical-align: middle;
}

.nav ul li.menu-item-logout svg {
	display: block;                /* geen extra lijnhoogte rondom het icoon
	width: 18px;
	height: 18px;
}
*/



.nav ul li.button a {
	padding: 0 20px;
	background: var(--main-orange);
	color: #fff;
	text-align: center;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: all 0.2s;
}
.nav ul li.button a:hover {
	box-shadow: -6px 6px var(--main-red);
}

.nav ul li.button.border a {
	padding: 0 19px;
	background: transparent;
	color: #000;
	line-height: 50px;
	border: 1px solid #000;
}
.nav ul li.button.border a:hover {
	box-shadow: -6px 6px #000;
}



/* --- Subnav */

/*
.nav ul li ul {
	display: none;
	position: absolute;
	top: 70px;
	left: -20px;
	width: 260px;
	height: auto;
	padding: 8px 20px;
	background: #fff;
	font: 500 17px/22px "futura-pt-condensed", sans-serif;
	text-align: left;
	text-transform: none;
	border-radius: 10px;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}
.nav ul li ul:before {
	position: absolute;
	top: -10px;
	left: 20px;
	display: block;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
	content: " ";
}
.nav ul li:hover ul {
	display: block;
}

.nav ul li ul li {
	width: 100%;
	margin: 0;
	padding: 8px 0;
}

.nav ul li ul li a {
	display: inline-block;
	width: 100%;
	padding: 0;
	color: var(--main-color-blue);
	transition: all 0.2s;
}
.nav ul li ul li a:hover {
	color: var(--main-color-orange);
}
*/





/* Specifieke styling voor het Account dropdown-menu (zwart met witte tekst en subtiele scheiding)
   Let op: font van generieke submenu (.nav ul li ul { font: ... }) kan typografie overschrijven.
   Daarom gebruiken we hieronder eigen CSS-variabelen met hogere specificiteit, zodat de
   Account-submenu typografie los te regelen is, zonder !important. Je kunt deze variabelen
   eventueel overschrijven op .nav ul li.menu-item-account of globaler indien gewenst.
   Voorbeeld override:
   .nav ul li.menu-item-account { --mm-acc-submenu-font-size: 12px; --mm-acc-submenu-line-height: 1.2; }
*/
.nav ul li.menu-item-account > a {
	display: inline-flex;            /* Zorgt dat tekst en caret netjes uitlijnen */
	align-items: center;
}
.nav ul li.menu-item-account > a .mm-account-caret {
	opacity: 1;                      /* Volledig wit pijltje */
	color: #fff;                     /* Witte caret naast “Account” */
	margin-left: 6px;                /* Ruimte rechts naast het woord */
}
/* Iets meer ruimte tussen het woord "Account" en de pijltje-SVG */
.nav ul li.menu-item-account > a svg {
	margin-left: 10px;
}
.nav ul li.menu-item-account {
	/* Typografie-variabelen voor het Account-submenu (vrij aanpasbaar) */
	--mm-acc-submenu-font-size: 16px;
	--mm-acc-submenu-line-height: 1.0;
	--mm-acc-submenu-pad-y: 2px;
	--mm-acc-submenu-pad-x: 12px;
}

/* Hogere specificiteit via extra class die we aan het submenu meegeven in functions.php */
.nav ul li.menu-item-account ul.sub-menu,
.nav ul li.menu-item-account ul.mm-account-submenu {
	background: #000;                /* volledig zwart */
	border-radius: 0;                /* rechte hoeken */
	box-shadow: none;                /* geen schaduw, strak */
	right: 0;                        /* rechterzijde exact gelijk met rechterzijde hoofdknop */
	left: auto;                      /* override eventuele left-positionering */
	top: 100%;                       /* direct aansluiten op hoofditem */
	padding: 0;                      /* geen binnenruimte, items bepalen spacing */
	margin: 0;                       /* geen externe marge/gap */
	z-index: 5;                      /* boven oranje knop renderen */
	text-align: left;                /* alle items links uitlijnen */
	font-size: var(--mm-acc-submenu-font-size, 10px);     /* onafhankelijk regelbaar */
	line-height: var(--mm-acc-submenu-line-height, 1.0);  /* onafhankelijk regelbaar */

	display: none;
	position: absolute;
	top: 110px;
	width: 200px;
}
.nav ul li.menu-item-account:hover ul.mm-account-submenu {
	display: block;
}

.nav ul li.menu-item-account ul.sub-menu:before,
.nav ul li.menu-item-account ul.mm-account-submenu:before {
	content: none;                   /* geen pijltje */
	display: none;
	border: 0;
}
.nav ul li.menu-item-account ul.sub-menu li,
.nav ul li.menu-item-account ul.mm-account-submenu li {
	margin: 0;                       /* geen extra gap */

	width: 100%;
	padding: 0;
	font-size: 20px;
}
.nav ul li.menu-item-account ul.sub-menu li + li,
.nav ul li.menu-item-account ul.mm-account-submenu li + li {
	border-top: 2px solid rgba(255,255,255,0.25); /* dikker, beter zichtbaar wit lijntje */
}
.nav ul li.menu-item-account ul.sub-menu a,
.nav ul li.menu-item-account ul.mm-account-submenu a {
	display: block;                  /* gehele rij klikbaar */
	padding: var(--mm-acc-submenu-pad-y, 2px) var(--mm-acc-submenu-pad-x, 12px); /* onafhankelijk regelbaar */
	color: #fff;                     /* witte tekst */
	background: transparent;         /* geen oranje achtergrond meenemen */
	text-align: left;                /* forceer links uitlijnen */
}
.nav ul li.menu-item-account ul.sub-menu a:hover,
.nav ul li.menu-item-account ul.mm-account-submenu a:hover {
	color: #f7941f;                  /* oranje in hover */

	box-shadow: none;
}





/* --- Mobile menu */

#add-material, #toggle-menu {
	display: none;
	position: absolute;
	top: 40px;
	width: 40px;
	height: 40px;
}

#toggle-menu span, #add-material span {
	position: absolute;
	left: 10px;
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}



#add-material {
	right: 90px;
	background: var(--main-red);
	box-shadow: -5px 5px var(--main-orange);
	transition: box-shadow 0.2s;
}
#add-material:hover {
	box-shadow: none;
}

#add-material span {
	left: 10px;
}
#add-material span:nth-child(1) {
	top: 19px;
}
#add-material span:nth-child(2) {
	top: 19px;
	rotate: 90deg;
}



#toggle-menu {
	right: 30px;
	background: #000;
	cursor: pointer;
	transition: background 0.2s;
}
#toggle-menu.open {
	background: var(--main-red);
}

#toggle-menu span {
	transform: rotate(0deg);
	transition: 0.2s ease-in-out;
}
#toggle-menu span:nth-child(1) {
	top: 11px;
}
#toggle-menu span:nth-child(2) {
	top: 27px;
}
#toggle-menu span:nth-child(3) {
	top: 19px;
}
#toggle-menu.open span:nth-child(1) {
	top: 19px;
	transform: rotate(45deg);
}
#toggle-menu.open span:nth-child(2) {
	top: 19px;
	transform: rotate(-45deg);
}
#toggle-menu.open span:nth-child(3) {
	display: none;
}



#mobile-menu {
	display: none;
	position: fixed;
	top: 110px;
	left: 0;
	width: 100%;
	height: calc(100vh - 110px);
	padding: 60px 20px;
	background: var(--main-red);
	background: linear-gradient(45deg, var(--main-red) 1%, var(--main-orange) 100%);
	font: italic 700 28px/42px "futura-pt-condensed", sans-serif;
	text-transform: uppercase;
	overflow-y: scroll;
	z-index: 100;
}

#mobile-menu ul {}

#mobile-menu ul li {
	float: left;
	width: 100%;
}

#mobile-menu ul li a {
	color: #fff;
}

#mobile-menu ul li a svg {
	display: inline-block;
	margin: -6px 0 0 10px;

	display: none;
}

#mobile-menu ul li ul {
	background: #000;
	padding: 10px 15px;
	font-weight: 500;
	font-size: 20px;
	line-height: 32px;
	text-transform: none;

	display: none;
}



#mobile-menu ul li.button {
	width: 50%;
	margin-top: 30px;
	padding-left: 10px;
	font-size: 24px;
}

#mobile-menu ul li.button.border {
	padding-right: 10px;
	padding-left: 0;
}

#mobile-menu ul li.button a {
	width: 100%;
	display: inline-block;
	padding: 4px 20px;
	background: #fff;
	color: #000;
	text-align: center;
	text-decoration: none;
	border: 0;
}

#mobile-menu ul li.button.border a {
	padding: 3px 19px;
	background: transparent;
	color: #000;
	border: 1px solid #000;
}





/* Content */

#content {
	float: left;
	width: 100%;
	padding: 100px 0;
}

#content p {
	margin-bottom: 20px;
}

#content p a:not(.button) {
	color: var(--main-orange);
	text-decoration: underline;
}
#content p a:not(.button):hover {
	text-decoration: none;
}



#content ul:not(.flex), #content ol:not(.flex) {
	margin: 0 0 20px 20px;
}

#content ul:not(.flex) {
	list-style: disc;
}

#content ul:not(.flex) li {}
#content ul:not(.flex) li::marker {
	color: var(--main-orange);
}

#content ol:not(.flex) {
	list-style: numeric;
}

#content ol:not(.flex) li {}



#content img {}



#content blockquote {
	margin-bottom: 20px;
	padding-top: 65px;
	background: url(img/quote.png) left top/41px 40px no-repeat;
	font: italic 500 32px/38px "futura-pt-condensed", sans-serif;
}





/* Pagebuilder */

#content > section {
	padding: 80px 0;
}

#content section.custom-background {}

#content section.same-bg-as-prev {
	padding-top: 0!important;
}





#content section .title {
	margin-bottom: 55px;
}





#content section.banner {
	position: relative;
	width: 100%;
	padding: 0;
	background: var(--main-red);
	background: linear-gradient(45deg, var(--main-orange) 1%, var(--main-red) 100%);
	color: #fff;

	/* overflow: hidden; */
}
#content section.banner:after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 20px;
	background: none;
	content: " ";
}

#content section.banner.has-image {
	background: linear-gradient(45deg, var(--main-red) 1%, var(--main-orange) 50%);
}


#content section.banner h1, #content section.banner h2, #content section.banner h3, #content section.banner h4 {
	color: #fff;
}


#content section.banner .container {
	position: relative;
}

#content section.banner .container .row {
	align-items: stretch;
}

#content section.banner .container .row .col {
	min-height: 200px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#content section.banner .container .row .col .content {
	padding: 80px 0;
	font-size: 22px;
	line-height: 36px;
}

#content section.banner .container .row .col .content ul, #content section.banner .container .row .col .content ol {
	margin-bottom: 50px!important;
	margin-left: 0!important;
	list-style: none!important;
}

#content section.banner .container .row .col .content ul li {
	padding-left: 30px;
	background: url(img/li-check.png) left 11px/22px 16px no-repeat;
}



#content section.banner .container .cover {
	right: 30px;
	left: auto;
	width: 136px;
	height: 100%;
	background: url(img/banner-cover.svg) center/cover no-repeat;
}



@keyframes slide-in {
	from {
		translate: 150vw 0;
		scale: 200% 1;
	}

	to {
		translate: 0 0;
		scale: 100% 1;
	}
}

@keyframes rotate {
	0% {
		rotate: 0deg;
	}

	60% {
		rotate: -20deg;
	}

	100% {
		rotate: 0deg;
	}
}

#content section.banner .container .popup {
	position: relative;
	width: 377px;
	height: 104px;
	position: absolute;
	right: 30px;
	bottom: 80px;
	background: #fff;
	z-index: 1;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.16);

	animation-name: slide-in;
	animation-duration: 1.5s;
}

#content section.banner .container .popup .thumb {
	float: left;
	width: 104px;
	height: 104px;
	background: var(--main-red);
	background: linear-gradient(315deg, var(--main-orange) 1%, var(--main-red) 100%);
}

#content section.banner .container .popup .thumb img {
	width: 110px;
	height: 130px;
	margin-top: -30px;
	transition: rotate 0.2s;

	animation-name: rotate;
	animation-delay: 1.5s;
	animation-duration: 0.5s;
}
#content section.banner .container .popup .thumb img:hover {
	rotate: -20deg;
}



#content section.banner .container .popup .text {
	float: left;
	width: calc(100% - 104px);
	padding: 13px 20px;
	color: #000;
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
}





#content section.contentrow {}

#content section.contentrow .col {
	position: relative;
}


#content section.contentrow.text-text {}
#content section.contentrow.img-img {}
#content section.contentrow.text-img {}
#content section.contentrow.img-text {}





#content section.faq-accordeon {}

#content section.faq-accordeon .filters {}

#content section.faq-accordeon .filters ul {
	margin: 0 0 10px 0;
	overflow: hidden;
}

#content section.faq-accordeon .filters ul li {
	list-style: none;
}

#content section.faq-accordeon .filters ul li a {
	float: left;
	display: block;
	margin: 0 10px 10px 0;
	padding: 0 20px;
	line-height: 52px;
	background: rgb(0 0 0 / 5%);
	font-weight: 600;
	font-size: 20px;
	border-radius: 26px;
	transition: all 0.2s;
}
#content section.faq-accordeon.custom-background .filters ul li a {
	background: rgba(0, 0, 0, 0.3);
}
#content section.faq-accordeon .filters ul li a:hover {
	background: var(--main-red);
	color: #fff;
}

#content section.faq-accordeon .filters ul li.active a {
	background: #fff;
	color: #000;
}





#content section.contactform {}

#content section.contactform .container {
	padding: 40px;
	background: var(--main-orange);
}





#content section.quote-logo-slider {
	padding: 80px 0 150px;
}

#content section.quote-logo-slider .block {
	padding: 20px 40px;
	overflow: visible;
}

#content section.quote-logo-slider .block blockquote {
	margin-bottom: 40px;
}



#content section.quote-logo-slider .quote-slider {}

#content section.quote-logo-slider .quote-slider .slide {
	float: left;
	width: 100%;
}



#content section.quote-logo-slider .logo-slider {
	position: relative;
}
#content section.quote-logo-slider .logo-slider:before, #content section.quote-logo-slider .logo-slider:after {
	position: absolute;
	top: 0;
	width: 160px;
	height: 100%;
	z-index: 1;
	content: " ";
}
#content section.quote-logo-slider .logo-slider:before {
	left: 0;
	background: url(img/logoslider-shade-left.png) center/160px 1px repeat-y;
}
#content section.quote-logo-slider .logo-slider:after {
	right: 0;
	background: url(img/logoslider-shade-right.png) center/160px 1px repeat-y;
}

#content section.quote-logo-slider .logo-slider.second {
	margin-top: 80px;
}

#content section.quote-logo-slider .logo-slider .slide {
	float: left;
	width: 240px;
	padding: 0 40px;
	background: #fef7ed;
	text-align: center;
}

#content section.quote-logo-slider .logo-slider .slide img {
	width: auto;
	height: 60px;
	margin: 0 auto;
	mix-blend-mode: luminosity;
	opacity: 0.5;
	transition: all 0.2s;
}
#content section.quote-logo-slider .logo-slider .slide img:hover {
	mix-blend-mode: unset;
	opacity: 1;
}





#content section.logo-slider {}

#content section.logo-slider .slider {}

#content section.logo-slider .slider .slide {
	float: left;
	width: 240px;
	padding: 0 40px;
	background: #fef7ed;
	text-align: center;
}

#content section.logo-slider .slider .slide img {
	width: auto;
	height: 60px;
	margin: 0 auto;
	mix-blend-mode: luminosity;
	opacity: 0.5;
	transition: all 0.2s;
}
#content section.logo-slider .slider .slide img:hover {
	mix-blend-mode: unset;
	opacity: 1;
}





#content section.product-slider {}

#content section.product-slider .slider {}

#content section.product-slider .slider .slide {
	float: left;
	width: 334px;
	margin-right: 20px;
}

#content section.product-slider .slider .slide .image {
	float: left;
	width: 100%;
}

#content section.product-slider .slider .slide .image img {
	float: left;
	width: 100%;
}

#content section.product-slider .slider .slide .content {
	float: left;
	width: 100%;
	padding: 20px;
	border: 1px solid #000;
	border-top: 0;
}

#content section.product-slider .slider .slide h4 {
	font: 600 20px/26px "proxima-nova-condensed", sans-serif;
	text-transform: none;
}

#content section.product-slider .slider .slide .cat-icon {
	float: left;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	border-radius: 100%;
	overflow: hidden;
}

#content section.product-slider .slider .slide .cat-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#content section.category-slider .slider .slide .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}





#content section.category-slider {}

#content section.category-slider .slider {}

#content section.category-slider .slider .slide {
	float: left;
	width: 160px;
	margin-right: 14px;
	padding: 0 20px;
	text-align: center;
}

#content section.category-slider .slider .slide h4 {
	font: 400 18px/30px "proxima-nova-condensed", sans-serif;
	text-transform: none;
}

#content section.category-slider .slider .slide .image {
	float: left;
	width: 120px;
	height: 120px;
	background: #fff;
	margin-bottom: 10px;
	border-radius: 100%;
}





#content section.steps {
	padding: 80px 0 40px;
}

#content section.steps .step {
	margin-bottom: 40px;
}

#content section.steps .step div {
	float: left;
	width: 100%;
}

#content section.steps .step div h4 {
	margin-bottom: 5px;
}

#content section.steps .step .number {
	width: auto;
	height: 52px;
	margin: 0 0 18px 6px;
	padding: 0 20px;
	background: #000;
	color: #fff;
	font-style: italic;
	font-weight: 700;
	font-size: 24px;
	line-height: 52px;
	text-align: center;
	box-shadow: -6px 6px var(--main-red);
}





#content section.blocks {
	padding: 80px 0 40px;
}

#content section.blocks .block {
	position: relative;
	height: auto;
	margin-bottom: 40px;
	padding: 65px 40px 25px;
	overflow: visible;
}

#content section.blocks .block img {
	position: absolute;
	top: -30px;
	left: 40px;
	width: auto;
	height: 60px;
}

#content section.blocks .block h3 {
	margin-bottom: 15px;
}

#content section.blocks .block ul, #content section.blocks .block ol {
	margin-left: 0!important;
	list-style: none!important;
}

#content section.blocks .block ul li {
	padding-left: 27px;
	background: url(img/li-check-orange.png) left 9px/18px 13px no-repeat;
}





/* Pages */

.mm-materialen-wrap {}

.mm-materialen-wrap .block {
	padding: 0;
}


.materiaal-vue-component {}
.materiaal-vue-component:first-child:not(:only-child) {
	margin-bottom: 80px;
}



/* --- Overzicht */

.mm-materialen-wrap aside {}

.mm-materialen-wrap aside input {
	margin-bottom: 0;
}

.mm-materialen-wrap button {
	font-style: normal;
}


.mm-materialen-wrap article {
	font-size: 18px;
	line-height: 26px;
}




.container.grid {
	padding: 0;
}




/* --- Detail */

.mm-materialen-wrap {}

.mm-materialen-wrap .materiaal-vue-component {}
.mm-materialen-wrap .materiaal-vue-component:last-child {
	margin-bottom: 80px;
}



/*
.mm-materialen-wrap .materiaal-vue-component[data-component=MmMaterialsDetail] {}

.mm-materialen-wrap .materiaal-vue-component[data-component=MmMaterialsDetail] h2 {
	font-size: 22px!important;
	line-height: 26px!important;
}

.mm-materialen-wrap .materiaal-vue-component[data-component=MmMaterialsDetail] h3 {
	font-size: 22px!important;
	line-height: 26px!important;
}
*/





/* Footer */

#footer {
	position: relative;
	background: #feedd8;
	font-size: 17px;
	line-height: 36px;
}

#footer a {}
#footer a:hover {
	color: var(--main-orange);
}

#footer .container {
	padding-top: 80px;
	padding-bottom: 80px;
	background: url(img/footer-map.png) right bottom 40px/334px 395px no-repeat;
}





#footer #links .col {}
#footer #links .col:last-child {
	padding-top: 36px;
}



#footer #links h3 {
	margin-bottom: 10px;
	font-style: italic;
	font-weight: 700;
	font-size: 22px!important;
	line-height: 26px!important;
}

#footer #links a.button {
	padding: 5px 10px;
	background-image: none;
	color: #fff;
	font: normal 400 17px "proxima-nova-condensed", sans-serif;
	text-transform: none;
}
#footer #links a.button:hover {
	box-shadow: -4px 4px #fff;
}

#footer #links a.button svg {
	margin-left: 5px;
	transition: all 0.2s;
}
#footer #links a.button:hover svg {
	margin-left: 8px;
}



#footer #links .widgettitle {}

#footer #links .textwidget {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}





#footer #socials {
	margin-bottom: 70px;
}

#footer #socials a {
	float: left;
	display: block;
	width: 52px;
	height: 52px;
	margin-right: 10px;
	background: #000;
	color: #fff;
	font-size: 28px;
	line-height: 52px;
	text-align: center;
}
#footer #socials a:hover {
	box-shadow: -6px 6px #fff;
}



#footer #socket {}

#footer #socket ul {}

#footer #socket ul li {
	display: inline;
	margin: 0 20px 0 0;
	white-space: nowrap;
}



/* --- Floater */

#floater {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 129px;
	height: 80px;
	background: url(img/floater.png) center/cover no-repeat;
	color: #fff;
	cursor: pointer;
	z-index: 99;
}

#floater span {
	position: absolute;
	top: -3px;
	left: -3px;
	width: 26px;
	height: 26px;
	background: var(--main-red);
	color: #fff;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	border-radius: 100%;
	transition: background 0.2s;
}
#floater:hover span {
	background: var(--main-orange);
}

#floater #popup {
	position: absolute;
	bottom: 0;
	right: 100px;
	right: 149px;
	display: none;
	width: 270px;
	height: 152px;
	padding: 20px;
	background: var(--main-red);
	background: linear-gradient(90deg, var(--main-red) 1%, var(--main-orange) 100%);
	color: #fff;
	box-shadow: 0 3px 20px 0 rgba(0, 0 ,0 , 0.2);
}
#floater #popup:after {
	position: absolute;
	right: -11px;
	bottom: 28px;
	display: block;
	width: 0;
	height: 0;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 11px solid var(--main-orange);
	content: " ";
}

#floater #popup h5 {
	color: #fff;
	font-size: 22px;
	line-height: 20px;
}

#floater #popup p {
	margin-bottom: 10px;
}

#floater #popup a.button {
	float: left;
	width: calc(50% - 5px);
	margin: 0;
	padding: 12px 0;
	background-image: none;
	font: normal 400 20px "proxima-nova-condensed", sans-serif;
	text-transform: none;
}
#floater #popup a.button:first-of-type {
	margin-right: 5px;
}
#floater #popup a.button:last-of-type {
	margin-left: 5px;
}





/* CMS */

img.alignright, a img.alignright { float: right; margin: 0 0 20px 20px; }
img.alignleft, a img.alignleft { float: left; margin: 0 20px 20px 0; }
img.aligncenter, a img.aligncenter { display: block; margin: 0 auto 20px; }





/* Responsive */

@media screen and (max-width: 1435px) {

	.nav ul li {
		margin-left: 22.5px;
		font-size: 21px;
	}



	#content section.contactform {
		padding: 0;
	}

}



@media screen and (max-width: 1199px) {

	.nav ul li {
		margin-left: 15px;
		font-size: 18px;
	}

}



@media screen and (max-width: 959px) {

	#toggle-menu, #add-material {
		display: block;
	}



	#content section.banner {
		padding-bottom: 80px;
	}

	#content section.banner .container .row .col .content {
		padding: 80px 0 40px;
	}

	#content section.banner .container .cover, #content section.banner .container .popup {
		display: none;
	}


	#content section.quote-logo-slider .block {
		margin-bottom: 152px;
	}

	#content section.contentrow .col:first-child {
		padding-bottom: 40px;
	}

}



@media screen and (max-width: 767px) {

	h1 { font-size: 52px!important; line-height: 58px!important; }
	h2 { font-size: 34px!important; line-height: 40px!important; }
	h3 { font-size: 30px!important; line-height: 36px!important; }
	h4 { font-size: 23px!important; line-height: 27px!important; }



	.accordion > li .accordion-control {
		padding: 32px 60px 32px 0;
	}
	.accordion > li .accordion-control:before {
		top: 26px;
		width: 40px;
		height: 40px;
	}



	#footer .container {
		background-image: none;
	}

}



@media screen and (max-width: 567px) {

	#content section.quote-logo-slider .logo-slider:before, #content section.quote-logo-slider .logo-slider:after {
        display:none;
    }



	#footer #links .col {}
	#footer #links .col:last-child {
		padding-top: 0;
	}


	#floater {
		bottom: 20px;
		right: 20px;
	}

	#floater #popup {
		bottom: 100px;
		right: 0;
	}
	#floater #popup:after {
		right: 28px;
		bottom: -22px;
		border-top: 11px solid #f38723;
		border-right: 11px solid transparent;
		border-left: 11px solid transparent;
	}

}



@media screen and (max-width: 479px) {

	h1 { font-size: 46px!important; line-height: 40px!important; }
	h2 { font-size: 30px!important; line-height: 36px!important; }
	h3 { font-size: 28px!important; line-height: 34px!important; }
	h4 { font-size: 22px!important; line-height: 26px!important; }

}








@media screen and (min-width: 480px) {

}



@media screen and (min-width: 568px) {

}



@media screen and (min-width: 768px) {

}



@media screen and (min-width: 960px) {

	#mobile-menu {
		display: none!important;
	}



	#content section.contentrow .col:first-child {
		padding-right: 40px;
	}
	#content section.contentrow .col:last-child {
		padding-left:40px;
	}

}



@media screen and (min-width: 1200px) {

	#content section.blocks .col {
		padding: 0 40px;
	}

	#content section.steps .col {
		padding: 0 40px;
	}

}
