g/*r
Theme Name: Ondigital theme Child
Theme URI: https://weareon-it.nl/
Template: on-theme
Author: Ondigital
Author URI: https://weareon-it.nl
Description: Algemeen thema voor ondigital websites
Version: 1.0.0
Text Domain: on-theme-child

/* algemeen */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');

/* This CSS needs to be above the root! */

.woocommerce-cart .pagina.archive.archive-header {
	display: none !important;
}

.logo-white {
	display: block;
	transition: all ease-in-out 0.5s;
}

.archive.archive-header {
	text-align: center;
	background-position: top;
}

.intro-category__content h1 {
	text-transform: uppercase;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

:root {
	--primary-green: #78AE04;
    --primary-green--hover: #588100;
	--grey: #DFDBD1;
	--light-grey: #F5F5F5;
	--dark-grey: #222222;
	--text: #111111;
	--light-text: #646464;
	--black: #000;
	--white: #fff;
	
	--ff-heading: "museo", serif;
	--ff-text: 'Roboto Slab', sans-serif;
}

* {
	font-family: 'Roboto Slab', sans-serif;
}


/* Custom CSS */
.outer__container {
	width: 90%;
    margin: 0 auto;
}


/* Custom Buttons */
.btn {
    padding: 15px 30px;
    color: var(--white);
	font-family: var(--ff-heading);
    font-weight: 700;
    border-radius: 3px;
    border: 1.5px solid transparent;

    transition: all 150ms ease-in;
}

a.btn {
    padding: 15px 30px;

    transition: all 150ms ease-in;
}

.btn:hover, a.btn:hover {
    scale: 1.025;
    opacity: 1;
}

.btn--primary {
    background-color: var(--primary-green);
}

.btn--primary:hover {
    background-color: var(--primary-green--hover);
}

.btn--outline-white {
	color: var(--white);
	background-color: transparent;
	border-color: var(--white);
}

.btn--outline-white:hover {
    color: var(--text);
    background: var(--white);
}

.btn--outline-black {
	color: var(--text);
	background-color: transparent;
	border-color: var(--text);
}

.btn--outline-black:hover {
    color: var(--white);
    background: var(--dark-grey);
}

.btn--arrow-right, a.btn--arrow-right {
    position: relative;
    width: max-content;
    padding-left: 0;
    padding-right: 15px;
    color: var(--text);
}

.btn--arrow-right:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    content: "\f054";
	color: var(--text);
	font: var(--fa-font-solid);
	font-size: 0.75rem;
}

/* Links */
a {
	transition: color 150ms ease-in;
}

a:hover {
    color: var(--white);
	text-decoration: none;
}

p a:hover {
	color: var(--primary-green);
}


li a {
	color: var(--text);
}

li a:hover {
	color: var(--primary-green);
}

.sitemap {
	display: grid;
	grid-template-columns: 1fr;
	margin-bottom: 60px;
}

@media screen and (min-width: 992px) { 
	.sitemap {
		grid-template-columns: 1fr 1fr;
	}
}


/* Gaps */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem; 
}

.gap-4 {
	gap: 1rem;
}

.gap-5 {
    gap: 1.5rem;
}

.gap-6 {
    gap: 2rem;
}



/* Object fits */
.object-fit-contain {
    object-fit: contain !important;
}

/* Titles */
.green__subtitle {
    color: var(--primary-green);
    font-family: var(--ff-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}



/* Custom footer */
.footer {
	position: relative;
	background-color: var(--black);
	color: var(--white);
}

.footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url(/wp-content/uploads/2023/12/beton-overlay-scaled.jpg);
	opacity: 0.2;
}

@media screen and (min-width: 992px) { 
	.footer__content {
		gap: 6rem;
	}
}

.footer__information {
	position: relative;
}

.footer__information::before {
	content: "";
	z-index: -1;
	position: absolute;
	left: -100%;
	width: 200%;
	height: 100%;
	background-color: var(--dark-grey);
	border-radius: 0px 5px 5px 0px; 
}

.footer__title {
	margin: 40px 0;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 27px; 
}

.guarantees__list {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 20px;
}

@media screen and (min-width: 992px) {
	.guarantees__list {
		grid-template-columns: 1fr 1fr;
	}
}

.footer__guarantee {
	display: flex;
	justify-content: flex-start;
	gap: 0.5rem;
}

.guarantee__phone, .guarantee__message {
	display: flex;
	text-decoration: underline;
}

.guarantee__phone::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/wp-content/uploads/2023/12/mingcute_phone-fill.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.guarantee__message::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/wp-content/uploads/2023/12/ic_baseline-whatsapp.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.guarantee__availability::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/wp-content/uploads/2023/12/fa6-solid_clock.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.guarantee__chat::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/wp-content/uploads/2023/12/text-bubble.svg);
	background-repeat: no-repeat;
	background-size: cover;
}



.footer__link__list {
	width: min-content;
	margin-top: 40px;

	& div {
		margin-bottom: 1rem;
		font-size: 20px;
		font-style: normal;
		font-weight: 600;
		line-height: 27.2px;
	}
}

a.social-icon-single {
	border-radius: 2px;
	background-color: var(--primary-green);

	transition: color 150ms ease-in-out;
}

a.social-icon-single:hover {
	background-color: var(--dark-grey);
}

/* Custom Frontpage */
.frontpage__header {
	position: relative;
	z-index: 2;
	padding: 0;
    margin: 0;
}

.header__hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 900px;
	padding: 0;
}

.hero__image {
	position: relative;
	height: 100%;
	width: 100%;

	& span {
		position: absolute;
		inset: 0;
		background-color: var(--black);
		opacity: 0.5;
	}

	& img {
		height: 100%;
		object-fit: cover;
	}
}

.hero__content {
	color: white;
}

.hero__titles {
	position: absolute;
	top: 12%;
	left: 8%;
	width: 90%;
}

@media screen and (min-width: 992px) {
	.hero__titles {
		top: 20%;
		width: 70%;
	}
}

.hero__subtitle {
	font-family: var(--ff-heading);
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px; 
}

@media screen and (min-width: 768px) {
	.hero__subtitle {
		font-size: 40px;
		line-height: 50px; 
	}
}

.hero__title {
	font-family: var(--ff-heading);
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
}

@media screen and (min-width: 768px) {
	.hero__title {
		font-size: 60px;
		line-height: 60px;
	}
}


.hero__usps__list {
	flex-wrap: wrap;
	padding: 0;
	margin-top: 2rem;
	list-style-type: none;
}

.usp__item {
	margin-right: 20px;
	margin-bottom: 20px;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	white-space: nowrap; 
}

.usp__icon {
	color: lightgreen;
}

.hero__contact {
	margin-top: -20rem;
	justify-content: center;
}

@media screen and (min-width: 768px) {
	.hero__contact {
		position: absolute;
		bottom: 0;
		left: 4rem;
		gap: 3rem;
		justify-content: start;
	}
}

.contact__info {
	position: relative;
	height: fit-content;
	padding: 1.5rem;
	border-radius: 3px; 
	background-color: var(--white);
	color: #111111;
}

.contact__image {
	width: 8rem;
}

.contact__title {
	font-family: var(--ff-heading);
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: 28.8px;
}

.contact__subtitle {
	color: #505050;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 28.8px; 
}

.contact__number, .contact__email {
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	border-radius: 3px;
	border: 1px solid #111; 
	color: #111111;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal; 
	background-color: transparent;

	transition: background-color 150ms ease-in-out;
}

.contact__number:hover, .contact__email:hover {
    color: var(--primary-green);
	background-color: rgb(235, 235, 235); 
    text-decoration: none;
}

.contact__icon {
	color: var(--primary-green);
}

@media screen and (min-width: 768px) {
	.contact__number {
		margin-right: 1rem;
	}
}

.text__triangle {
	position: absolute;
	top: 2rem;
	left: -8px;
	color: white;
}

/* Order component header */
.tabs {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 500px;
}

.tab-btn {
    padding: 12px 6px;
	color: #B9B9B9;
	border-radius: 5px 5px 0px 0px;
	border-bottom: 1px solid var(--111111, #111);
	font-family: var(--ff-text);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background-color: var(--white);
}

.tab-btn--active {
	color: var(--text);
	border-bottom: 0;
	border-top: 1px solid var(--111111, #111);
	border-right: 1px solid var(--111111, #111);
	border-left: 1px solid var(--111111, #111);
	font-family: var(--ff-text);
}

#tab-schuimbeton-anchor, #tab-dekvloer-anchor {
    position: absolute;
    top: -150px;
}

.tab-content {
	display: none;
    flex-direction: column;
	padding: 20px 0;

	width: 100%;
	max-width: 500px;
	height: 80%;
	min-height: 600px;

	& span {
		margin-bottom: 20px;
	}
}

.tab-content.active {
	display: flex;
}

.hero__form {
    margin-top: 40px;
	background-color: none;

	& form {
		width: 100%;
	}
}

.input__group {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;

	& label {
		font-family: "Open Sans", sans-serif;
		font-size: 16px;
		font-weight: 700;
		line-height: 28.8px;
	}

	& input {
		padding: 12px 20px;
		border-radius: 3px;
		border: 1px solid #BFC3C8;
		background-color: var(--light-grey);
	}

	& input:focus {
		border-color: var(--primary-green);
	}

	& select {
		padding: 16px 20px;
		background-color: var(--light-grey);
		border-radius: 3px;
		border: 1px solid #BFC3C8;
	}

	& select:focus {
		border-color: var(--primary-green);
	}
}

select {
	font-family: var(--ff-text) !important;
}

.options__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 10px;
}

.grid__tile {
	display: flex;
	align-items: center;
	gap: 6px;
	border-radius: 3px;
	border: 1px solid #BFC3C8;
	background-color: #f5f5f5;

	& input {
		margin-left: 12px;
		margin-right: 6px;
	}
	& label {
		width: 100%;
		padding: 12px 0;
		margin-bottom: 0;
		font-weight: 500;
		font-family: var(--ff-text);
		cursor: pointer;
	}
}

.grid__tile--active {
	color: var(--white);
	background-color: #41464B;

	& a {
		color: white !important;
	}
}

.delivery__methods {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px;
	padding: 0;

	& li a {
		color: var(--text);
	}
}

.delivery__methods input[type="radio"] {
	display: none;
}

.delivery__methods .grid__tile {
	display: inline-block;
	height: 55px; 
	border-radius: 3px;
	border: 1px solid #BFC3C8;
	background-color: #f5f5f5;
	cursor: pointer;
}

.delivery__methods input[type="radio"]:checked + .grid__tile {
	color: var(--white);
	background-color: #41464B;
}

.delivery__methods .grid__tile {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}


.overview button {
	width: 100%;
	color: var(--white);
}

.overview__total span {
	margin-top: 20px;
	font-family: var(--ff-heading);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.overview__info span {
	margin-bottom: 10px;
	color:  #717171;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28.8px;
}

/* Homepage Flex Builder */
.background {
	top: -20px;
	width: 95%;
	padding-top: 100px;
	background-color: var(--light-grey);
	border-radius: 10px; 

	& h2 {
		font-family: var(--ff-heading);
		font-weight: 600;
	}
}

.workflow {
	padding: 20px 0;
	margin-bottom: 40px;
}

.workflow__step {
	position: relative;
	width: 100%;
	padding: 40px;
	margin-bottom: 60px;
	background-color: var(--white);
	border-radius: 5px;

	& span {
		font-family: var(--ff-heading);
		font-size: 20px;
		font-style: normal;
		font-weight: 600;
		line-height: 28.8px;
	}

	& p {
		font-size: 18px;
		font-style: normal;
		font-weight: 300;
		line-height: 28.8px;
	}
}

@media screen and (min-width: 992px) { 
	.workflow__step {
		width: 30%;
		margin-bottom: 0;
	}
}

.workflow__step:nth-child(-n+2)::after {
	position: absolute;
	right: 50%;
	bottom: -3rem;
	transform: translate(-50%, -20%);
	rotate: 90deg;
	color: var(--white);
	font: var(--fa-font-solid);
	font-size: 4rem;
    content: "\f0da";
}

@media screen and (min-width: 992px) { 
	.workflow__step:nth-child(-n+2)::after {
		position: absolute;
		right: -1rem;
		top: 50%;
		transform: translate(-0, -30%);
		rotate: 0deg;
	}
}

.reviews {
	position: relative;
	padding: 100px 0 120px 0;
    margin: 0;
	background-image: url(/wp-content/uploads/2023/12/beton-overlay-scaled.jpg);
}

.reviews::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--dark-grey);
	opacity: 0.5;
}

.reviews__header {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	color: var(--white);
	
	& h2 {
		margin-bottom: 0;
		color: var(--white);
		font-family: var(--ff-heading);
		font-size: 35px;
		font-weight: 700;
	}

	& a {
		color: var(--white);
		font-family: var(--ff-heading);
		font-size: 16px;
		text-decoration: underline;

		transition: color 150ms ease-in;
	}

    & a:hover {
        color: var(--primary-green);
    }
}

/* Slider */
.review__header {
	padding: 25px 40px;
	background-color: var(--white);
	border-radius: 5px 5px 0 0;

	& span {
		font-family: var(--ff-heading);
		font-size: 18px;
		font-weight: 700;

		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

.review__content {
	min-height: 165px;
	margin-bottom: 0;
	background-color: var(--light-grey);
	border-radius: 0 0 5px 5px;
	padding: 15px 40px 5px 40px;
}

.review__text {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.slick-dots {
	bottom: -40px !important;
}

.review__triangle {
	display: inline-block;
	text-align: right;
	width: 80%;
	
	& i {
		color: var(--light-grey);
		font-size: 4rem;
		line-height: 0 !important;
	}
}

.materials {
	position: relative;
	padding: 120px 0 0 0;
	background-image: url(/wp-content/uploads/2023/12/bg-dark.png);
	color: var(--white);
}

@media screen and (min-width: 768px) {
	.materials {
		padding: 120px 0;
	}
}

.material {
	margin-bottom: 60px;

	& span {
		font-family: var(--ff-heading);
		color: #FFF;
		font-size: 30px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
	}

	& p {
		color: #BDBDBD;
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 29px;
	}
}

@media screen and (min-width: 768px) { 
	.material {
		margin-bottom: 0;
        padding-right: 50px;
	}
}

.materials__image {
	position: relative;
	max-height: 300px;
	width: 100%;

	& img {
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
}

@media screen and (min-width: 768px) { 
	.materials__image {
		position: absolute;
		right: 0;
		top: 0;
		max-height: none;
		height: 100%;
		width: 25%;
	}
}


/* Detailpagina CSS */
.detail__hero {
	position: relative;
	padding: 0;
    margin-bottom: 60px;
}

.detail__hero__image {
	width: 100%;
	height: 85vh;
	max-height: 500px;
	
	& img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
}

.detail__hero__image::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--black);
	opacity: 0.5;
}

.detail__hero__content {
	position: absolute;
	left: 0%;
	top: 20%;
}


@media screen and (min-width: 992px) { 
    .detail__hero__content {
        left: 8%;
    }
}

@media screen and (min-width: 1600px) { 
    .detail__hero__content {
        left: 18%;
    }
}

.detail__hero__title {
	font-family: var(--ff-heading);
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 61px;
}

.cta__block {
	z-index: 3;
	position: relative;
	width: 100%;
	padding: 2rem;
	background-color: var(--white);
}

@media screen and (min-width: 600px) {
	.cta__block {
		position: absolute;
		bottom: -2rem;
		right: 8rem;
		width: 380px;
		padding: 2rem;
		background-color: var(--white);
		box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15); 
		border-radius: 10px; 
	}
}

.cta__text {
	margin-bottom: 1rem;
}

.cta__title {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal; 
}

.cta__subtitle {
	color: var(--dark-grey);
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 32px;
	opacity: 0.75;
}

.cta__link {
	margin-bottom: 1rem;
	padding: 16px 40px;
	border-radius: 3px; 
	color: var(--white);
	background-color: var(--primary-green);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 28.8px; 
	font-family: var(--ff-heading);

	transition: background-color 150ms ease-in;
}

.cta__link:hover {
	color: var(--white);
	background-color: color-mix(in srgb, var(--primary-green) 75%, black)
}



.detail__hero__scroll-indicator {
	z-index: 3;
	position: absolute;
	bottom: -25px;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	padding: 0.75rem;
	border-radius: 50%;
	background-color: var(--white);
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15); 
	transform: translate(-50%, 0);

	transition: transform 150ms ease-in-out, color 150ms ease-in-out;
}

.detail__hero__scroll-indicator:hover{
	color: var(--primary-green);
	transform: translate(-50%, 5px);
}

/* Detailpage flex builder */
.title__block {
	margin-bottom: 20px;

	& h2 {
		text-align: left;
		line-height: normal;
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 992px) {
	.title__block h2 {
		text-align: right;
	}
}

.fifty_fifty .text__block {
    width: 100%;
}

@media screen and (min-width: 992px) {
	.fifty_fifty .text__block {
        width: 50%;
    }
}

.text__block p {
	color: var(--light-text);
	font-family: var(--ff-text);
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 32px;
}

.text-with-image--links {
    display: flex;
    flex-direction: column;
	gap: 2rem;
}

.text-with-image--rechts {
	display: flex;
    flex-direction: column-reverse;
	gap: 2rem;
}

@media screen and (min-width: 992px) {
	.text-with-image--links {
		flex-direction: row;
		gap: 0;
	}

	.text-with-image--rechts {
		flex-direction: row-reverse;
		gap: 0;
	}
}

.text-with-image__image {
    z-index: 2;
    padding: 0;
    max-height: 600px;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        transition: all 150ms ease-in;
    }

    & img:hover {
        border-radius: 5px;
        scale: 1.025;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15); 
    }
}


@media screen and (min-width: 1200px) {
	.content__block {
		margin-block: 20px;
		padding-left: 100px;
		background-color: transparent;
	}
	
	.content__wrapper {
		max-width: 800px;
		padding-right: 200px;
	}
}

.content__block--background {
    background-color: var(--light-grey);
}

.content__block .btn {
    margin-right: 20px;
}

.post__card {
    max-width: 400px;
    padding: 0;
}

.post__card:hover {
    & img {
        scale: 1.05;
    }

    & button {
        padding-right: 20px;
        color: var(--primary-green);
    }
}

.post__image {
    overflow: hidden;
    max-height: 60%;
    border-radius: 5px;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        transition: scale 150ms ease-in;
    }
}

.post__content {
    padding: 20px 30px;

    & span {
        color: var(--text);
        font-family: var(--ff-heading);
        font-size: 30px;
        font-weight: 700;
    }

    & p {
        margin-bottom: 0;
    }
}

.contact__form {
	background-color: var(--light-grey);
}


/* FAQ */
.archive-header {
	position: relative;
	max-height: 400px;
	overflow: hidden;
}

.archive-title {
	position: absolute;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.archive-title h1{ 
	color: var(--white);
	font-size: 80px !important;
	line-height: 85px; 
	font-family: var(--ff-heading);
	font-weight: 700;
}

.archive-image {
	position: relative;
	height: 100%;
	width: 100%;

	& img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
}

.archive-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--black);
	opacity: 0.5;
}


.top-header-intro, .faq__header {
	position: relative;
	max-height: 300px;
}

.top-header-intro h1 {
	color: var(--text);
}

.faq__header__image {
	& img {
		object-fit: cover;
		width: 100%;
		max-height: 300px;
	}
}

.faq__header__image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--white);
	opacity: 0.5;
}

.faq__header__title {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 32px;
	line-height: 45px;
	font-family: var(--ff-heading);
	font-weight: 700;
	color: var(--text);
}

.faq__content a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 992px) {
	.faq__header__title {
		font-size: 48px;
		line-height: 85px;
	}
}

.nieuws-column {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 2rem;
	padding: 40px 0;
}

@media screen and (min-width: 768px) {
	.nieuws-column {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (min-width: 992px) {
	.nieuws-column {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.blog__card {
	position: relative;
	color: var(--text);
}

.blog__card:hover {
	color: var(--text);
}

.blog__card__thumbnail {
	height: 200px;
}

.blog__card h2 {
    font-size: 28px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2; 
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog__content {
	padding-inline: 0;
}

.blog__card__datetime {
    opacity: 0.9;
	position: absolute;
	top: 2px;
	right: 6px;
	width: max-content;
	padding: 4px 12px;
	margin-top: 10px;
	border-radius: 20px;
	background-color: var(--light-grey);

	& span {
		font-size: 12px;
		font-weight: bold;
	}
}

.blog__header {
    max-height: none;

    & h1 {
        margin-top: 80px;
        font-family: var(--ff-heading);
        font-weight: 700;
    }
}

.blog__thumbnail {
    max-height: 100%;
}

.blog__thumbnail img {
    border-radius: 10px;
}

/**** Theme CSS ****/
.usps-repeater {
	display: flex;
	justify-content: space-between;
}

.container.usps {
    margin: auto;
    padding: 25px;
}

.reapeater-item {
	display: flex;
}

.reapeater-item div {
	margin-right: 15px;
	text-transform: uppercase;
}


div#about-menu {
    margin-right: 15px;
    padding-top: 5px;
}

.fa.fa-heart-o:before {
    content: "\f004";
    position: relative;
    top: -2px;
}

input, textarea, .frm_button_submit{ font-family: 'Roboto', sans-serif !important;}
h1,
h2,
h3,
h4,
h5,
p {
	color: var(--text);
    color: var(--text);
}

p {
    font-weight: 300;
    line-height: 30px;
}

.archive-header p {
	font-weight: 500 !important;
}

section.google-maps {
	margin-bottom: 0;
	padding-bottom: 0;
}

section.google-maps .container-fluid {
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.wpml,
.widget_icl_lang_sel_widget {
	display: none;
}

h1 {
    color: #FFF;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px; /* 109.091% */
    text-transform: uppercase;
}

h1 a {
    font-size: 45px;
    font-weight: 300;
    line-height: 56px;
    letter-spacing: 0.4px;
    color: var(--text);
}

.single-product h1, .single-product h1 a {
    font-size: 30px;
	font-weight: 900;
}

@media screen and (min-width: 768px) {
	.nice-button {
		border-radius: 6px;
		background: var(--primary-green);
	}
	.nice-button a {
		color: #FFFFFF !important;
	}
}

h2 {
	font-family: var(--ff-heading);
    margin-bottom: 20px;
    font-size: 36px; 
	font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.4px;
    color: var(--text);
}

.simple-desc .prices {
	padding: 5px 0;
	text-align: start;
}

.offerteform.prod {
    margin: 30px 0;
}

@media screen and (min-width: 768px) {
	.product-info__holder-right form.cart {
		display: inline-flex;
		justify-content: start;
	}
	.product-info__holder-right .quantity {
		position: relative;
		max-width: 25% !important;
		margin-top: 5px !important;
	}
	.col-md-6.left {
		padding-left: 60px;
	}
}

@media screen and (max-width: 768px) {
	.offerteform.prod {
		margin: 30px 10px;
	}
	.col-md-6.left {
		padding: 0 30px;
	}
	.simple-desc .product-content__panel {
		display: block !important;
		padding: 0 !important;
	}
}

.col-md-12.navigation {
    text-align: end;
    padding: 30px 15px;
}

.usps .text {
	position: relative;
	top: 2px;
	margin-left: 5px;
	text-transform: uppercase;
}

.custom-prev {
	margin-right: 5px;
}

.productusp .usp {
	display: flex;
	justify-content: space-between;
}

.productusp .usps img {
    height: 35px;
    width: 35px;
    object-fit: contain;
    object-position: center;
}

.simple-desc .product-content__item.js-product-item {
	background: #F5F5F5;
	border: 1px solid #fefefe;
	margin-bottom: 15px;
}

.prices span {
	font-size: 22px;
	font-weight: bold;
}

.selecteer-producten h2 {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 40px;
}

.productusp {
    display: flex;
    justify-content: space-between;
}

.accessories .col-md-12.slick-navigation {
    padding: 0 15px 30px 15px;
    text-align: end;
}

.headerrelated {
	text-transform: uppercase;
}

.productusp .usps {
	display: flex;
	justify-content: start;
    align-items: center;
    gap: 10px;
	width: 100%;
	margin-top: 10px;
	padding-bottom: 30px;
}

.custom-prev, .custom-next {
	cursor: pointer;
}

.single-product .product-info__holder-right .prices span {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    margin-left: 0;
}

.single-product p.stock.in-stock {
	display: none;
}

.pricews {
	text-decoration: line-through;
	margin-right: 5px;
	color: #7F8271 !important;
}

.center {
	text-align: center;
}

.es-title, iframe h1 {
	margin-bottom: 20px !important;
    font-size: 30px !important;
    line-height: 38px !important;
    letter-spacing: 0.4px !important;
    color: var(--text) !important;
}

.breadcrumbs span span a {
	font-weight: bold !important;
}

.breadcrumbs span span span a {
	font-weight: normal !important;
}

/* navigatie */

#primary-menu {
    float: none;
	padding: 0px;
}

.background-grey {
    background-color: #222222;
    padding: 60px 0;
}

.background-grey * {
    color: #FFFFFF !important;
}

body {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

nav .header__top-search  {
    height: 75px;
    align-items: end;
}

.dgwt-wcas-search-wrapp {
    max-width: 350px !important;
    margin: 0 !important;
    margin: 5px 0;
}

.searchclickie {
    display: none;
}

nav {
	background: #FFFFFF;
	width: 100%;
	z-index: 99999;
    position: relative;
	transition: all ease-in 0.35s;
    position: relative;
}

.variations tbody {
    display: table;
}

nav.menu-scrolled {
	background: #FFFFFF;
	width: 100%;
	position: fixed;
    padding: 10px 0 !important;
	z-index: 99999;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
}

.bel-naar span {
	transition: all ease-in-out 200ms;
}

.bel-naar span:hover {
	font-weight: 700 !important;
	transition: all ease-in-out 200ms;
}

.bel-naar strong {
	font-weight: bolder !important;
}

.content-product .title {
	position: relative;
}

.prices {
    margin-top: -15px;
	margin-bottom: 10px;
}

.prices.saletje {
    margin-top: 5px;
}

.accessories h2 {
	margin-bottom: 0;
}

.meertoon {
	margin-top: 30px;
}

.sale-blockje {
    text-transform: uppercase;
    padding: 10px 15px;
    background: #000;
    color: #FFF;
    font-weight: bold;
    width: 90px;
    position: absolute;
    top: 15px;
    right: 30px;
}

.flex-img {
	text-align: center;
}

a#cookie_action_close_header_reject {
    padding: 10px 15px;
    font-weight: 300;
    font-size: 16px;
    border-radius: 3px;
}

.content-product .subtitle p {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
	line-height: normal;
	margin-bottom: 10px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background: transparent;
}

a.home-cta-link {
    font-weight: bold;
}

.content-product .product-content__list li {
	border-top: 2px solid #F5F5F5 !important;
}

i.fa-solid.fa-chevron-right {
    font-size: 13px;
    font-weight: bolder;
	transition: all ease-in-out 0.5s;
}

.home-cta-link:hover .fa-chevron-right {
	margin-left: 5px;
	transition: all ease-in-out 0.5s;
}

.single-product .yith-wcwl-add-button a.view-wishlist {
	display: none !important;
}

.single-product span.separator {
	color: transparent !important;
	display: none !important;
}

.content-product .price {
	position: relative;
	max-width: 100% !important;
	overflow: hidden;
}

nav.menu-scrolled #logo img, nav.menu-scrolled .header__top-search, nav #logo img, nav .header__top-search    {
    height: auto;
    object-fit: contain;
    transition: all ease-in-out 0.35s;
}

nav li.wishlist-nav a {
    font-size: 0 !important;
}

nav .wishlist-nav a::before {
    content: "\f08a";
    font: 25px/1 'FontAwesome';
    color: var(--text);
}

nav li.cart-nav a {
    font-size: 0 !important;
}

nav .cart-nav a::before {
    content: "\f07a";
    font: 20px/1 'FontAwesome';
    color: var(--text);
}

span.head-wishlist-number {
    position: absolute;
    z-index: 999;
    padding: 5px 8px 0px 8px;
    background-color: #29C1DD;
    color: #FFFFFF;
    border-radius: 100%;
    font-weight: bold;
    margin-top: -18px;
    font-size: 13px;
    right: 65px;
}

nav li.cart-wish a {
    font-size: 0 !important;
}

nav .cart-wish a::before {
    content: "\f007";
    font: 20px/1 'FontAwesome';
    color: var(--text);
}

nav li.cart-sear a {
    font-size: 0 !important;
}

.main-nav ::marker {
	color: transparent;
}

nav .cart-sear a::before {
    content: "\f002";
    font: 20px/1 'FontAwesome';
    color: var(--text);
}

@media screen and (min-width: 768px) {
	.col-1, .col-2 {
		flex: 0 0 50%;
		max-width: 50% !important;
	}
}

.is_fixed {
	width: 100%;
	height: 89px;
	display: block;
}

#logo img {
	height: 75px;
	width: 110%;

	transition: scale 100ms ease-in-out;
}

#logo img:hover {
	scale: 1.05;
}

div#logo a {
	height: 100%;
	line-height: -0px;
	display: inline-block;
}

.main-nav {
    display: flex;
    flex-direction: column;
}

.main-nav #about-menu li a {
    font-size: 13px;
    padding: 5px 10px !important;
}

div#about-menu {
    margin-bottom: 5px;
}

nav .current-menu-item, nav .current-menu-item a{
	color: var(--primary-green) !important;
}

nav .current-menu-item a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 4px;
	left: 0;
	background-color: var(--primary-green);
}

.main-nav ul {
	float: right;
}

@media screen and (min-width: 768px) {
	ul#primary-menu-ul {
        display: flex;
        margin: 0;
	}
}

.add_to_wishlist i.yith-wcwl-icon.fa.fa-heart-o {
	color: #333 !important;
}

.footer-newsletter-form label {
	display: none !important;
}
b, strong {
    font-weight: 300;
}
input#billing_email {
    background: gray !important;
    color: #FFFFFF !important;
}

div#cookie-law-info-bar {
    z-index: 9999999;
}

.main-nav ul li a {
	font-size: 16px;
	color: var(--text);
	display: block;
	font-weight: 300;
	padding: 5px 15px !important;
	font-family: 'Barlow', sans-serif;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.menu-scrolled .main-nav ul li a {
	font-size: 16px;
	color: var(--text);
	display: block;
	font-weight: 300;
	padding: 15px 35px 14px 20px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.sub-menu {
	border-top: 1px solid var(--text);
	left: 18px;
}

.sub-menu * {
	font-weight: 800;
	color: var(--text) !important;
    line-height: 1;
}

footer .sub-menu {
    margin-bottom: 30px !important;
}

.sub-menu li a {
	font-size: 14px !important;
	padding: 10px 15px !important;
}

a.contact-menu {
	background: var(--purple);
	position: relative;
	color: #ffff;
	font-weight: 300;
	font-size: 17px !important;
	border-radius: 3px !important;
	padding: 10px 15px;
	margin-top: 17px;
	margin-left: 10px;
	display: inline-block;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.contact-menus:hover a {
	background: #800080 !important;
	opacity: 0.8 !important;
	text-decoration: none !important;
	transition: all .6s ease-in-out !important;
}

@media screen and (min-width: 768px) {
	a.contact-menu {
		display: none !important;
	}
}

.contact-menus a {
	background: var(--purple);
	position: relative;
	color: #ffff !important;
	font-weight: 300;
	font-size: 17px !important;
	border-radius: 50px !important;
	padding: 10px 60px !important;
	margin-top: 17px;
	margin-left: 10px;
	display: inline-block;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.contact-menus a:hover {
	background: 825984;
	text-decoration: none;
}


@media screen and (max-width: 768px) {
	.contact-menus {
		display: none !important;
	}
}

.product-info form.cart .woocommerce-variation-add-to-cart {
	width: 100%;
	float: none !important;
}

.without-sub a {
	padding: 15px 20px 15px 20px !important;
}

.content-slide .content p {
	margin-bottom: 0;
}

select.orderby {
    padding: 5px 15px;
    border: 1px solid var(--text, #222);
    border-radius: 50px;
}

.category-section__sidebar {
	position: relative;
	max-width: 300px;
}

.category-section__sidebar h3 {
	margin-bottom: 5px !important;
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 30px;
    margin-top: -10px;
}

.wc-block-components-price-slider {
	margin-bottom: 0 !important;
}

.wc-block-components-price-slider__controls {
	display: flex !important;
}

.wc-block-components-price-slider__controls {
	margin: 10px 0 25px 0;
}

ul.wc-block-product-categories-list.wc-block-product-categories-list--depth-0 {
	padding: 10px 0;
}

.category-section__sidebar li::marker {
	display: none;
	color: transparent;
}

li.wc-block-product-categories-list-item {
    position: relative;
    display: flex;
    justify-content: space-between;
}

span.wc-block-product-categories-list-item-count {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: right;
    letter-spacing: 0.4px;
    color: #333;
}

span.wc-block-product-categories-list-item__name {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.4px;
    color: #222222;
}

input.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-price-filter__amount.wc-block-price-filter__amount--min.wc-block-form-text-input.wc-block-components-price-slider__amount.wc-block-components-price-slider__amount--min {
    border: none;
    background: #F5F5F5;
    border-radius: 3px;
}

input.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-price-filter__amount.wc-block-price-filter__amount--max.wc-block-form-text-input.wc-block-components-price-slider__amount.wc-block-components-price-slider__amount--max {
	border: none;
    background: #F5F5F5;
    border-radius: 3px;
}

@media screen and (min-width: 768px) {
	.embedsocial-mobile {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.embedsocial-desktop {
		display: none !important;
	}
	.embedsocial-mobile .es-title {
		display: none !important;
	}
}

.components-form-token-field {
	border: none;
    background: #F5F5F5;
    border-radius: 3px;
}

.wc-blocks-components-form-token-field-wrapper .components-form-token-field__input-container {
	border: none !important;
}

.wc-block-product-categories-list-item-count:before, .wc-block-product-categories-list-item-count:after {
	display: none !important;
}

.woocommerce-wishlist .head-content {
	max-width: 100% !important;
}

.woocommerce-wishlist table.shop_table {
	border-top: none !important; 
}

.woocommerce-wishlist .archive.archive-header {
    padding: 50px 0 80px 0;
}

.wp-block-columns {
	margin: 15px 0 !important;
}

.shop_table .product-price, .shop_table .product-stock-status {
	text-align: center;
}



.wc-block-components-price-slider__range-input-wrapper {
	display: none !important;
}

.wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
	max-width: 100% !important;
}

.category-section__sidebar .widgettitle, .category-section__sidebar h3 {
	font-style: normal;
	color: #333;
	font-weight: 900;
	font-size: 18px;
	line-height: 18px;
}

.wc-block-product-categories {
	margin-bottom: 0;
}

.large-content {
    padding-right: 60px;
}

nav ul.sub-menu li a {
	padding: 5px 10px;
	font-style: normal;
	font-weight: 500;
	font-size: 13px;
}

.language {
	float: left;
	background: #F9F9F9;
}

.wpml-ls-legacy-dropdown {
	width: auto;
}

.wpml-ls-legacy-dropdown .wpml-ls-item {
	width: 100%;
}

.wpml-ls-legacy-dropdown a {
	background: #F9F9F9;
	border: none;
	padding: 11px 13px;
}

.wpml-ls-legacy-dropdown .wpml-ls-flag {
	display: inline;
	vertical-align: middle;
	width: auto;
	height: 20px;
}

nav .container-fluid .row {
	display: flex;
	align-items: center;
}

nav .main-nav ul {
	float: right;
	margin: 0;
	padding: 0px;
}

nav.main-navigation {
    padding: 20px 0;
}

nav.main-navigation .current_page_item a {
	color: var(--primary-green);
    font-size: bold;
}

.menu-item-has-children a {
	position: relative;
	padding: 32px 35px 32px 15px;
}

.menu-item-has-children>a:after {
	content: '';
	position: absolute;
	right: 15px;
	top: 25px;
	width: 10px;
	height: 10px;
	background-image: url(./img/arrow-down-white.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: ease-in all 0.3s;
}

.sub-menu .menu-item-has-children a:hover::after {
	display: none !important;
}

.menu-scrolled .menu-item-has-children>a:after {
	content: '';
	position: absolute;
	right: 15px;
	top: 25px;
	width: 10px;
	height: 10px;
	background-image: url(./img/arrow-down-blue.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: ease-in all 0.3s;
}

.sub-menu .menu-item-has-children a:hover::after {
	display: none !important;
}

/* carrousel */

.slider .attr-icon-product img {
	max-width: 40px;
	float: left;
}

.slider {
	position: relative;
}

.slide-inner-content ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.slide-inner-content ul li {
	display: grid;
	margin-bottom: 10px;
}

.content-slide h2:nth-child(3):before {
	content: '';
	width: 30px;
	height: 30px;
	background-image: url(./img/plus.svg);
	display: block;
	margin: 20px 0px;
}

span.attr-text-product {
	padding: 11px;
	display: inline-block;
	color: white;
	font-weight: bold;
	font-size: 18px;
}

.call-slider {
	position: absolute;
	right: 15px;
	bottom: 15px;
	height: 48px;
	width: 40px;
	z-index: 9999;
	background-size: cover;
	background-image: url(./img/call-icon.svg);
}

.intro-category__filter div::after {
    position: absolute;
    content: '\f00d';
    font-family: "FontAwesome";
    font-size: 20px;
    margin-left: 12px;

}

.category-section__filter, .category-section__mobile-heading {
    margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
	.outer-container {
		width: 100%;
	}

    .intro-category {
        padding-bottom: 0;
    }

    .single-head {
        margin-top: 10px;
    }

    .product-subfooter .col-lg-5 a.btn {
        padding: 10px 0px !important;
    }

    .btn-contact {
        background-color: transparent !important;
    }

}

/* Home header */
.head-home {
    height: 550px;
    padding-top: 0;
    padding-bottom: 0;
}

.head-home .bg-head {
    background-size: cover;
    background-position: left;
	height: 100%;
	width: 100%;
	align-items: center;
	display: flex;
	margin-left: -2px;
}

.head-home h1 {
    color: white;
}

input#dgwt-wcas-search-input-1 {
    right: 20px !important;
    position: relative;
}

.head-home .row {
    height: 100%;
    align-items: center;
}

.usps-home  {
    background-color: var(--text);
    height: 100%;
    width: 100%;
    color: white;
}

.usps-home ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}


.usps-home ul span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    letter-spacing: 0.75px;
}

.usps-home ul div {
    font-weight: 400;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.75px;
}

.usps-home .count {
    font-size: 30px;
    display: inline;
}

.carousel-thumb {
	width: 60%;
	float: left;
	background-size: 100%;
	background-position: top left;
	background-repeat: no-repeat;
}

span.bubble {
	padding: 1px 5px;
    border-radius: 50%;
    background: #DCDCDC;
    font-size: 14px;
    color: #FFF;
    font-weight: 300;
    position: relative;
    bottom: 2px;
    margin-left: 10px;
	transition: all ease-in-out 250ms;
}

.linker-item:hover span.bubble {
	padding: 1px 5px;
	border-radius: 50%;
    background: #333333;
    font-size: 14px;
    color: #FFF;
    font-weight: 300;
    position: relative;
    bottom: 2px;
    margin-left: 10px;
	transition: all ease-in-out 250ms;
}

.head-home h1 {
    color: white;
    margin-bottom: 0;
}

.subbie {
	color: #FFF;
	font-size: 25px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.4px;
	margin-bottom: 30px;
}

span.headicon {
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.linker-item {
	cursor: pointer;
}

span.plus {
	width: 20px;
	height: 20px;
	background-image: url(./img/plus.svg);
}

.slide-inner-content {
	float: left;
	width: 40%;
	padding-left: 15px;
}

.slide-inner-content .btn:after {
	background: var(--purple) !important;
}

.slide-inner-content .btn:hover:after {
	background: none !important;
}

.slide-inner-content .btn {
	color: #fff !important;
}

.slide-inner-content h3 {
	color: #fff;
	margin-top: 34px;
}

.hp-head .product-informatie {
	display: flex;
	align-items: center;
}

.product-slide {
	position: relative;
	z-index: 99999;
}

.product-carrousel {
	position: relative;
	z-index: 999;
}

.gradient {
	width: 100%;
	min-height: 800px;
	position: absolute;
	overflow: hidden;
}

.scroll-down {
	position: absolute;
	right: 15px;
	bottom: 20px;
	z-index: 55;
	color: white;
}

.scroll-down a {
	color: white;
}

.scroll-down a:hover {
	text-decoration: none;
}

.main-header {
    background-repeat: no-repeat;
    background-size: cover;
}

.woocommerce-page .archive-header::before {
    content: none;
}

.wishlist-title {
    display: none;
}

.pagina.archive.archive-header .container {
	position: relative;
	-ms-transform: translateY(50%);
	transform: translateY(50%);
}
.error404 .archive.archive-header .container {
	-ms-transform: translateY(80%);
	transform: translateY(80%);
}

@media screen and (min-width: 1500px) {
	.error404 .archive.archive-header .container {
		position: relative;
		-ms-transform: translateY(200%);
		transform: translateY(200%);
	}
}

.wc-block-product-categories-list li:nth-child(2) {
	display: none !important;
}

.woocommerce td.product-name .wc-item-meta .wc-item-meta-label, .woocommerce td.product-name .wc-item-meta dt, .woocommerce td.product-name dl.variation .wc-item-meta-label, .woocommerce td.product-name dl.variation dt {
	margin-top: 3px;
}

.woocommerce-account .pagina.archive.archive-header .container, .woocommerce-cart .pagina.archive.archive-header .container, .woocommerce-wishlist .pagina.archive.archive-header .container  {
	position: relative;

	display: flex;
    justify-content: center;
    align-items: center;
    /* Optionally, set height and width to create a container with specific dimensions */

}

.archive.archive-header {
	text-align: center;
	background-position: top;
}

.hp-head .container .row {
	min-height: 690px;
	display: flex;
	align-items: center;
}

.hp-head .left-content h2 {
	text-transform: uppercase;
	font-weight: bold;
	font-family: 'Barlow', sans-serif;
	font-size: 40px;
	color: #fff;
}

.hp-head::before {
    content: "";
    background: linear-gradient(90deg, rgba(159,109,161,1) 0%, rgba(82,55,83,1) 100%);
    height: 100%;
    position: absolute;
    width: 100%;
    opacity: 0.8;
    left: 0;
}

.hp-head::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(img/header-line.png);
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -3px;
    background-size: 101%;
}

.slide-achtergrond {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 690px;
	z-index: -9;
}

.background-image-carrousel {
	height: 690px;
	background-size: cover;
	background-position: center center;
}

.scroll-down {
	position: absolute;
	right: 25px;
	bottom: 24px;
	z-index: 55;
	color: white;
	height: 55px;
}

.scroll:after {
	content: '';
	width: 21px;
	height: 20px;
	background-repeat: no-repeat;
	background-image: url(./img/scroll-down.svg);
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrolldown 2s infinite;
}


@keyframes scrolldown {
	0% {
		bottom: 10px;
	}

	50% {
		bottom: 5px;
	}

	100% {
		bottom: 10px;
	}
}


.linkcontainer {
    position: absolute;
    right: 0px;
    bottom: 0;
    background: #FFF;
    padding: 40px 40px 20px 40px;
    border-radius: 50px 0px 0px 0px;
}

.linkcontainer .linker-item a {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 15px;
	color: #333333;
}

.linker-item {
	margin-bottom: 15px;
}

.bel-naar, .bel-naar * {
	color: #FFFFFF !important;
}

.hp-head .btn {
	margin-right: 15px;
}

.hp-head .btn:nth-last-child(1) {
	margin-right: 0;
}

.hp-head .btn:hover:after {
	background: #b00505;
}

.hp-head .btn.secondair:hover:after {
	background: #825984;
}

.hp-head .secondair {
	color: white;
}

.hp-head .secondair:after {
	background: none;
}

.cmidden {
	align-items: center;
	display: flex;
}

#content {
	position: relative;
	margin-bottom: 20px;
}


.bg-100 {
    background: var(--purple);
    padding: 100px 0;
    margin-left: 210px;
    margin-bottom: 80px;
    border-radius: 40px 0 0 40px;
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
	.bg-100 {
		padding: 15px 0;
		margin: 15px 0;
	}

    .woocommerce-page .col2-set .col-2, .woocommerce .col2-set .col-2 {
        min-width: 100% !important;
    }
}


.bg-100 h2, .bg-100 p {
    color: white !important;
	max-width: 100%;
}

.bg-100 h2 {
    width: 500px;
    line-height: 40px;
    margin-bottom: 20px;
}

.steps-section {
    background-image: url(./img/bg-steps.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.steps-section .content-steps h3 {
    color: var(--purple);
}

.steps-section .content-steps div {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    min-height: 370px;
}


section.product-subfooter .row {
	row-gap: 50px;
}

section.product-subfooter {
    background-color: #e8e8e8;
    padding: 80px 0;
}

section.product-subfooter h2 {
	margin-bottom: 5px;
}

section.product-subfooter p {
	font-size: 18px;
	margin-bottom: 15px;
}

.dubble-content li {
    line-height: 32px;
    font-weight: 300;
}

.dubble-content h2 {
    margin-bottom: 20px;
}


.wooocommerce-account .head-content {
	max-width: 100% !important;
}

.darken {
	position: inherit;
	padding-left: 20px;
	padding-left: 60px;
}

.darken-right .col-md-6:nth-child(1) {
	padding-right: 60px;
}

.darken:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	background: #F9F9F9;
	width: 50%;
	height: 100%;
	z-index: -1;
}

.darken:after {
	content: '';
	position: absolute;
	top: 0;
	right: -4px;
	height: 100%;
	z-index: -1;
	background-image: url(./img/before-pattern.svg);
	background-repeat: no-repeat;
	background-position: right;
	width: 50%;
	right: 0px;
}

.usps {
	margin: 0;
	padding: 0;
	list-style: none
}

.usps li {
	float: left;
	width: 50%;
	font-size: 18px;
	line-height: 18px;
	display: inline-flex;
	margin: 15px 0px;
}

.usps li:before {
	content: '';
	position: relative;
	display: inline-block;
	width: 35px;
	height: 40px;
	top: -10px;
	margin-right: 20px;
	background-image: url(./img/usp.svg);
	background-repeat: no-repeat;
}


/* faq */
.prevFaq,
.nextFaq {
	cursor: pointer;
}

.lightbox h2 {
	padding-left: 60px;
	position: relative;
	padding: 0px;
}

.lightbox h2:before {
	top: 0px;
	left: 0px;
	position: absolute;
}

.close-lightbox {
	position: absolute;
	height: 30px;
	width: 30px;
	right: 11px;
	top: 14px;
	cursor: pointer;
	background-image: url(img/close.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.faq-url {
	cursor: pointer;
	color: var(--primary-green);
	margin: 15px 0px;
	display: block;
	font-size: 18px;
}

.faq-url:hover {
	color: #333333;
}

.outside {
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute;
}

.nextFaq:after {
	content: '';
	position: relative;
	width: 15px;
	height: 13px;
	top: 1px;
	left: 0px;
	display: inline-block;
	background-image: url(./img/nextfaq.svg);
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.prevFaq:after {
	content: '';
	position: relative;
	width: 15px;
	height: 13px;
	top: 1px;
	left: 0px;
	display: inline-block;
	background-image: url(./img/prev.svg);
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	margin-right: 30px;
}

/* Homepagina Categorieën */

.hp-categorieen {
	width: 100%;
	display: flex;
}

.hp-categorie {
	flex-grow: 1;
	flex-basis: 0;
}

.hp-categorie .inner {
	min-height: 300px;
	position: relative;
	background-position: center center;
	margin-bottom: 30px;
    border-radius: 20px 20px 0 0;
}

.hp-categorie .inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	bottom: 0px;
	z-index: 0;

	/* background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 7%, rgba(0,0,0,0.65) 98%, rgba(0,0,0,0.65) 99%); 
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.05) 7%,rgba(0,0,0,0.65) 98%,rgba(0,0,0,0.65) 99%); 
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.05) 7%,rgba(0,0,0,0.65) 98%,rgba(0,0,0,0.65) 99%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );  */
}

.hp-categorie .term-info {
	position: absolute;
	bottom: 0px;
}

.term-info .term-name {
	position: relative;
	z-index: 5;
	margin-bottom: 10px;
	display: inline-block;
	padding: 10px 60px 10px 20px;
	overflow: hidden;
	color: #333333;
	font-size: 28px;
	font-family: 'Barlow', sans-serif;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.term-info .term-name:after {
	content: '';
	width: 110%;
	height: 100%;
	right: 0px;
	top: 0px;
	position: absolute;
	z-index: -1;
	background: white;
	transform: skew(-14deg);
	transform-origin: top;
}

.term-info .term-link {
	clear: both;
	display: block;
	padding: 0px 60px 0px 20px;
	color: white;
	font-size: 18px;
	margin-bottom: 20px;
	font-family: 'Barlow', sans-serif;
}

.term-info .term-link:after {
	content: '';
	position: relative;
	width: 15px;
	height: 13px;
	top: 1px;
	left: 15px;
	display: inline-block;
	background-image: url(./img/arrow-right.svg);
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.hp-categorie:hover .term-link:after {
	left: 20px;
}

.hp-categorie:hover .term-name {
	padding: 10px 60px 10px 30px;
}

/* Testimonials */

.inner-testimonial {
	padding: 15px;
	margin-bottom: 30px;
	position: relative;
	border: 1px solid transparent;
	-moz-border-image: -moz-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	-webkit-border-image: -webkit-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	border-image: linear-gradient(to right, var(--primary-green) 0%, #E1251B 100%);
	border-image-slice: 1;
}


.inner-testimonial:after {
	content: '';
	position: absolute;
	bottom: -7px;
	right: -6px;
	width: 24px;
	height: 14px;
	background: #ffffff;
	border-top: 1px solid #e32812;
	transform: rotate(-30deg);
}

.inner-testimonial:before {
	content: '';
	position: absolute;
	right: 3px;
	bottom: 5px;
	width: 16px;
	height: 26px;
	background-repeat: no-repeat;
	background-image: url(./img/testimonial-icon.svg);
}

.inner-testimonial article {
	padding: 0px;
	background: none;
}

.testimonial {
	margin-bottom: 30px;
}

.testimonial article {
	height: 100%;
}

#cta {
	text-align: center;
	padding: 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

#cta .title {
	position: relative;
	margin-bottom: 15px;
	font-weight: 900;
	font-size: 45px;
}

#cta .content {
	position: relative;
	margin-bottom: 35px;
	font-style: normal;
	font-weight: 300;
	font-size: 24px;
}

#cta .cta-inner {
	color: #fff;
	position: relative;
	padding: 140px 15px;
	z-index: 2;
}

#cta .cta-inner p {
	color: #fff;
}

#cta .cta-inner h2 {
	color: #fff;
	font-size: 40px;
	text-transform: uppercase;
}

#cta .container-fluid {
	background: rgba(100, 65, 102, 0.7);
}

/* Reviews */
.slider-review .review-card {
    margin: 0 20px;
}

.review {
	margin-bottom: 40px;
}

.review .toggle_btn {
    font-size: 18px;
    font-weight: 300;
    text-decoration: underline;
    cursor: pointer;
}

.review h2 {
	margin-bottom: 0;
}

.slider-review  .slick-list {
    margin: 0 -20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.review-card {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgb(99 99 99 / 10%);
	margin-bottom: 30px !important;
}

.review-card span {
    font-size: 20px;
    font-weight: 300;
	margin: 0 !important;
}

.review-card .toggle_text {
	font-size: 15px;
	font-weight: 900;
	margin: 0;
}

.rating-head ul {
    padding: 0;
}

.review-card .wrapper ul {
	padding-left: 0;
}

.rating-head ul a {
    display: flex;
    margin-top: 0;
    align-items: center;
    gap: 10px;
}

.rating-head a span {
    font-size: 20px;
    font-weight: 300;
    color: #616161;
}

/* Rating */
[data-star] {
    text-align:left;
    font-style:normal;
    display:inline-block;
    position: relative;
    unicode-bidi: bidi-override;
    font-size: 25px;
  }
  [data-star]::before { 
    display:block;
    content: '★★★★★';
    color: #DDDDDD;
  }
  [data-star]::after {
    white-space:nowrap;
    position:absolute;
    top:0;
    left:0;
    content: '★★★★★';
    width: 0;
    color: #FDD017;
    overflow:hidden;
    height:100%;
  }
  
  [data-star^="0.1"]::after,[data-star^=".1"]::after{width:2%}
  [data-star^="0.2"]::after,[data-star^=".2"]::after{width:4%}
  [data-star^="0.3"]::after,[data-star^=".3"]::after{width:6%}
  [data-star^="0.4"]::after,[data-star^=".4"]::after{width:8%}
  [data-star^="0.5"]::after,[data-star^=".5"]::after{width:10%}
  [data-star^="0.6"]::after,[data-star^=".6"]::after{width:12%}
  [data-star^="0.7"]::after,[data-star^=".7"]::after{width:14%}
  [data-star^="0.8"]::after,[data-star^=".8"]::after{width:16%}
  [data-star^="0.9"]::after,[data-star^=".9"]::after{width:18%}
  [data-star^="1"]::after{width:20%}
  [data-star^="1.1"]::after{width:22%}
  [data-star^="1.2"]::after{width:24%}
  [data-star^="1.3"]::after{width:26%}
  [data-star^="1.4"]::after{width:28%}
  [data-star^="1.5"]::after{width:30%}
  [data-star^="1.6"]::after{width:32%}
  [data-star^="1.7"]::after{width:34%}
  [data-star^="1.8"]::after{width:36%}
  [data-star^="1.9"]::after{width:38%}
  [data-star^="2"]::after{width:40%}
  [data-star^="2.1"]::after{width:42%}
  [data-star^="2.2"]::after{width:44%}
  [data-star^="2.3"]::after{width:46%}
  [data-star^="2.4"]::after{width:48%}
  [data-star^="2.5"]::after{width:50%}
  [data-star^="2.6"]::after{width:52%}
  [data-star^="2.7"]::after{width:54%}
  [data-star^="2.8"]::after{width:56%}
  [data-star^="2.9"]::after{width:58%}
  [data-star^="3"]::after{width:60%}
  [data-star^="3.1"]::after{width:62%}
  [data-star^="3.2"]::after{width:64%}
  [data-star^="3.3"]::after{width:66%}
  [data-star^="3.4"]::after{width:68%}
  [data-star^="3.5"]::after{width:70%}
  [data-star^="3.6"]::after{width:72%}
  [data-star^="3.7"]::after{width:74%}
  [data-star^="3.8"]::after{width:76%}
  [data-star^="3.9"]::after{width:78%}
  [data-star^="4"]::after{width:80%}
  [data-star^="4.1"]::after{width:82%}
  [data-star^="4.2"]::after{width:84%}
  [data-star^="4.3"]::after{width:86%}
  [data-star^="4.4"]::after{width:88%}
  [data-star^="4.5"]::after{width:90%}
  [data-star^="4.6"]::after{width:92%}
  [data-star^="4.7"]::after{width:94%}
  [data-star^="4.8"]::after{width:96%}
  [data-star^="4.9"]::after{width:98%}
  [data-star^="5"]::after{width:100%}



.review-item {
	padding: 0 50px;
	text-align: center;
}

.review-item .image-container {
	margin-bottom: 25px;
	min-height: 50px;
}

.review-item .image-container .review-icon {
	margin: auto;
}

.review-item .review-content {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: var(--text);
	margin-bottom: 15px;
}

.review-item .review-link {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: var(--text);
	margin-bottom: 15px;
}

.review-item .review-persoon {
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	text-align: center;
	color: #1B9ED3;
}

.review-item .review-country {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #1B9ED3;
}

.sectie-title {
	text-align: center;
}

.sectie-title .title {
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	color: var(--text);
}

/* Categories selector */
.hp-categorieen .inner {
	position: relative;
	height: 233px;
	margin-bottom: 0;
	background-repeat: no-repeat;
	object-fit: fill;
	background-size: cover;
	background-color: #FFFFFF;
}

.cat-item .outer {
	box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
}

.cat-item {
	top: 0;
	transition: 500ms ease-in-out top;
}

.cat-item:hover {
	position: relative;
	top: -10px;
	transition: 500ms ease-in-out top;
}

.hp-categorieen .outer {
	background-color: #FFFFFF;
	padding: 30px 25px;
    border-radius: 0 0 20px 20px;
}

.hp-categorieen .outer .term-title {
	font-style: normal;
	font-weight: 300;
	font-size: 28px;
	color: var(--purple);
    font-family: 'Barlow', sans-serif;
	margin-bottom: 0;
}

.hp-categorieen .outer .term-description {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
	color: #000000;
}

.hp-categorieen .outer .term-description p {
	margin-bottom: 15px;
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	background: #fff;
}


.hp-categorieen .outer .btn::after, .bg-100 .btn::after {
	background: var(--primary-green);
}

.hp-categorieen .outer .btn:hover::after, .bg-100 .btn:hover::after  {
	background: #2C893B !important;
}

.with-blue-background {
	background-color: var(--purple);
	background: linear-gradient(0deg, var(--light-purple) 75%, white 25%);
}

section.archive.products.with-blue-background {
	padding-bottom: 0;
	padding-top: 0;
	margin-bottom: 60px;
}

section.archive.products.with-blue-background .row {
	position: relative;
	bottom: -60px;
}

/* USP items */

.header-usps .header-usp-background {
	padding: 60px 0;
	background-color: #FFFFFF;
}

.usp-item {
	display: block;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.usp-item .icon {
	position: relative;
	max-height: 50px;
	max-width: 50px;
	margin: auto;
	margin-bottom: 20px;
}

.usp-item .title {
	position: relative;
	font-style: normal;
	font-size: 20px;
	font-weight: 300;
	color: var(--text);
	margin-bottom: 5px;
}

.usp-item .subtitle {
	position: relative;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
	text-align: center;
	color: var(--text);
}

/* Footer */

footer {
	color: #FFFFFF;
    background-color: #FFF;
	position: relative;
}

footer li img {
	max-height: 50px;
	margin-bottom: 0 !important;
}

footer#main-footer {
	padding: 65px 0 35px 0;
}

.socials {
	margin-bottom: 15px;
}

footer .footer-under {
    padding-top: 50px;
    display: flex;
    width: 100%;
    justify-content: center;
}

footer .title {
	color: var(--text);
	font-weight: 900;
    letter-spacing: 0.75px;
	font-size: 22px;
	margin-bottom: 16px;
}

footer .content * {
	color: #000000;
}

footer ul {
    padding-left: 0;
}

footer .container {
	position: relative;
	z-index: 5;
}

footer table tbody tr td {
	padding-right: 10px;
}

footer .info-bar .row {
	background: #4A4848;
	text-align: center;
	padding: 10px 0px;
	margin: 0px;
}

footer .info-bar .small-btn {
	clear: both;
	padding: 0px 60px 0px 20px;
	color: white;
	font-size: 18px;
	margin-bottom: 20px;
}

.product-name-survey {
    display: none;
}

footer .info-bar .small-btn:after {
	content: '';
	position: relative;
	width: 15px;
	height: 13px;
	top: 1px;
	left: 15px;
	display: inline-block;
	background-image: url(./img/arrow-right.svg);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

footer .info-bar .small-btn:hover {
	text-decoration: none;
}

a.social-icon-single svg {
	width: 30px;
	fill: var(--white);
}

footer .info-bar .small-btn:hover:after {
	left: 20px;
}

span.info-footer {
	font-size: 18px;
}

span.adres {
	padding-bottom: 20px;
	display: inline-block;
}

.socials {
	margin-left: 20px;
	display: inline-block;
}

footer ul.sub-menu {
	display: block;
	position: relative;
}

footer ul.sub-menu li a:before {
	content: '-';
	padding-right: 5px;
}

footer a,
footer p {
	color: var(--white);
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

footer a:hover {
	color: #9e9e9e;
	text-decoration: none;
}

.footer-widgets {
	padding: 90px 0px 110px 0px
}

footer h2,
footer h3,
footer h4,
footer h5 {
	color: #fff;
}

footer aside {
	margin-top: 30px;
}

footer .wpml-ls ul {
	display: inline-block;
}

footer ul {
	margin-bottom: 50px;
}

.widget-title {
	font-size: 22px;
}

#socket {
	color: #fff;
	background: #222223;
}

/* Archive */

article {
	width: 100%;
	padding: 30px;
	background: #f9f9f9;
	margin: 15px 0px;
	display: inline-block;
}

article .product-image {
	background-image: url(http://arky.convident.site/wp-content/uploads/2019/02/product-image_Tekengebied-1.png);
	width: 100%;
	height: 250px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

#acf-group_algemeen label.acf-message {
	display: none !important;
}

article h2.the-title {
	text-transform: uppercase;
	margin: 0px;
	padding-right: 50px;
}

article span.sub-title {
	margin-top: 10px;
	margin-bottom: 20px;
	display: block;
}

.catalogue__card-content {
	margin-bottom: 50px;
}

.catalogue__title {
    padding-top: 30px;
    margin-bottom: 20px;
}

.catalogue__list h3 {
    text-align: center;
	line-height: 1;
}

.catalogue__list h3 a {
    font-size: 18px;
    color: var(--text);
}


.faq-content,
.faq-sub-content,
.testiominal-content {
	z-index: 2;
	position: relative;
	padding-bottom: 0px;
}

.faq-item {
	position: relative;
	width: 100%;
}

.excerpt {
	position: relative;
	padding-left: 50px;
}

.testiominal-content:before,
.excerpt:before {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(./img/paragraph-icon.svg);
}

.testiominal-content:after,
.excerpt:after {
	content: '';
	width: 30px;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: 1;
	transform: translate(25%, -50%);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(./img/paragraph-line.svg);
}

.faq-title,
.faq-sub-title {
	cursor: pointer;
	color: #000000;
	margin: 15px 0;
	display: block;
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 10px;
	font-family: inherit;
	position: relative;
	text-transform: inherit !important;
	border-bottom: 1px solid #E5E5E5;

	transition: all 100ms ease-in;
}

.faq-title .title {
	font-size: 18px;
	font-weight: bold;
}

.faq-title::after,
.faq-sub-title::after {
	content: '\f061';
    font-family: 'FontAwesome';
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    margin-left: 12px;
	position: absolute;
	right: 0;

	transition: all 150ms ease-in;
}

.faq-title:hover,
.faq-sub-item:hover {
	color: var(--primary-green--hover);
	text-decoration: none;
}

.faq-title:hover::after,
.faq-sub-item:hover::after {
	color: var(--primary-green--hover);
	right: -0.5rem;
}

.container.faq {
	text-align: center;
	margin-bottom: 15px;
}

.aligncenter {
	position: relative;
	text-align: center;
	width: 100% !important;
}

.container.faq .title {
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	color: #1B9ED3;
}

.faqshow .faq-title:after {
	transform: rotate(90deg);
}

.faq-content p {
	margin-bottom: 0px;
}

.faq article {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.faq .inner {
	display: none;
	padding: 15px 0px;
}


.showfaq .inner {
	height: 100%;
}

.faq article {
	padding: 15px;
}

.woocommerce-cart .archive-title {
	position: relative;
	max-height: 100%;
	text-align: center;
	color: #222222;
}

.archive-title .title {
	position: relative;
	width: 100%;
	height: 100%;
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	line-height: 45px;
	margin-top: auto !important;
    margin-bottom: -25%;
}

.archive-title .positioner {
	display: flex;
	position: relative;
	width: 100%;
	flex-direction: row;
	align-items: center;
}

.woocommerce .head-content {
    color: var(--text) !important;
}

.head-content * {
    color: #ffffff;
}

.head-content .woocommerce * {
    color: #222222;
}

.woocommerce-MyAccount-navigation li.is-active a {
	font-weight: 900;
}

.head-content .woocommerce a {
    color: var(--primary-green) !important;
}

.woocommerce-info {
    border-top-color: var(--primary-green);
}

.woocommerce-info::before {
    color: var(--primary-green);
}

/* Swatches settings */
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    height: auto !important;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item .variable-item-span {
	text-align: left;
	padding: 0 8px;
}

.variable-item-span-color {
	height: 30px !important;
}

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

.breadcrumbs {
	padding: 5px 0px;
	color: var(--white);
}

.breadcrumbs .container {
	padding: 0;
}

.breadcrumbs p {
	font-size: 14px;
	margin-bottom: 0px;
}

.breadcrumbs .breadcrumb_last {
    font-weight: normal !important;
}

/* single */

.single-usp {
	margin: 0px;
	padding: 0px;
	margin-bottom: 30px;
}

.single-usp li {
	list-style: none;
	position: relative;
}

.single-usp li:before {
	content: '';
	width: 30px;
	height: 30px;
	position: relative;
	top: 9px;
	margin-right: 15px;
	background-repeat: no-repeat;
	display: inline-block;
	background-position: center;
	background-image: url(./img/usp.svg);
}

.secondaire {
	color: #016c92;
	background: none;
}

.secondaire:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	right: 6px;
	background: none;
	transform: skew(14deg) !important;
	border: 2px solid transparent;
	-moz-border-image: -moz-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	-webkit-border-image: -webkit-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	border-image: linear-gradient(to right, var(--primary-green) 0%, #E1251B 100%);
	border-image-slice: 1;
}

.secondaire:hover:after {
	z-index: -1;
	background: -moz-linear-gradient(right, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	background: -webkit-linear-gradient(right, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	background: linear-gradient(to left, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
}

.secondaire {
	border-left: 2px solid var(--primary-green);
}

.single-secondaire {
	margin-left: 20px;
}

.main-slide-nav .slick-slide {
	padding: 5px;
	margin: 5px;
	border: 1px solid #cdcccc;
}

.main-slide-nav .slick-list {
	float: left;
	width: 100%;
}

.main-slide-nav .slick-track {
	float: left;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.main-slide-nav .slick-track img:hover {
	cursor: pointer;
}

.main-slide-nav .slick-current {
	border: 1px solid transparent;
	-moz-border-image: -moz-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	-webkit-border-image: -webkit-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	border-image: linear-gradient(to right, var(--primary-green) 0%, #E1251B 100%);
	border-image-slice: 1;
}

section.dimensions {
	background: #f9f9f9;
}

.dimension-image {
	width: 100%;
	height: 350px;
	margin-bottom: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

hr {
	border: 1px solid transparent;
	-moz-border-image: -moz-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	-webkit-border-image: -webkit-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	border-image: linear-gradient(to right, var(--primary-green) 0%, #E1251B 100%);
	border-image-slice: 1;
}

.size {
	width: 100%;
	display: block;
}

ul.opties {
	list-style: none;
	margin: 0px;
	padding: 0px;
	margin-bottom: 60px;
}

ul.opties li {
	float: left;
	padding-right: 5px;
}

.product-video {
	margin-bottom: 30px;
}

#productoptions ul li {
	list-style-type: none;
}

#productoptions ul li:before {
	content: '';
	width: 30px;
	height: 30px;
	position: relative;
	top: 9px;
	margin-right: 15px;
	background-repeat: no-repeat;
	display: inline-block;
	background-position: center;
	background-image: url(./img/plusicon.svg);
}

/* page  */

.page-header-title:before {
	content: '';
	position: absolute;
	height: 100%;
	background: red;
	width: 130%;
	right: 0px;
	z-index: -1;
	background: -moz-linear-gradient(right, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	background: -webkit-linear-gradient(right, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	background: linear-gradient(to left, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e1251b', endColorstr='var(--primary-green)', GradientType=1);
}

.page-header {
	position: relative;
}

.page-header-image {
	height: 100%;
	width: 60%;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: -2;
	background-size: cover;
	background-position: center center;
}


.page-header-image:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	opacity: 0.5;
	background: -moz-linear-gradient(left, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	background: linear-gradient(to right, rgba(225, 37, 27, 1) 0%, rgba(0, 105, 143, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e1251b', endColorstr='var(--primary-green)', GradientType=1);
}

.page-header-title {
	color: #fff;
	display: flex;
	height: 350px;
	align-items: center;
}

.page-header-title h1 {
	font-size: 40px;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Barlow', sans-serif;
}

.hamburger {
	display: none;
}

.nav-mob {
	display: none;
}

.testimonials {
	width: 100%;
}

.testimonials-btns {
	display: none;
}

.testimonials-btns button.slick-arrow.slick-prev,
.testimonials-btns button.slick-arrow.slick-next {
	background: #313131;
	top: 0px;
	transform: inherit;
	background-size: 28%;
	background-repeat: no-repeat;
	background-position: center center;
}

.testimonials-btns button.slick-arrow.slick-prev {
	background-image: url(./img/testimonials-left.svg);
}

.testimonials-btns button.slick-arrow.slick-next {
	background-image: url(./img/testimonials-right.svg);
}


.lightbox {
	position: fixed;
	top: 0;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 99999;
}

.lightbox h2 {
	font-size: 25px !important;
}

.single-faq-box.active .lightbox {
	display: block;
	overflow: scroll;
}

.lightbox .inner {
	margin-left: auto;
	background: white;
	padding: 15px;
	width: 50%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#info-section {
	position: relative;
}

#info-section:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0px;
	height: 100%;
	z-index: -1;
	background-image: url(./img/before-pattern.svg);
	background-repeat: no-repeat;
	background-position: right;
	width: 50%;
}


/* Request */
.product-image-request {
	border: 2px solid transparent;
	-moz-border-image: -moz-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	-webkit-border-image: -webkit-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	border-image: linear-gradient(to right, var(--primary-green) 0%, #E1251B 100%);
	border-image-slice: 1;
	padding: 30px;
}

.the-product-image {
	width: 100%;
	text-align: center;
}


[type=reset],
[type=submit],
button,
html [type=button] {
	-webkit-appearance: none;
	border: 0px;
	background: none;
	cursor: pointer;
}

#optiontoggles p {
	margin-bottom: 0px;
}

.lightbox {
	background: rgba(0, 0, 0, 0.5);
}

.lightbox .inner {
	border-radius: 2px;
	border: 2px solid transparent;
	-moz-border-image: -moz-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	-webkit-border-image: -webkit-linear-gradient(left, var(--primary-green) 0%, #E1251B 100%);
	border-image: linear-gradient(to right, var(--primary-green) 0%, #E1251B 100%);
	border-image-slice: 1;
}

.contact-sidebar span {
	padding-bottom: 15px;
	display: block;
}

.lightbox h2 {
	font-size: 25px !important;
	max-width: 80%;
}

.socket-nav-box a {
	color: #fff;
}

/* Slick lightbox  */

button.slick-arrow.slick-prev {
	cursor: pointer;
	left: -60px;
	top: 50%;
	padding: 0 15px;
	position: absolute;
	border-radius: 100%;
	background-image: url(./img/left.svg);
	background-size: 18px 35px !important;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
}

.row.reviewitems.slick-initialized.slick-slider {
    padding-top: 30px;
    padding-bottom: 30px;
}



.col-md-12.reviewitems.slick-initialized.slick-slider {
    padding: 30px 0;
}

button.slick-arrow.slick-next {
	cursor: pointer;
	right: -110px;
	top: 50%;
	padding: 0 15px;
	position: absolute;
	border-radius: 100%;
	background-image: url(./img/right.svg);
	background-size: 18px 35px !important;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
}

.inner-testimonial p {
	margin-bottom: 0px;
}

.inner-testimonial article {
	margin: 0px;
	margin-bottom: 20px;
}

.rl {
	position: absolute;
	text-align: right;
	right: 15px;
}

.rla {
	margin-left: 50px;
}

/* Mobile menu */

@media screen and (min-width: 992px) {
	.navigatie.normal-menu .menu-hoofdmenu-container {
		height: auto !important;
	}

	.navigatie.normal-menu div#mobile-menu {
		display: none;
	}

    .mobile-menu-item {
        display: none !important;
    }
}

@media screen and (max-width: 1480px) {
    .main-nav .menu .contact-menus {
        display: none;
    }
}

@media screen and (max-width: 1330px) {
	.main-nav ul li a {
		padding: 32px 8px;
	}

    .bg-100 {
        margin-left: 0;
        border-radius: 0;
    }

}

@media screen and (max-width: 1280px) {
	.main-nav ul li a {
		font-size: 14px;
		padding: 32px 6px;
	}

    .home .hp-head, .archive-header  {
        margin: 0 !important;
    }

    .head-home {
        background-attachment: inherit;
    }

    .card-product {
        margin-bottom: 20px;
    }

	a.contact-menu {
		font-size: 13px;
	}

	#cta .cta-inner:after {
		right: -50px;
	}

    .slick-usps {
        margin: 0 !important;
    }
}

@media screen and (max-width: 991px) {
	.open-mobile {
		height: 100%;
		overflow: scroll;
		padding: 150px 0px 35px 0px;
	}

    .productusp {
        flex-direction: column;
    }

    .productusp .usps {
        padding-bottom: 10px;
    }

    .card-product img {
        height: 260px !important;
        object-fit: contain !important;
    }

    .container.minder, .fifty_fifty p {
        max-width: 100% !important;
    }

    .intro-category__content h1::after {
        display: none;
    }

    .strongitems {
        flex-direction: column;
        margin-top: 15px;
    }

    .fifty_fifty h4, .fifty_fifty h3, .fifty_fifty h2, .fifty_fifty h1 {
        max-width: 100% !important;
    }

    .product-info__holder-right form.cart {
        display: flex;
        align-items: center;
    }

    .product-info form.cart button.button::before {
        display: none
    }


    .productsingleUSP {
        flex-direction: column;
    }

    .productsingleUSP .usp-item {
        min-width: 100% !important;
        margin-bottom: 15px;
    }

    .single-head h1 {
        margin-top: 5px !important;
    }

    .voorraadHoeveelheid, .voorraadHoeveelheid {
        margin-top: 20px;
    }

    .strongitems .artikelnummer {
        margin: 0 !important;
    }

    .strongitems .spacer {
        display: none;
    }

    .intro-category__content h1 {
        font-size: 25px !important;
        line-height: 1.3;
    }

    .accessories .acc-title::after {
        display: none !important;
    }

    .bg-head h1::after {
        display: none;
    }

    section.big-item {
        margin-top: 40px;
    }

    .main-nav, #about-menu {
		display: none;
	}

    .main-navigation #logo {
        box-shadow: none;
    }

    .gallery-title .title {
        font-size: 22px;
    }

    .usps-home ul span {
        font-size: 15px;
    }

    .card-product img {
        height: 200px;
    }

    .landings-head .landings-img {
        height: 100%;
        margin-top: 50px;
    }

    .buttonrow .btn {
        padding: 10px 20px !important;
    }

    .category-section__sidebar {
        max-width: 100% !important;
    }

    .js-category-section__products {
        width: 100%;
        margin: 0;
    }

    .specs-landing {
        padding: 75px 20px !important;
    }

    .landings-head-usp .usp-area .row {
        gap: 20px;
    }

    .footer .footer-under {
        margin-top: 10px !important;
    }

    .builder-landingspage .options-landing .variations tbody {
        grid-template-columns: 1fr !important;
    }

    .telefoonnummercta {
        margin-bottom: 20px;
    }

    .single_add_to_cart_button {
        margin-top: 10px;
    }

    .builder-landingspage .options-landing .options-card {
        margin-right: 0 !important;
    }

    .content-product .price {
        margin-bottom: 15px;
        max-width: 100% !important;
    }

    .main-header .content p {
        margin: 0;
    }

	.hp-categorieen {
		margin-bottom: 30px;
	}

	#cta .cta-inner:after {
		right: -121px;
		width: 300%;
	}

	.lightbox .inner {
		width: 75%;
	}

	.single-secondaire {
		margin-left: 0px;
	}

	ul.sub-menu {
		position: relative;
	}

    .steps-section {
        background-repeat: round !important;
    }

	.menu-item-has-children:hover>ul.sub-menu {
		display: none;
	}

	.menu-item-has-children a {
		position: initial;
		width: auto;
		padding: 0px !important;
	}

	.menu-item-has-children a:after {
		display: none;
	}

	.menu-item-has-children:after {
		content: '';
		position: absolute;
		right: 15px;
		top: 23px;
		width: 10px;
		height: 10px;
		background-image: url(./img/menu-d.svg);
		background-repeat: no-repeat;
		background-size: contain;
	}

	.menu-item-has-children:hover:after {
		background-image: url(./img/menu-d.svg);
	}

	.is-open:after {
		transform: rotate(-180deg);
	}

	h1, h1 a {
		font-size: 32px;
	}

	h2 {
		font-size: 24px;
	}

    .icons-section h2 {
        text-align: left !important;
    }

    h3 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    footer .footer-under {
        flex-direction: column;
        gap: 10px;
    }

    .socials {
        margin: 0;
    }

    .home-cta .row {
        gap: 20px;
    }

	.request-qoute {
		margin-top: 30px;
	}

	.categories {
		margin-top: 30px;
	}

	#info-section:after {
		top: inherit !important;
		bottom: 15px;
		height: 32px !important;
		/* background-size: cover; */
		opacity: 0.8;
		background-image: url(./img/icon.svg) !important;
		background-repeat: no-repeat !important;
		background-position: 94% bottom !important;
		background-size: 12%;
	}

	.single-secondaire {
		margin-left: 0px;
		float: none;
		clear: both;
	}

	article {
		padding: 15px;
	}

	.call-slider {
		display: none;
	}

	.col-8 {
		width: 80%;
	}

	.slick-list {
		width: 100% !important;
	}

	.slide-inner-content {
		float: left;
		width: 60%;
		padding-left: 15px;
		overflow: visible;
	}

	span.attr-text-product {
		display: none;
	}

	.hp-head .left-content h2 {
		text-transform: uppercase;
		font-weight: bold;
		font-family: 'Barlow', sans-serif;;
		font-size: 20px;
		color: #fff;
	}

	.slide-inner-content h3 {
		color: #fff;
		margin-top: 34px;
		font-size: 22px;
	}

	.slide-inner-content ul li {
		display: grid;
		margin-bottom: 10px;
		float: left;
		width: 50%;
	}

	.gradient {
		width: 70%;
		right: 50%;
		height: 750px;
		position: absolute;
		overflow: hidden;
	}


	#cta {
		margin-top: 60px;
	}

	footer .info-bar .row {
		text-align: left;
	}

	footer .info-bar .small-btn {
		width: 100%;
		float: none;
		display: block;
		padding: 20px 0px 0px 0px;
	}

	.info-bar {
		margin: 0px;
		padding: 0px;
	}

	.footer-widgets .menu li {
		text-align: left;
		display: block;
		padding: 0px;
	}

	.center {
		text-align: inherit;
	}

	.testimonials-btns {
		float: right;
		display: block;
	}

	#content {
		padding-bottom: 0px;
		margin-bottom: 0px;
	}

	.darken-right {
		padding: 0px !important;
	}

	.nav-mob ul {
		text-align: center;
	}

	.nav-mob {
		overflow: hidden;
		position: fixed;
		top: 0px;
		height: 0%;
		width: 100%;
		z-index: 9998;
		background: white;
		display: flex;
		align-items: center;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.nav-mob.open-mobile {
		overflow: hidden;
		position: fixed;
		top: 0px;
		height: auto;
		width: 100%;
		z-index: 9998;
		background: white;
		display: flex;
		align-items: center;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		box-shadow: 0px 0px 10px rgb(0 0 0 / 75%);
	}

	#mobile-menu-ul .wpml-ls-item {
		display: none !important;
	}

    #mobile-menu-ul li a {
        font-size: 16px;
        color: var(--text);
    }

    #mobile-menu-ul .current_page_item {
        background-color: var(--light-grey);
    }

	a.contact-menu {
		margin-right: inherit;
	}

	.menu li {
		display: inline-block;
		width: 100%;
		padding: 15px 0px;
		text-align: center;
	}

	.nav-mob ul {
		padding: 0px;
		margin: 0px;
	}

	a.contact-menu {
		margin-left: 0px;
	}

	.hp-categorie .inner {
		margin-bottom: 0px;
	}

	.hamburger {
        position: absolute;
        display: inline-block;
        width: 55px;
        padding-left: 13px;
        padding-top: 9px;
        height: 55px;
        top: -28px;
        bottom: -1px;
        right: 15px;
        background: white;
        border-radius: 50%;
    }

	.open-burger div:nth-child(1) {
		transform: rotate(42deg);
		transform-origin: left;
	}

	.open-burger div:nth-child(2) {
		width: 0px;
		opacity: 0;
	}

	.open-burger div:nth-child(3) {
		transform: rotate(-42deg);
		transform-origin: left;
	}

	.is_fixed {
		width: 100%;
		height: 70px;
		display: block;
	}

	.hamburger div {
		width: 100%;
        min-height: 4px;
        background-color: var(--text);
        margin: 6px 0;
        width: 30px;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
	}

	.wpml {
		display: block;
		float: right;
		position: absolute;
		right: 80px;
		top: -20px;
	}

	.faq-content:after,
	.testiominal-content:after {
		content: '';
		width: 30px;
		height: 100%;
		position: absolute;
		left: 0px;
		top: 50%;
		z-index: -2;
		transform: translate(39%, -50%);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-image: url(./img/paragraph-line.svg);
	}

	.darken {
		position: relative;
		padding: 30px 15px 60px 15px;
	}

	.darken:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0px;
		left: inherit;
		background: #F9F9F9;
		width: 150%;
		height: 100%;
		z-index: -1;
	}

	.darken:after {
		top: inherit;
		bottom: 15px;
		height: 32px;
		opacity: 0.8;
		background: url(./img/icon.svg);
		background-repeat: no-repeat;
		background-position: 94% bottom;
		background-size: contain;
		right: 0px;
	}

	.scroll-down {
		display: none;
	}

	#dots {
		display: none;
	}

	.usps li {
		float: none;
		width: 100%;
	}

	/* mobile menu */

	.fixed-nav-spacer {
		height: 70px;
	}

	#primary-menu.menu-hoofdmenu-container {
		display: none;
	}

	.mobile-menu-toggle-position {
		display: block;
	}

	.menu-hoofdmenu-container {
		display: block;
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		z-index: 99;
		overflow: hidden;
		-webkit-transition: all 1s ease-in-out;
		-moz-transition: all 1s ease-in-out;
		-o-transition: all 1s ease-in-out;
		transition: all 1s ease-in-out;
	}

	body.menu-open .menu-hoofdmenu-container {
		display: block;
		height: 100%;
	}

	.mobile-menu ul#primary-menu {
		float: none;
	}

	body .mobile-menu-toggle-position {
		z-index: 100;
	}

	body .mobile-menu .menu li {
		width: 100%;
		text-align: center;
		vertical-align: middle;
	}

	body .mobile-menu .menu li a {
		padding: 20px !important;
	}

	body .menu-hoofdmenu-container li.btn a {
		padding: 10px 15px !important;
		margin-bottom: 25px;
		margin-left: -30px;
	}

	.menu-hoofdmenu-container-not-mobile {
		display: none;
	}

	ul#mobile-menu {
		padding: 0;
	}

	ul#mobile-menu form.search-form {
		display: inline-block;
	}

	*/

	/* einde mobile menu */
	.topbar {
		display: none;
	}


	div#logo a {
		line-height: 70px;
	}

	#logo img {
		max-height: 50px;
	}

	#primary-menu-ul {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.background-image-carrousel {
		height: 650px;
		background-size: cover;
		background-position: center center;
	}

	.slide-achtergrond {
		width: 100%;
		height: 650px;
		margin-top: -100px;
	}

    .card-product img {
        height: 325px;
    }

	.slider {
		position: absolute;
		bottom: 0px;
		width: 100%;
		left: 0px;
		right: 0px;
	}

	.hp-categorieen {
		display: block;
	}

    .main-header .content p {
        font-size: 14px;
        white-space: nowrap;
    }

	.hp-head .product-informatie {
		display: block;
	}

	.carousel-thumb {
		width: 50%;
		margin: 0 auto;
		float: none;
	}

	.slide-inner-content {
		width: 100%;
	}

	.slider .slide {
		height: 650px;
		overflow: hidden;
	}

	.slider .slide {
		display: flex;
		align-items: center;
		height: 450px
	}

	.dots,
	.call-slider {
		display: none;
	}

	#cta .cta-inner:after {
		right: 0px;
	}

	.gradient {
		width: 100%;
		height: 530px;
		right: 0px;
		overflow: hidden;
		position: relative;
	}

	.hp-head .left-content {
		width: 100%;
		max-height: inherit;
		overflow: hidden;
	}

	.hp-head .container .row {
		min-height: 450px;
		padding: 60px 0px 60px 0px;
		display: flex;
		align-items: center;
	}

	span.attr-text-product {
		display: none;
	}

	.slide-inner-content ul li {
		display: inherit;
		margin-bottom: 10px;
		margin-right: 10px;
		width: 35px;
		float: left;
	}

	.hp-head .left-content h2 {
		text-transform: uppercase;
		font-weight: bold;
		font-family: 'Barlow', sans-serif;;
		font-size: 24px;
		color: #fff;
	}

	.gradient:after {
		width: 160%;
	}

	.slide-achtergrond {
		position: relative;
	}

	.hp-head .left-content {
		top: 0px;
	}

	.hp-head .left-content {
		width: 100%;
	}

	.desktop {
		display: none;
	}
}

footer ::marker {
	display: none !important;
	color: transparent;
}

ul#menu-aboutmenu,
ul.footer-nav {
	padding-left: 0;
}

footer li {
	margin-bottom: 15px;
}

footer img {
    position: relative;
    max-width: 280px !important;
    object-fit: contain;
    margin-bottom: 35px;
    width: auto;
}

.footer-contact-part p {
	margin-bottom: 5px;
}

footer .spacer {
	margin-bottom: 35px;
}

.wpml-ls-menu-item .wpml-ls-flag {
	position: relative;
	top: 5px;
	width: 25px !important;
	height: 23px !important;
	border-radius: 50%;
}

.wpml-ls-item a::after {
	display: none !important;
}

.wpml-ls-item a {
	padding: 20px 15px;
}

#logo {
    float: left;
    flex-grow: 1;
}

nav.menu-scrolled #logo {
    box-shadow: none;
}

.wpml-ls-item ul.sub-menu li {
	position: relative;
	width: 47px;
	height: 53px;
}

.wpml-ls-item ul.sub-menu li a {
	padding: 10px !important;
}

.home .hp-head {
	height: 750px;
	max-height: 100%;
    margin: 0 60px;
}

.home .left-content {
    height: 100%;
	padding-left: 0;
	padding-right: 0;
}

.home .hp-head .content-slide {
    height: 100%;
    align-items: center;
    justify-content: center;
}

.single-products section.single-product {
	padding-top: 120px;
}

.single-products nav {
	background: #FFFFFF;
	width: 100%;
	position: fixed;
	z-index: 99999;
	transition: all ease-in-out 0.5s;
}

.single-products .menu-scrolled nav {
	box-shadow: 0px 0px 10px rgb(0 0 0 / 75%);
}

.single-products .logo-blue {
	display: block !important;
}

.single-products .logo-white {
	display: none !important;
}

.single-products .main-nav ul li a {
	color: var(--primary-green) !important;
}

.single-products .main-nav ul li#menu-item-3491 a,
.single-products .main-nav ul li.contact-menus a {
	color: #FFFFFF !important;
}

.single-products .menu-item-has-children>a:after {
	content: '';
	position: absolute;
	right: 15px;
	top: 22px;
	width: 10px;
	height: 10px;
	background-image: url(./img/arrow-down-blue.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: ease-in all 0.3s;
}

.single-products .menu-item-has-children a:hover::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 22px;
	width: 10px;
	height: 10px;
	background-image: url(./img/arrow-down-blue.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: ease-out all 0.3s;
}

.single-products .menu-item-has-children .sub-menu a:hover::after {
	display: none !important;
}

/* Product card */
.card-product .yith-wcwl-add-to-wishlist, .card-product .yith-wishlist-without-login-btn {
    position: absolute;
    z-index: 1;
    right: 25px;
    background-color: white;
    border-radius: 50px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
}

.yith-wcwl-add-to-wishlist {
    margin-top: 0;
}

.yith-wcwl-add-button {
    margin-top: 7px;
}

.card-product .content-product {
    padding: 15px 0;
}

.card-product .title a {
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-align: start;
    letter-spacing: 0.75px;
    color: var(--primary-green);
}

.card-product .subtitle {
    font-weight: 400;
    display: block;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.75px;
    color: var(--text);
    margin-top: 0px;
}

a.readmore {
    font-weight: 500;
	text-transform: uppercase;
	color: #000;
}

.readmore img {
	position: relative;
	top: -2px;
	margin-left: 10px;
}

.woocommerce-variation-price {
	text-align: right;
	margin-top: 20px;
}

.content-product .subtitle {
	color: #868686;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.75px;
}

.card-product .price bdi, .price span {
	font-weight: 900;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 0.75px;
}

.product-info .woocommerce-Price-amount bdi, .product-info .woocommerce-Price-amount span  {
	font-size: 30px;
	font-weight: 900;

}

.product-info .woocommerce-Price-amount::before {
	content: 'Totaal prijs ';
	font-size: 16px;
	font-weight: 500;
	margin-right: 5px;
}
.card-product .price {
	margin-top: 20px;
	display: block;
}

.card-product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a, .card-product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span  {
    font-size: 0;
}

.card-product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
    font: 17px/1 FontAwesome;
    margin-right: 0;
    margin-top: 0px;
    margin-left: 0px;
	margin-bottom: 0px;
    color: var(--text);
}

.card-product {
	overflow: hidden !important;
}

.card-product .content-product {
	overflow: hidden !important;
}

.card-product a {
	position: relative;
	width: 100%;
    display: inline-block; /* change the default display type to inline-block */
    overflow: hidden;      /* hide the overflow */
}

.yith-wishlist-without-login-btn a {
	text-align: center;
}

.card-product .content-product {
	padding: 10px 0px 15px 0px;
}

.compare_and_cart.d-flex.flex-wrap.justify-content-end.align-items-center {
    max-width: 80px;
	margin-left: auto;
}

li.wc-block-product-categories-list-item {
    margin-bottom: 15px;
}

a.btn.shortcode-btn.red {
    background: #29C1DD;
    color: #FFF;
}

.card-product img {
    position: relative;
    object-fit: contain;
    object-position: center;
    height: auto;
    max-height: 355px;
    overflow: hidden!important;
    width: 100%;
    border-radius: 0!important;
    transition: all ease-in-out 250ms;
}

.archive .card-product img {
    position: relative;
    object-fit: contain;
    object-position: center;
    height: auto;
    max-height: 450px;
    overflow: hidden!important;
    width: 100%;
    border-radius: 0!important;
    transition: all ease-in-out 250ms;
}

.archive .card-product a img {
	height: 355px;
}

.archive .content-product .title {
    position: relative;
    min-height: 72;
}

.card-product a {
	transition: all ease-in-out 250ms;
}

.footer-newsletter-form div#frm_field_156_container, .footer-newsletter-form div#frm_field_157_container {
    width: 100% !important;
}

.card-product a:hover img {
	transform: scale(1.1);
	transition: all ease-in-out 250ms;
	border-radius: 10px 10px 0 0;
}

.card-product .button.add_to_cart_button::before {
    content: "\f07a";
    font-family: "FontAwesome";
    font-weight: 400;
    font-size: 22px;
}

.card-product .button.add_to_cart_button {
    font-size: 0;
    color: #fff;
    background-color: var(--primary-green);
    border-radius: 4px;
    padding: 10px 30px;
    transition: all 0.3s ease-in-out;
}

.card-product .compare_and_cart {
    gap: 10px;
}

.recommended .all-products {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 300;
}

.recommended .all-products:after {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    margin-left: 12px;
}

/* Product Archive */

.intro-category {
	position: relative;
	padding-top: 30px;
}
.intro-category__back {
margin-bottom: 20px;
}
.intro-category__back i {
margin-right: 10px;
color: #adb5bd;

}

.col-lg-12.p-0.nieuws-column {
	padding-left: 0;
	padding-right: 0;
}

.datetime {
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
    gap: 20px;
}

.datetime .title {
	font-size: 20px;
	height: fit-content;
}

.datetime .title h2 {
	margin-bottom: 0;
    line-height: 1.4;
	font-size: 20px !important;
}

.content .intro {
	margin-top: 5px;
}

.sidebar .widget h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.col-lg-4.col-md-12.col-sm-12.sidebar {
	background: #E8E8E8;
}

.datetime .date {
	position: relative;
    height: fit-content;
    top: 5px;
    white-space: nowrap;
}

.single-nieuws img {
	max-height: 250px;
    object-fit: cover;
    object-position: center;
}

.intro-category__back a {
display: inline-block;
text-decoration: none;
color: var(--text);
font-weight: 300;
}

.clickable-offerte svg {
	margin-right: 10px;
}


.single-post main {
	padding: 15px 0 !important;
}

.single-nieuws .thumbnail {
	background: #F5F5F5;
}

.single-nieuws.col-md-4 {
	margin-bottom: 30px;
}


@media screen and (max-width: 768px) {
	.landing-content .buttonrow {
		display: block !important;
	}
	.wrapper .toggle_btn, .toggle_btn_blocks {
		margin-top: 25px;
		font-weight: 900;
		color: var(--text);
		cursor: pointer;
		font-size: 15px;
		margin-bottom: 15px;
	}
}


.blog main {
	padding: 15px 0 60px 0 !important;
}

.intro-category__back a::before {
	content: '\f060';
	font-family: 'FontAwesome';
	font-weight: 100;
	margin-top: 3px;
	margin-right: 10px;
	font-size: 16px;
	color: var(--text);
}

.product-info__nav .slick-slide {
	background: #F5F5F5;
}

.intro-category__contact {
	padding: 30px 20px;
    border-radius: 9px;
    background: var(--primary-green);
}

.intro-category__contact p, .intro-category__contact h3 {
	color: white;
}
.intro-category__contact img {
	width: 57px;
	border-radius: 50%;
}
.intro-category__contact h3 {
	font-size: 20px;
	width: calc(100% - 67px);
	margin-bottom: 0;
}
.intro-category__subcat {
	padding-top: 20px;
	padding-bottom: 15px;
}
.intro-category__subcat a.slick-slide {
	width: 200px;
	height: 80px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background-color: #fff;
	padding: 0 15px;
	font-weight: 900;
	margin-left: 7px;
	margin-right: 7px;
}
.intro-category__subcat a.slick-slide:hover {
	color: #fff;
	background-color: #00b900;
}
.intro-category__subcat a.slick-slide h4 {
	margin-bottom: 0;
	text-align: center;
}
.intro-category__subcat a.slick-slide img {
	max-height: calc(100% - 10px);
	-o-object-fit: contain;
		object-fit: contain;
	width: 54px;
}
.intro-category__subcat a.slick-slide img + h4 {
	margin-left: 10px;
	text-align: left;
}
.intro-category__subcat .slick-prev,
.intro-category__subcat .slick-next {
	transform: none;
	top: auto;
	bottom: 0;
}
.intro-category__subcat .slick-prev:hover,
.intro-category__subcat .slick-next:hover {
	opacity: 0.5;
}
.intro-category__subcat .slick-prev::before,
.intro-category__subcat .slick-next::before {
	color: #c4c4c4;
	font-size: 22px;
}
.intro-category__subcat .slick-prev {
	left: auto;
	right: 30px;
}
.intro-category__subcat .slick-next {
	right: 0;
}

.page-content-col section {
	max-width: 100% !important;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.page-content-col section .container {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.intro-category__filter {
    padding: 0 30px;
    position: absolute;
    bottom: 0;
    left: -15px;
    z-index: 8;
    display: flex;
    align-items: center;
    width: calc(100% + 30px);
    height: 52px;
}

.intro-category__filter a {
padding: 7px 20px;
align-items: center;
width: 80px;
font-size: 13px;
font-weight: 300;
text-decoration: none;
color: #fff;
border-radius: 6px;
background: var(--primary-green);
box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.08);
}

/* Product single */
.product-info .product-info__holder {
	padding-top: 20px;
}

.product-info .single-head {
	display: flex;
	justify-content: space-between;
}

.product-info .fa-heart::before, .product-info .fa-heart-o:before {
	font-size: 24px;
	color: var(--text);
}

.product-info .fa-heart, .product-info .fa-heart-o {
	margin-top: 8px;
	padding: 12px;
	border-radius: 50px;
	background-color: var(--light-grey);
}

.woocommerce-cart .woocommerce a.button.alt {
	background-color: var(--primary-green) !important;
	color: #FFFFFF !important;
}

.woocommerce a.button.alt {
	background-color: transparent !important;
}


.cart_totals h2 {
	text-align: start;
}

#add_payment_method .wc-proceed-to-checkout, .woocommerce-cart .wc-proceed-to-checkout, .woocommerce-checkout .wc-proceed-to-checkout {
	padding: 0 !important;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	margin: 0 !important;
}

li.variable-item.selected {
    background-color: #f5f5f5 !important;
    box-shadow: var(--wvs-selected-item-box-shadow,0 0 0 2px #e6e6e6) !important;
}


.product-info a.button.alt {
	font-size: 0;
	padding: 0;
}

.product-info .yith-wcwl-add-button>a i {
	margin: 0;
}

.product-info a.add_to_wishlist span {
	font-size: 0;
}

.product-info .fa-heart:hover {
	transform: scale(1.05);
}

.product-info__holder {
	margin-bottom: 30px;
}

.product-info__holder-left {
    width: 65%;
}
.product-info {
	padding-bottom: 30px;
}


@media (min-width: 992px) {
.product-info {
	padding-bottom: 50px;
}
}
.product-info__meta {
display: flex;
flex-wrap: wrap;
align-content: center;
align-items: center;
width: 100%;
line-height: 1.4;
margin-bottom: 30px;
}
.product-info__stars {
display: inline-flex;
flex-wrap: wrap;
}
.product-info__stars::after {
margin-right: 10px;
margin-left: 10px;
color: #dadada;
content: "|";
}
.product-info__brand::after {
margin-right: 10px;
margin-left: 10px;
color: #dadada;
content: "|";
}
.product-info__link::after {
margin-right: 10px;
margin-left: 10px;
color: #dadada;
content: "|";
}
.product-info__compare .br_compare_button:hover {
color: inherit !important;
background-color: transparent !important;
}
.product-info__compare .br_compare_button i.fa::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
}
.product-info__compare .br_compare_button i.fa.fa-square-o::before {
content: "\f0c8";
}
.product-info__compare .br_compare_button i.fa.fa-check-square-o::before {
content: "\f14a";
}
.product-info__for-slide {
cursor: zoom-in;
}
.product-info__for .slick-prev::before,
.product-info__for .slick-next::before {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
font-size: 16px;
color: #838383;
}
.product-info__for .slick-prev {
left: 0;
}
.product-info__for .slick-prev::before {
content: "\f060";
}
.product-info__for .slick-next {
right: 0;
}
.product-info__for .slick-next::before {
content: "\f061";
}

.product-info__bottom .slick-track {
	width: 100% !important;
	margin-top: 20px;
	display: grid;
}

.product-info__bottom .slick-track .slick-slide {
	margin-bottom: 15px;
}

.product-info__bottom {
position: relative;
}

.product-info__bottom-image {
position: absolute;
top: 0;
right: 0;
display: flex !important;
align-content: center;
align-items: center;
justify-content: center;
width: 17%;
height: 60px;
text-decoration: none;
color: #fff;
border: 1px solid #e2e2e2;
border-radius: 4px;
margin-right: 5px;
padding: 5px;
}
@media (min-width: 992px) {
	.product-info__bottom-image {
		height: 93px;
	}
}
@media (min-width: 1200px) {
.product-info__bottom-image {
	width: 18.3%;
}
}
.product-info__bottom-image::after {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
border-radius: 4px;
background: rgba(0, 0, 0, 0.3);
content: "";
}
.product-info__bottom-image span {
position: absolute;
top: 50%;
left: 0;
z-index: 1;
display: block;
width: 100%;
font-weight: 300;
text-align: center;
color: #fff;
transform: translateY(-50%);
}

.product-info__nav-slide {
margin-right: 5px;
display: flex !important;
align-content: center;
align-items: center;
justify-content: center;
width: 100px !important;
height: 100px;
border: 0;
cursor: pointer;
}

.product-info .product-info__for img {
    height: 600px;
    object-fit: contain;
    width: 100%;
    object-position: center;
    padding-left: 110px;
} 

.product-info .product-info__nav img {
	height: 80px;
	object-fit: cover;
	width: 100%;
	object-position: center;
	opacity: 0.6;
}

.product-info__bottom {
    position: absolute;
    top: 195px;
}

.product-info__nav-slide.slick-current img {
opacity: 1;
}

.product-info__holder-left {
width: 100%;
}
@media (min-width: 768px) {
.product-info__holder-left {
	width: 50%;
}
}
@media (min-width: 1400px) {
.product-info__holder-left {
	width: 53%;
}
}
.product-info__holder-right {
width: 100%;
}
@media (min-width: 768px) {
.product-info__holder-right {
	width: 40%;
}
}
@media (min-width: 992px) {
.product-info__holder-right {
	width: 40%;
}
}
.product-info__price {
padding-top: 30px;
}
@media (min-width: 768px) {
.product-info__price {
	padding-top: 0;
}
}
.product-info__price-for {
font-size: 16px;
font-weight: 300;
color: #121212;
display: flex;
align-items: center;
justify-content: end;
gap: 10px;
}

.product-info__price-for bdi, .product-info__price-for span {
	font-weight: 900;
	font-size: 35px;
	line-height: 44px;
	letter-spacing: 0.75px;
}

.product-info__price-hurry {
position: relative;
font-size: 16px;
font-weight: 300;
color: #008500;
}

@media (max-width: 1199px) {
.product-info__price-hurry {
	display: block;
}
}
.product-info__description {
    margin-top: 0;
    margin-bottom: 15px;
}

.product-info__description a::after, a.intro-category__more::after {
	content: '\f078';
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: 300;
	margin-left: 10px;
}

a.intro-category__more {
    font-weight: 300;
}

.woocommerce-variation .woocommerce-variation-description {
    display: none !important;
}

.product-info .variations tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    margin-right: 28px;
    float: left;
}

.product-info .variations tbody tr:first-child {

}

.product-info .variations label {
	margin-bottom: 0;
}

.product-info select {
    background: #f5f5f5;
	border: 0;
    border-radius: 5px;
    color: var(--text);
    padding: 5px 15px;
    width: 200px;
    border-right: 16px solid transparent;
}

.product-info a.reset_variations {
	display: none !important;
}

.product-info select option:hover {
	background-color: var(--primary-green);
}

.productoptions select {
    background: #f5f5f5;
	border: 0;
    border-radius: 5px;
    color: var(--text);
    padding: 5px 15px;
    width: 100%;
    border-right: 16px solid transparent;
}

.ul.variable-items-wrapper.button-variable-items-wrapper.wvs-style-squared {
	gap: 5px;
}

.product-info form.cart.variations_form .variations {
width: 100%;
}
.product-info form.cart.variations_form .single_variation_wrap {
width: 100%;
}

.product-info form.cart .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
	margin-top: 15px;
	justify-content: end;
	float: right;
}


.product-info form.cart .quantity {
margin-bottom: 15px;
margin-right: calc(100% - 116px);
}
@media (min-width: 576px) {
.product-info form.cart .quantity {
	margin: 0;
}
}
@media (min-width: 768px) {
.product-info form.cart .quantity {
	margin-bottom: 0;
	margin-right: calc(100% - 116px);
}
}
@media (min-width: 1200px) {
.product-info form.cart .quantity {
	margin: 0;
}
}
.product-info form.cart button.button {
	height: auto;
	line-height: 25px;
	white-space: nowrap;
	text-align: center;
	box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.08);
	flex: 1;
	padding: 0 35px;
	margin-right: 12px;
	background-color: #00B900;
}

button.single_add_to_cart_button.button.alt {
	width: 300px;
	max-width: 350px !important;
}

.product-info form.cart button.button {
	padding: 10px !important;
}

.product-info li.variable-item.selected:focus {
	border: none;
    border-radius: 3px!important;
    padding: 3px!important;
}

.variation dd p {
	margin-bottom: 5px !important;
}

.shop_table .variation dd p {
	margin-bottom: 0 !important;
}

.bg-green {
	background-color: var(--primary-green);
}

.bg-green * {
	color: #FFFFFF !important;
}



iframe {
	position: relative !important;
	max-width: 100% !important;
	max-height: 100% !important;
}

.form-row .collapsible-content__inner {
    text-align: start;
}

.product-info  button.button.alt.disabled , .product-info  button.button.alt.disabled:hover  {
	background-color: #a2a596;
}

.product-info form.cart button.button:hover {
	background-color: var(--text);
}

@media (min-width: 576px) {
	.product-info form.cart button.button {
		margin: 0 12px;
	}
}
@media (min-width: 768px) {
	.product-info form.cart button.button {
		margin: 0 12px 0 0;
	}
}
@media (min-width: 1200px) {
	.product-info form.cart button.button {
		margin: 0 12px;
	}
	.product-info .quantity .qty {
		font-weight: 500;
		padding: 11px 0;
		margin-top: -5px;
		margin-right: 15px;
	}
}
.product-info form.cart button.button::before {
	content: "\f07a";
	font-family: "FontAwesome";
	font-weight: 400;
	margin-right: 10px;
}

.big-background .col-md-11.offset-1 img.biggie {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.product-info button.button.alt.disabled, .product-info button.button.alt.disabled:hover {
	background-color: gray !important;
}

.floating-content {
    border-radius: 10px;
    max-width: 650px;
    max-height: 430px;
    background: #FFF;
    position: absolute;
    top: -30px;
    left: -90px;
    padding: 60px 30px;
	box-shadow: 0px 0px 20px rgb(99 99 99 / 10%);
}

.big-background a {
	font-weight: 900;
}

.big-background .bubble {
	padding: 1px 5px;
    border-radius: 50%;
    background: #29C1DD;
    font-size: 14px;
    color: #FFF;
    font-weight: 300;
    position: relative;
    bottom: 0px;
    margin-left: 5px;
    transition: all ease-in-out 250ms;
}

a.button.selecteer-optie.product_type_variable.add_to_cart_button::before {
	content: "\f07a";
	font-family: "FontAwesome";
	font-weight: 400;
	margin-right: 10px;
}

.product-info form.cart button.button.loading::after {
top: 50% !important;
margin-top: -25px !important;
}
.product-info form.cart .added_to_cart {
display: none !important;
}
.product-info form.cart .yith-wcwl-add-to-wishlist {
margin-top: 0;
}
.product-info form.cart .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .separator {
display: none;
}
.product-info form.cart .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .view-wishlist {
display: none;
}
.product-info form.cart .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
font-size: 0;
color: #393939;
border: 1px solid #dadada;
background-color: #F5F7FA;
height: 50px;
line-height: 50px;
text-align: center;
white-space: nowrap;
box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.08);
display: flex;
padding: 0 24px;
}
.product-info form.cart .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
display: none;
}
.product-info form.cart .yith-withoutlogin a {
font-size: 0;
color: #393939;
border: 1px solid #dadada;
border-radius: 4px;
background-color: #F5F7FA;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
white-space: nowrap;
box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.08);
display: flex;
align-items: center;
justify-content: center;
padding: 0 24px;
}
.product-info form.cart .yith-withoutlogin a i {
margin: 0;
display: block;
font-size: 16px;
}
.product-info .pwb-single-product-brands {
display: none;
}
.product-info__list ul {
list-style: none;
padding-left: 0;
margin-bottom: 0;
}
.product-info__list ul li {
color: #282830;
width: 100%;
position: relative;
padding-left: 20px;
margin-bottom: 10px;
}
.product-info__list ul li::before {
content: "\f058";
font-size: 15px;
color: #f60;
position: absolute;
top: 1px;
left: 0;
font-family: "Font Awesome 5 Pro";
font-weight: 900;
}

.content-product .product-content__list li {
    padding: 5px !important;
    display: flex;
    align-items: center;

}

.content-product .product-content__list {
	margin-bottom: 15px !important;
	min-height: 85px;
}

.usp-single {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.4px;
}

.mobile-menu-item {
	position: relative;
	border-radius: 4px;
	margin-bottom: 15px !important;
}
.usp-single::before {
    content: '\f00c';
    font-size: 20px;
    font-family: "FontAwesome";
    font-weight: 300;
    margin-right: 10px;
    color: #29C1DD;
}

.product-content__holder h3 {
	font-weight: 900;
	margin-bottom: 15px;
}
  
  .product-content {
	margin-bottom: 30px;
	position: relative;
	width: 100%;
  }
  @media (min-width: 992px) {
	.product-content {
	  padding-bottom: 60px;
	  margin-bottom: 50px;
	}
  }
  .product-content__top {
	margin-bottom: 40px;
	box-shadow: 0 30px 50px rgba(40, 56, 74, 0.05);
  }
  .product-content__top-link {
	text-decoration: none;
	margin-right: 15px;
	margin-bottom: 20px;
  }
  @media (min-width: 992px) {
	.product-content__top-link {
	  margin-right: 30px;
	}
  }
  .product-content__top-link.is-active {
	font-weight: 300;
  }
  .product-content__holder {
	position: relative;
  }
  .product-content__panel {
	position: relative;
	display: none;
	line-height: 2;
  }
  @media (min-width: 768px) {
	.product-content__panel {
	  margin: 0 !important;
	  display: block !important;
	  height: auto !important;
	}
  }
  @media (max-width: 767px) {
	.product-content__panel {
	  padding: 15px 0;
	}
	.review-card {
		margin-top: 30px !important;
	}
	.slider-review .slick-list {
		margin: auto !important;
	}
	.review .d-flex {
		display: block !important;
	}
	.builder-landingspage .options-landing #frm_form_10_container {
		padding: 15px !important;
	}
	.builder-landingspage .blocks-landing .blocks-content {
		padding: 15px !important;
	}
	.landing-content h1, .head-home h1 {
		line-height: normal !important;
	}

    .head-home .bg-head {
        background-position: right;
    }
	.head-home .offset-1 {
		margin-left: 0 !important;
	}
	.landing-content {
		margin-left: 0 !important;
	}

  }

  .product-content__holder .product-desc span {
    display: block;
    margin-bottom: 15px;
  }

  .product-info__holder-right .subtitle {
    color: #868686;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.75px;
    position: absolute;
    margin-top: -15px;
  }


  .categorien strong {
	font-size: 16px;
	margin-right: 5px;
  }

  .categorien {
	margin-bottom: 30px;
  }

  .product-content__holder {
	background-color: #FBFBFB;
	padding: 60px 0;
	margin: 40px 0;
  }
  .product-content__list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
  }
  .product-content__list li {
	padding: 11px 25px;
	display: flex;
	align-items: center;
  }
  .product-content__list li strong {
	width: 50%;
  }
  @media (min-width: 992px) {
	.product-content__list li strong {
	  width: 37%;
	}
  }
  .product-content__list li span {
	width: 50%;
	color: #6c6c7c;
  }
  @media (min-width: 992px) {
	.product-content__list li span {
	  width: 63%;
	  text-align: end;
	}
  }
  .product-content__list li:nth-child(odd) {
	background: white;
  }
  .product-content__stars {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
  }
  .product-content__stars > span {
	display: inline-block;
	line-height: 1.4;
	margin-left: 12px;
  }
  .product-content__stars > span > span {
	font-size: 14;
	margin-left: 10px;
  }

  @media (min-width: 768px) {
	.product-content #reviews {
	  margin-top: 60px;
	}
  }
  @media (max-width: 767px) {
	.product-content__item {
	  border-bottom: 1px solid #e2e2e2;
	}
  }
  @media (max-width: 767px) {
	.product-content__item h3 {
	  font-size: 16px;
	  position: relative;
	  padding: 24px 0;
	  margin: 0;
	}
	.product-content__item h3:after {
	  content: "\f00d";
	  font-family: "FontAwesome";
	  font-weight: 300;
	  font-size: 20px;
	  color: #383838;
	  transition: all 0.3s ease-in-out;
	  position: absolute;
	  top: 22px;
	  right: 5px;
      transform: rotate(45deg);
	}
  }
  @media (max-width: 767px) {
	.product-content__item.is-active h3::after {
	  transform: rotate(180deg);
	}
  }
  .product-content__share ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
  }
  .product-content__share ul li {
	margin-left: 10px;
  }
  .product-content__share ul li a {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	text-decoration: none;
	color: #fff;
	border-radius: 50%;
	background: #008500;
  }
  .product-content__share ul li a.facebook {
	background: #3c599f;
  }
  .product-content__share ul li a.twitter {
	background: #4fc1e9;
  }
  .product-content__share ul li a.whatsapp {
	background: #25d366;
  }
  





.menu-scrolled .menu-item-has-children .sub-menu a:hover::after {
	display: none !important;
}

.main-header .col-md-4 {
	text-align: center;
}

.main-header .buttons {
	display: flex;
	justify-content: center;
    margin-top: 25px;
}

.main-header .buttons .btn {
	position: relative;
    font-family: 'Barlow', sans-serif;
	max-width: 50%;
    border: 2px solid white;
    border-radius: 50px !important;
}

.main-header .buttons .btn:hover {
    border-color: #825984;
    transform: scale(1.03);
}

.main-header .content p {
    font-style: normal;
    font-weight: 300;
    border-radius: 10px;
    padding: 8px 0;
    background-color: var(--primary-green);
    color: white;
    font-size: 18px;
    margin: 0 60px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.main-header .content p {
		font-style: normal;
		font-weight: 300;
		margin: 0 !important;
		border-radius: 10px;
		width: 100% !important;
		padding: 8px 0;
		background-color: var(--primary-green);
		color: #fff;
		font-size: 18px;
		overflow: hidden;
	}
}

.main-header .title {
	position: relative;
    font-family: 'Barlow', sans-serif;
	margin: 15px 0;
    font-size: 55px;
    font-weight: bold;
    line-height: 60px;
    color: white;
    text-shadow: 0px 4px 4px rgba(22, 22, 22, 0.562);
}



.faq-item .faq-content {
	display: none;
	transition: all ease-in-out 0.5s;
}

.faq-item.open .faq-content {
	display: block;
	transition: all ease-in-out 0.5s;
}

.faq-sub-item .faq-sub-content {
	display: none;
	transition: all ease-in-out 0.5s;
}

.faq-sub-item.sub-open .faq-sub-content {
	display: block;
	transition: all ease-in-out 0.5s;
}

.faq-item.open .faq-title::after {
	display: none !important;
}

.faq-sub-item.sub-open .sub-title::after {
	display: none !important;
}

.col-md-12.faq-content {
	position: relative;
	max-width: 97%;
	margin: auto;
}

.faq-item .sub-title {
	position: relative;
	max-width: 95%;
}

.archive.products .cat-item {
	margin-bottom: 30px;
}

p.woocommerce-result-count {
	flex-grow: 1;
}

section.category-section {
	padding-top: 0;
}

.js-category-section__products {
	flex: 0 0 100%;
}

/* Landingspagina builder */
.landings-head {
    background: #F5F5F5;
    padding-top: 20px;
    padding-bottom: 0;
}

.landing-content {
    margin-left: 20px;
}

.landing-content .buttonrow {
    gap: 20px;
    display: flex;
    align-items: center;
}

.landings-head h1 {
    margin: 0;
}

.landings-head .subtitle-landing {
    font-size: 25px;
    display: block;
    margin-bottom: 10px;
}

.landings-head .landings-img {
    height: 420px;
    object-fit: contain;
    width: 100%;
    object-position: center;
}

.landings-head-usp {
    background: linear-gradient(var(--light-grey) 50%, #fff 50%);
}

.single-head h1 a {
	display: none !important;
}

.usp-area {
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 50px 35px;
}

.usp-area span {
    font-size: 20px;
    font-weight: 300;
}

.usp-area .value {
    font-size: 30px;
    text-align: center;
}

/* star rating */
.rating-head ul {
    padding: 0;
}

.rating-head ul a {
    display: flex;
    align-items: center;
}

.rating-head ul span {
    font-size: 18px;
    color: var(--text);
    font-weight: 300;
    margin-top: 5px;
    margin-right: 10px;
}

section.hulp-nodig {
    background: #E8E8E8;
}

section.hulp-nodig h2 {
	margin-bottom: 5px;
}

section.hulp-nodig p {
	margin-bottom: 15px;
}

section.hulp-nodig svg {
	margin-right: 10px;
}

.archivehelper {
	display: none !important;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
	width: 250px;
	max-width: 100% !important;
}

.wc-blocks-components-form-token-field-wrapper:not(.single-selection) .components-form-token-field__input-container {
    padding: 4px 30px 4px 8px;
    background: #F5F5F5 !important;
}

.wc-block-attribute-filter .wc-blocks-components-form-token-field-wrapper:not(.is-loading) {
	border: none !important;
}

.error404 .btn a, .error404 a.btn {
    border-radius: 5px !important;
    padding: 10px 40px !important;
    font-weight: 300;
    background: var(--primary-green);
    color: #FFFFFF;
}

section.hulp-nodig .btn {
	background: var(--primary-green) !important;
	border-radius: 3px !important;
	color: #FFFFFF !important;
	font-weight: 600 !important;
}


.options-landing .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: end;
    float: right;
}

.options-landing button.button.alt.disabled, .options-landing button.button.alt.disabled:hover {
    background-color: #a2a596;
	font-weight: bold;
}

.options-landing button.button {
    height: auto;
    line-height: 25px;
    white-space: nowrap;
    text-align: center;
    box-shadow: -1px 4px 4px rgb(0 0 0 / 8%);
    flex: 1;
    padding: 0 35px;
    margin-right: 12px;
	font-weight: bold !important;
    background-color: var(--primary-green);
}

.options-landing .woocommerce-Price-amount::before {
	content: 'Totaal prijs ';
    position: relative;
    font-size: 16px;
    font-weight: 500;
    margin-right: 5px;
    bottom: 7px;
}

.options-landing .content-product .price {
	max-width: 100% !important;
}

button.single_add_to_cart_button.button.alt {
    width: 300px;
    max-width: 350px !important;
    margin-right: 0;
}

.options-landing .card-product .price bdi, .options-landing .price span {
	font-size: 35px !important;
}

.options-landing a.reset_variations {
    margin-top: 15px;
    font-weight: bold;
}

.options-landing button.button::before {
    content: "\f07a";
    font-family: "FontAwesome";
    font-weight: 400;
    margin-right: 10px;
}

.options-landing .quantity input {
	max-width: 60px;
}

.options-landing .quantity::before {
    content: 'Aantal';
    margin-right: 5px;
}

.options-landing button.button {
    padding: 10px !important;
	margin-left: 5px !important;
}


.telefoonnummercta {
    background: #FFFFFF;
    border-radius: 3px;
    padding: 10px 15px;
    width: fit-content;
}

[data-star] {
    text-align:left;
    font-style:normal;
    display:inline-block;
    position: relative;
    unicode-bidi: bidi-override;
    font-size: 30px;
  }
  [data-star]::before { 
    display:block;
    content: '★★★★★';
    color: #DDDDDD;
  }
  [data-star]::after {
    white-space:nowrap;
    position:absolute;
    top:0;
    left:0;
    content: '★★★★★';
    width: 0;
    color: #F48D53;
    overflow:hidden;
    height:100%;
  }

  .uber {
	color: #333;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px; /* 187.5% */
	letter-spacing: 0.4px;
	text-decoration-line: underline;
  }
  
  [data-star^="0.1"]::after,[data-star^=".1"]::after{width:2%}
  [data-star^="0.2"]::after,[data-star^=".2"]::after{width:4%}
  [data-star^="0.3"]::after,[data-star^=".3"]::after{width:6%}
  [data-star^="0.4"]::after,[data-star^=".4"]::after{width:8%}
  [data-star^="0.5"]::after,[data-star^=".5"]::after{width:10%}
  [data-star^="0.6"]::after,[data-star^=".6"]::after{width:12%}
  [data-star^="0.7"]::after,[data-star^=".7"]::after{width:14%}
  [data-star^="0.8"]::after,[data-star^=".8"]::after{width:16%}
  [data-star^="0.9"]::after,[data-star^=".9"]::after{width:18%}
  [data-star^="1"]::after{width:20%}
  [data-star^="1.1"]::after{width:22%}
  [data-star^="1.2"]::after{width:24%}
  [data-star^="1.3"]::after{width:26%}
  [data-star^="1.4"]::after{width:28%}
  [data-star^="1.5"]::after{width:30%}
  [data-star^="1.6"]::after{width:32%}
  [data-star^="1.7"]::after{width:34%}
  [data-star^="1.8"]::after{width:36%}
  [data-star^="1.9"]::after{width:38%}
  [data-star^="2"]::after{width:40%}
  [data-star^="2.1"]::after{width:42%}
  [data-star^="2.2"]::after{width:44%}
  [data-star^="2.3"]::after{width:46%}
  [data-star^="2.4"]::after{width:48%}
  [data-star^="2.5"]::after{width:50%}
  [data-star^="2.6"]::after{width:52%}
  [data-star^="2.7"]::after{width:54%}
  [data-star^="2.8"]::after{width:56%}
  [data-star^="2.9"]::after{width:58%}
  [data-star^="3"]::after{width:60%}
  [data-star^="3.1"]::after{width:62%}
  [data-star^="3.2"]::after{width:64%}
  [data-star^="3.3"]::after{width:66%}
  [data-star^="3.4"]::after{width:68%}
  [data-star^="3.5"]::after{width:70%}
  [data-star^="3.6"]::after{width:72%}
  [data-star^="3.7"]::after{width:74%}
  [data-star^="3.8"]::after{width:76%}
  [data-star^="3.9"]::after{width:78%}
  [data-star^="4"]::after{width:80%}
  [data-star^="4.1"]::after{width:82%}
  [data-star^="4.2"]::after{width:84%}
  [data-star^="4.3"]::after{width:86%}
  [data-star^="4.4"]::after{width:88%}
  [data-star^="4.5"]::after{width:90%}
  [data-star^="4.6"]::after{width:92%}
  [data-star^="4.7"]::after{width:94%}
  [data-star^="4.8"]::after{width:96%}
  [data-star^="4.9"]::after{width:98%}
  [data-star^="5"]::after{width:100%}


/* Flex landinspage */
.builder-landingspage {
    padding: 0;
    margin: 0;
}

.builder-landingspage .specs-landing {
    padding: 75px 0;
}

.builder-landingspage .specs-landing ul {
    list-style-type: none;
    padding: 0;
    position: relative;
}

.builder-landingspage .specs-landing ul::before {
    content: '';
    height: 100%;
    width: 3px;
    background-color: var(--primary-green);
    position: absolute;
    border-radius: 10px;
}

.builder-landingspage .specs-landing ul li {
    font-size: 18px;
    margin-bottom: 15px;
    margin-left: 25px;
}

.wrapper  ul {
    height: 120px;
    overflow: hidden;
    padding-left: 15px;
}

.wrapper .row {
    height: 0;
    overflow: hidden;
}

.wrapper  ul.active, .wrapper.active .row {
    height: auto;
}

.wrapper  ul li {
    margin-bottom: 5px;
    list-style: none;
    position: relative;
}

.wrapper  ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: -12px;
    width: 5px;
    height: 5px;
}

.toggle_btn_blocks {
    float: right !important;
}


.wrapper .toggle_btn, .toggle_btn_blocks  {
    margin-top: 5px;
    font-weight: 300;
    color: var(--text);
    cursor: pointer;
    font-size: 15px;
}

.wrapper .toggle_btn.active .fas, .toggle_btn_blocks.active .fas{
transform: rotate(180deg);
}

.builder-landingspage .blocks-landing {
    background-color: var(--light-grey);
    padding-top: 100px;
    padding-bottom: 0;
    margin-bottom: 80px;
}

.builder-landingspage .blocks-landing img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.builder-landingspage .blocks-landing p{ 
    font-weight: 500;
}

.builder-landingspage .blocks-landing .card {
    margin: 25px 20px 0 20px;
}

.builder-landingspage .blocks-landing .card h3, .builder-landingspage .blocks-landing h2  {
    margin-bottom: 5px;
}

.builder-landingspage .blocks-landing .outer-container {
    background-color: #fff;
}

.builder-landingspage .blocks-landing .blocks-content {
    padding: 60px 30px;
}

.builder-landingspage .fifty-landing {
    background-color: var(--text);
    padding: 80px 0;
}

.builder-landingspage .fifty-landing h2, .builder-landingspage .fifty-landing p {
    color: #fff;
}

.builder-landingspage .options-landing {
    padding: 80px 0;
}

.builder-landingspage .options-landing .variations tbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.builder-landingspage .options-landing .variations .label {
    display: block;
} 

.builder-landingspage .options-landing h2 {
    text-align: center;
    margin-bottom: 30px;
}

.builder-landingspage .options-landing .options-card {
    margin-right: 30px;
    position: relative;
}

.builder-landingspage .options-card .card-product img {
    height: 500px;
}

.builder-landingspage .options-landing #frm_form_10_container {
    padding: 30px 45px;
    font-family: 'Barlow', sans-serif !important;
    border-radius: 10px;
	border: 1px solid #cecece;
}


.builder-landingspage .review-landing h2 {
    margin-bottom: 0;
}

.builder-landingspage .review-landing span {
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

/* Flexbuilder */

.fifty_fifty img {
    position: relative;
    object-fit: contain;
    text-align: center;
    border-radius: 0;
    height: 100%;
    width: 100%;
}

h4 strong {
	font-weight: bold;
	color: var(--primary-green);
}

.content-product .title {
    position: relative;
    min-height: 75px;
}

.cta-title .container-fluid {
    background: lightblue;
    padding: 60px 0 35px;
}

.fifty_fifty-content .bg-green {
    background-color: var(--primary-green);
}

.gallery img {
	width: 100%;
	height: 100%;
}

.gallery .col-md-4, .gallery .col-md-8 {
	margin-bottom: 30px;
}

.fifty_fifty-content .bg-green a, .fifty_fifty-content .bg-green p, .fifty_fifty-content .bg-green .btn-read-more::after, .fifty_fifty-content .bg-green h2  {
    color: white;
}

.fifty_fifty-content .left-content img {
    height: 650px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.fifty_fifty-content .right-content p {
    margin-bottom: 10px;
}

.gallery-title .title {
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.gallery-title .title::after {
    content: " ";
    font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    margin-right: 18px;
    transition: all .4s ease-in-out;
    border-bottom: 3px solid #29C1DD;
    position: absolute;
    left: 15px;
    width: 25%;
    top: 100%;
}

.fifty_fifty-content .right-content img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
}

.fifty_fifty-content .right-content {
    padding: 40px 0;
}

.fifty_fifty-content .quote-fifty {
    margin-top: 40px;
}

.fifty_fifty-content .quote-fifty p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0;
}

.icons-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.icons-section img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    object-position: center;
}

.icons-section p {
    padding-right: 25px;
}

.cato-section {
    text-align: center;
}

.cato-section .cato-content {
    background-color: var(--grey);
    background-position: center;
    background-size: cover;
    height: 320px;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    transition: all ease-in-out 0.5s;
	margin-bottom: 30px;
}

.cato-section span, .cato-section h3 {
    color: white;
}

.cato-content span {
    font-size: 20px;
}

.cato-content:hover {
    transform: scale(1.03);
    transition: all ease-in-out 0.5s;
}

.cato-section .cato-content div {
    width: 100%;
    margin-bottom: 30px;
}

.teamleden {
	text-align: center;
}

.teamleden .title {
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	line-height: 45px;
	text-align: center;
	color: var(--text);
	margin-bottom: 35px;

}

.teamleden .subtitle {
	font-style: normal;
	font-weight: 300;
	font-size: 30px;
	margin: 35px 0;
	margin-top: 60px;
	text-align: center;
	color: var(--text);
}

.menu-item a {
	position: relative;
	text-decoration: none;
	color: #333;
	font-family: var(--ff-heading);
	font-size: 18px;
	font-weight: bold;
	transition: color 0.3s ease; 
}

@media screen and (min-width: 992px) {
	.menu-item a:hover {
		text-decoration: none !important;
		color: var(--primary-green);
	}

	.menu-item a::before {
		content: '';
		position: absolute;
		width: 0;
		height: 2px;
		bottom: 5px;
		left: 0;
		background-color: var(--primary-green);
		transition: width 300ms ease; 
	}

	.menu-item a:hover::before {
		width: 100%;
	}
}

.menu-item .sub-menu a:hover {
	text-decoration: underline !important;
}

.teamleden .btn:nth-child(1) {
	margin-right: 20px;
}

.btn.blue:after {
	background: var(--text);
}

.hexagon {
	height: 300px;
	width: 200px;
	max-height: 100%;
	max-width: 100%;
	margin: auto;
	background-size: 100% 100%;
	transition: all ease-in-out .5s;
}

.with-background-image:hover .hexagon::before {
	background-color: rgba(159, 109, 161, 0.8);
	content: '';
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
	transition: all ease-in-out 0.5s;
}

.teamlid {
	display: none!important;
    position: absolute;
    bottom: 10px;
    margin: auto;
    width: 90%;
    right: 30px;
    display: flex;
    flex-direction: column;
	transition: all ease-in-out 0.5s;
}

.with-background-image:hover .teamlid {
	display: block !important;
	transition: all ease-in-out 0.5s;
}

.teamlid .teamlid_name {
	font-style: normal;
	font-weight: 300;
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
}



.teamlid .teamlid_email,
.teamlid .teamlid_email * {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
}

section.cta-title {
	text-align: center;
}

section.cta-title .title {
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 15px;
}

section.cta-title .subtitle p {
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.525px;
}

.archive-positioner {
	display: flex;
	flex-direction: column;
}

.head-content {
	position: relative;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	max-width: 690px;
	line-height: 27px;
	margin: auto;
}

.onze-producten {
	display: flex;
	justify-content: space-between;
    align-items: center;
}

.onze-producten h2 {
    margin-bottom: 0;
}

.onze-producten .link a {
	font-style: normal;
	font-weight: 900;
	font-size: 16px;
	line-height: 20px;
	display: flex;
	align-items: center;
	letter-spacing: 0.4px;
	color: var(--primary-green);
}

.onze-producten .link:hover {
	margin-left: 15px;
}

.onze-producten .link a::after {
    content: "\f054";
    font-family: 'Font Awesome\ 5 Free';
    font-size: 12px;
    margin-left: 10px;
	margin-top: 3px;
	color: var(--primary-green);
    z-index: 999;
    transition: all ease-in-out 0.5s;
}

.partner-100 {
    background-color: var(--primary-green);
    margin-top: 60px;
    padding: 60px 0;
}

.partner-100 .partner-content h2, .partner-100 .partner-content p  {
    color: #fff;
    text-align: center;
}

.partner-100 .partner-content {
    height: 100%;
    display: flex;
    width: 60%;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.woocommerce-account .head-content, .woocommerce-cart .head-content {
	max-width: 100% !important;
	margin-bottom: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: grid !important;
	text-align: start !important;
}

p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
    margin-bottom: 0 !important;
    float: left !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 25% !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	width: 75% !important;
}

@media screen and (max-width: 768px) {
	.head-content {
		position: relative;
		font-style: normal;
		font-weight: 400;
		font-size: 16px;
		text-align: center;
		line-height: 27px;
		max-width: 1025px;
		margin: auto;
	}
}

.woocommerce-MyAccount-content p {
	text-align: start;
}

.with-contact {
	position: relative;
	max-width: 900px;
	margin: auto;
}

.subject {
	background-color: #E8EFF4;
	border: 1px solid var(--text);
	padding: 10px 15px;
	border: 1px solid;
	font-size: 16px;
	line-height: 1.3;
	color: var(--text);
	opacity: 0.7;
}

.subject-content {
	display: flex;
	height: 25px;
	color: var(--text);
}

.subject-content .subject-text {
	margin-right: 5px;
	color: var(--text);
}


/* content usps */
.content-usps {
	background-color: var(--text);
}

.usp-flex {
	display: flex;
	justify-content: space-between;
}

.usp-content-item {
	display: flex !important;
	position: relative;
	padding: 10px 10%;
	width: 50% !important;
}

.usp-content-item * {
	color: #FFFFFF;
}

.usp-content-item .icon {
	position: relative;
	margin-right: 40px;
	top: 15px;
	height: 60px;
	width: 60px;
}

.usp-content-item .icon img {
	object-fit: contain;
}

.usp-content-item .title {
	font-style: normal;
	font-weight: 900;
	font-size: 27px;
	margin-bottom: 15px;
}

.usp-content-item .second-title {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 40px;
}

/* Comparison table */

section.comparison-table {
	background-color: #F7FAFA;
}

.comparison-table .title {
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	color: var(--text);
	margin-bottom: 65px;
}

.comparison-table .col-md-4 {
	background: linear-gradient(0deg, #FFFFFF 90%, #F7FAFA 25%);
}

.comparison-table .col-md-4:nth-child(odd) {
	background: linear-gradient(0deg, #F7FAFA 90%, #F7FAFA 25%);
}


.comparison-table .col-md-4 {
	text-align: center;
}

.comparison-table .col-md-4 img {
	position: relative;
	margin: auto;
	min-width: 100%;
	max-height: 282px;
	object-fit: cover;
	margin-left: -30px;
	margin-bottom: 10px;
}

.comparison-table .product-attributes {
	text-align: start;
}

.comparison-table .product-title {
	font-style: normal;
	font-weight: 300;
	font-size: 24px;
	color: var(--text);
	margin-bottom: 35px;
}

.comparison-table .product-attributes li {
	font-weight: 400;
	font-size: 16px;
	color: #32363E;
	margin-bottom: 30px;
}

.comparison-table a.btn.blue {
	margin-top: 15px;
	margin-bottom: 25px;
}

.attribute-item {
	opacity: 0.4;
}

.attribute-item::marker {
	color: transparent;
}

.attribute-item.with-check {
	opacity: 1;
}

.attribute-item.with-check::before {
	content: '';
	position: absolute;
	margin-top: 5px;
	left: 20px;
	width: 20px;
	height: 20px;
	background-image: url(img/vink.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: ease-in all 0.3s;
}

/* Contact blok */
.contact-blok label {
	margin-bottom: 0;
}

.contact-blok .btn::after {
	background: #1B9ED3;
}

.contact-blok .btn:hover::after {
	background: #0094c7;
}

.contact-blok button.btn {
	position: relative;
	width: auto;
	margin-left: auto !important;
	padding: 8px 15px !important;
	color: #fff;
    background-color: var(--primary-green);
	font-weight: 600 !important;
	margin: 0;
	border-radius: 3px;
}

.contact-blok .btn::after {
	background: #7B637C !important;
}

/* Product page */
.request-quote-content {
	position: relative;
	width: 720px;
	margin: auto;
	max-width: 100%;
}

section.product-usps {
	position: relative;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: var(--purple);
	background-image: url(img/subpage-background.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

section.product-usps * {
	color: #FFFFFF !important;
}

section.product-usps p {
	margin-bottom: 5px;
}

#request button.btn {
	position: relative;
	width: 100%;
	margin-left: auto !important;
	max-width: 100px;
	padding: 8px 15px !important;
	margin: 0;
	border-radius: 3px;
}

#request button.btn:hover {
	background: black !important;
}

#breadcrumbs,
#breadcrumbs a,
#breadcrumbs p,
#breadcrumbs span {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	color: var(--white);
    margin-right: 3px;
}

.single-product-usp {
	margin: 30px 0;
}

.single-product-usp li {
	margin-bottom: 20px !important;
	margin-left: 10px;
}

.single-product-content .btn {
	margin-right: 15px;
}

/* Quotation form */
.request-quote-content .title {
	font-style: normal;
	font-weight: 300;
	font-size: 24px;
	color: #1B9ED3;
}

.request-quote-content .product-title {
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	color: var(--text);
	margin-bottom: 25px;
}

#optiontoggles br {
	display: none !important;
}

#optiontoggles label {
	position: relative;
	min-width: 33.33%;
	font-style: normal;
	font-weight: 400 !important;
	font-size: 16px !important;
	color: var(--text);
}

div#frm_field_99_container {
	display: flex;
}

div#frm_field_99_container label {
	margin-right: 30px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
	color: var(--text);
}

.request-form .btn:after {
	background: #1B9ED3;
}

.request-form .btn:hover::after {
	background: #0881b0 !important;
}

section.contact-blok .col-md-4 h2 {
	margin-bottom: 20px;
}

.full_width .full-width-content {
	position: relative;
	margin: auto;
	max-width: 100%;
}

.flex-intro {
	position: relative;
	width: 720px;
	margin: auto;
	max-width: 100%;
}

.head-content {
	margin-top: 10px;
}

.woocommerce form h3 {
	text-align: start;
}

.woocommerce-address-fields label {
	margin-bottom: 0;
}

.woocommerce-address-fields p {
	margin-bottom: 0 !important;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	margin: 15px 0;
}

.woocommerce-message a {
	margin: 0 !important;
}

.woocommerce form .form-row label {
	margin-bottom: 0;
}

.woocommerce-MyAccount-content label {
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 18px;
	display: flex;
	align-items: center;
	letter-spacing: 0.4px;
	color: var(--primary-green);
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	display: inline-table !important;
}

.u-columns.woocommerce-Addresses.col2-set.addresses {
    display: flex;
    justify-content: space-between;
}

.woocommerce-account .addresses .title .edit {
	float: none !important;
}

address {
    color: #222222;
	text-align: start;
}

.woocommerce-MyAccount-content input, input#username, input#password, input#user_login {
	border: none !important;
    background: #F5F5F5 !important;
    border-radius: 3px !important;
	padding: 5px 10px;
}

.fc-checkout-steps input {
	border: none !important;
    background: #FFFFFF !important;
    border-radius: 3px !important;
	padding: 5px 10px;
}

div.woocommerce form .form-row {
	margin-bottom: 15px !important;
}

.fc-progress-bar__bar.is-complete, .fc-progress-bar__bar.is-current {
	color: #7F8271 !important;
}

a#fc-expansible-form-section__toggle-plus--billing_company {
    margin-top: 30px;
    margin-left: 5px;
}

div.woocommerce form .woocommerce-billing-fields__field-wrapper:not(:last-child), div.woocommerce form .woocommerce-billing-only-fields__field-wrapper:not(:last-child) {
	padding-bottom: 0 !important;
}

div.woocommerce form .woocommerce-billing-only-fields__field-wrapper {
	margin-top: 5px !important;
}

.cart_item .product-name a {
	font-size: 20px;
	font-weight: 900;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	margin-bottom: 30px;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
	width: 150px;
	max-height: 150px;
}

.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
	float: none !important;
	margin: auto;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	margin-top: 3px;
    margin-left: 5px;
}

/* 404 pagina */
section.not-found-content {
	text-align: center;
}

section.not-found-content .title {
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	color: var(--text);
	margin-bottom: 15px;
}

a#wt-cli-accept-all-btn {
	padding: 10px 15px;
	font-weight: 300;
	font-size: 16px;
	border-radius: 3px;
}

#menu-item-wpml-ls-20-en a img {
	border-radius: 50%;
}

.header-usps .slick-slide img {
	display: initial !important;
}


.catcontent {
    text-align: center;
}

.catcontent img.catim {
	height: 200px;
	width: 230px;
	object-fit: contain;
	margin-bottom: 15px;
}

.catcontent .content img {
    position: relative;
    margin-right: 10px;
    height: 15px;
    width: auto;
    top: -3px;
}

.catcontent img {
	cursor: pointer;
	transition: all ease-in-out 250ms;
}

.catcontent:hover img {
	transform: scale(1.1);
	overflow: hidden;
	transition: all ease-in-out 250ms;
}

.catcontent .content a {
	color: #333;
	font-size: 23px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	letter-spacing: 0.4px;
}

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

	.main-header .col-md-2 {
		display: none;
	}

	.usp-flex {
		flex-direction: column;
		width: 100%;
	}

	.hp-head .container .row {
		min-height: 450px;
		padding: 130px 0px 60px 0px;
		display: flex;
		align-items: center;
	}

	.hp-head .left-content {
		left: 0 !important;
		transform: none !important;
	}

	.content-slide {
		margin-bottom: 35px;
	}

	main#main-content,
	section {
		padding: 35px 0;
	}

	.cat-item {
		margin-bottom: 15px;
	}

	.sectie-title .title,
	.container.faq .title {
		font-size: 25px !important;
	}

	.faq-content:after,
	.testiominal-content:after {
		display: none !important;
	}

	.col-md-12.faq-content {
		max-width: 100%;
	}

	#cta .title {
		font-size: 30px;
	}

	#cta .content {
		position: relative;
		margin-bottom: 15px;
		font-style: normal;
		font-weight: 300;
		font-size: 15px;
	}

	#cta .cta-inner {
		padding: 100px 15px;
	}

	.sub-menu * {
		font-weight: 300;
	}

	ul.sub-menu {
		position: relative;
		margin-top: 15px;
		left: 0px;
	}

	.request-quote-content .product-title {
		font-size: 25px;
	}

	.fifty_fifty img {
		margin-bottom: 15px;
	}

	.usp-content-item {
		display: flex !important;
		margin-bottom: -25px;
		padding: 20px;
	}

	.teamleden .subtitle {
		font-style: normal;
		font-weight: 300;
		font-size: 25px;
		margin: 35px 0;
		line-height: 35px;
		text-align: center;
		color: var(--text);
	}

	section.cta-title .title {
		font-style: normal;
		font-weight: 300;
		font-size: 25px;
		text-align: center;
		color: var(--text);
	}

	#cta {
		margin-top: 0;
	}

	button.slick-arrow.slick-next {
		right: 0 !important;
		background-size: 15px 35px !important;
	}

	button.slick-arrow.slick-prev {
		left: 10px !important;
		background-size: 15px 35px !important;
	}

	.comparison-table .col-md-4 img {
		margin: auto;
		max-width: 100%;
		max-height: 282px;
		object-fit: contain;
	}

	.usp-content-item {
		display: flex !important;
		position: relative;
		padding: 10px !important;
		width: 25% !important;
	}

	.product-usps .col-md-3.usp-item {
		margin-bottom: 15px;
	}

	#optiontoggles label {
		position: relative;
		min-width: 48%;
		font-style: normal;
		font-weight: 400 !important;
		font-size: 16px !important;
		color: var(--text);
	}

	.page .main-navigation .wpml {
		display: none;
	}

	.home .main-navigation .wpml {
		display: block;
	}

	.head-content {
		margin-top: 5px;
	}

	.subject {
		height: 65px;
	}

	footer#main-footer {
		padding: 35px 0;
	}

	.head-content p {
		width: 100%;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 6;
		-webkit-box-orient: vertical;
	}

	.usp-item .title {
		position: relative;
		font-style: normal;
		font-size: 24px;
		font-weight: 300;
		color: var(--text);
		max-width: 80%;
		margin: auto;
	}



	.cat-item {
		padding: 0 !important;
	}

	ul {
		padding-left: 0 !important;
	}

	.uspIntro li {
		font-size: 16px !important;
	}

	.archive-header .gradient::after {
		background-image: none !important;
	}

	.with-background-image {
		margin-bottom: 15px;
	}

	.main-header .buttons {
		display: block;
	}

	.main-header .buttons .btn {
		position: relative;
		width: 100%;
		max-width: 100%;
	}
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
	position: relative;
	padding-right: 15px !important;
}

.wpml-ls-legacy-dropdown .wpml-ls-flag {
	height: 15px !important;
}

.wpml-ls-item .sub-menu {
	background: #E8EFF4 !important;
}

*:focus {
	outline: 0 !important;
	box-shadow:
		0 0 0 .2rem transparent,
		/* use site bg color to create whitespace for faux focus ring */
		0 0 0 .35rem transparent !important;
	/* faux focus ring color */
}

/* feedback styling eerste ronde */
.menu-main-container .wpml-ls-item a {
	padding: 15px 20px !important;
	top: 2px;
}

.main-header.hp-head .content img {
	position: relative;
	max-width: 250px;
	height: auto;
}

.col-md-4.content-slide {
	z-index: 99999;
}

.slick-usps {
    margin: 0 40px;
}

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

	section.product-reviews {
		padding: 80px 0 90px 0;
	}

	.main-header .slick-slider,
	.main-header .slick-list,
	.main-header .slick-track {
		position: relative;
		height: 600px;
	}

	.main-header .slick-slider img {
		object-fit: contain;
	}

	.image-slider-head {
		position: absolute;
		right: 0;
		bottom: 0;
		top: 100px;
	}

	.mobile-gallery {
		display: none !important;
	}
}

img.review-icon {
	position: relative;
	max-height: 45px;
	width: auto;
}

@media screen and (max-width: 1100px) {
	.main-header .buttons {
		display: block !important;
	}

	.main-header .buttons .btn {
		position: relative;
		width: 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.image-slider-head {
		display: none !important;
	}
}

.contact-menus a {
	color: #FFFFFF !important;
}

.review-content {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Header slide remake */
.hp-head .content-slide {
	position: relative;
	padding: 0 10px;
}

.hp-head .header-content {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
	max-width: 100%;
}

.hp-head .content-slide {
    position: relative;
}

.hp-head .content-slide {
    position: relative;
    display: flex;
    justify-content: space-between;
}

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




	.hp-head .content-slide .afbeelding {
		position: absolute;
		left: 90px;
	}
	.hp-head .content-slide .afbeelding .gallery-item {
		position: relative;
		max-width: 70%;
		margin-top: 8%;
		float: right;
	}
}


#primary-menu-ul li:nth-child(3) a::after {
	right: 5px;
}


#main-footer ul.sub-menu {
	top: 10px;
}

#main-footer ul.sub-menu * {
		font-weight: 300;
}

#main-footer ::after {
	display: none !important;
}

#main-footer .sub-menu {
	border-top: 0 !important;
}

#main-footer #menu-productmenu * {
	padding-left: 0 !important;
}

.video iframe {
	position: relative;
	width: 100% !important;
	padding-top: 15px;
}

@media screen and (min-width: 768px) {
	.video iframe {
	    min-height: 500px;
	}
	section#request {
		padding-top: 15px;
	}
}

.menu-item-has-children>a:after {
	right: 0 !important;
	margin-left: 5px;
}

.menu-scrolled .menu-item-has-children>a:after {
		right: 0 !important;
	  margin-left: 5px;
}

.main-nav ul li a {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
}

.menu-scrolled .main-nav ul li a {
	padding: 15px;
}

.hp-categorieen .outer .term-description {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background: #fff;
}

.parnter-content * {
	color: #FFFFFF !important;
} 

li.contact-menus a {
    background: var(--purple) !important;
}

li.contact-menus a:hover {
    background: 825984 !important;
    text-decoration: none;
}

.gallery-repeater .gallery-item {
	display: flex;
	justify-content: center;
	max-height: 100px !important;
	min-height: 100px;
}

.gallery-repeater .gallery-item img {
	object-fit: contain;
}

.social-icons {
	margin-top: 15px;
}

.social-icons a {
	margin-right: 10px;
}

.social-icons a i {
	font-size: 30px;
	color: #FFFFFF;
}

#edittag {
    max-width: 100% !important;
}

h2 strong, 
h2 span { 
    font-weight:900; font-size: 35px; line-height:50px;
}

.bg-100 a{ color:#FFF !important;}

#cta .cta-inner {
	color: #fff;
	position: relative;
	padding:70px 15px;
	z-index: 2
}

#cta .cta-inner p {
	color: #333; 
	font-weight: 900;
}

#cta .btn:after{ background-color:#37b44a; }

.woocommerce .fc-place-order #respond input#submit.alt, .woocommerce .fc-place-order a.button.alt, .woocommerce .fc-place-order button.button.alt, .woocommerce .fc-place-order input.button.alt {
	background-color: var(--primary-green) !important;
}

.review-button {
	text-align: end;
}

.review-button a {
	background-color: var(--primary-green) !important;
	color: #FFFFFF !important;
	font-family: 'Barlow', sans-serif !important;
}

span.head-cart-number {
	position: absolute;
    z-index: 999;
    padding: 1px 8px 0px 8px;
    background-color: #00B900;
    color: #FFFFFF;
    border-radius: 100%;
    font-weight: bold;
    margin-top: -18px;
    font-size: 13px;
    right: 5px;
}

@media screen and (max-width: 768px) {
	span.head-cart-number {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	form.woocommerce-ordering {
		position: relative;
		right: 30px;
	}
}

.intro-category__contact p {
	font-weight: 500;
}
.no-display {
	display: none !important;
}

section#imcat {
    padding-bottom: 0;
}

.card-product .button.selecteer-optie {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #fff;
    background-color: #00B900;
    border-radius: 0px !important;
    padding: 15px 30px;
	max-width: 175px;
    transition: all 0.3s ease-in-out;
    margin: auto !important;
	text-transform: uppercase;
}


a.btn.shortcode-btn.red {
    padding: 15px 50px 15px 30px !important;
}

.shortcode-btn::after {
	content: "";
    position: absolute;
    height: 12px;
    width: 8px;
    right: 20px;
    top: 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pricewithicon span {
	text-align: center;
	font-size: 14px !important;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
	text-transform: uppercase;
}

.card-product .button.selecteer-optie::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px; /* Adjust the width of the icon */
    height: 16px; /* Adjust the height of the icon */
    background-size: cover;
}

nav .cart-nav a::before {
    content: "\f07a";
    font: 20px/1 'FontAwesome';
    color: var(--text);
}

.card-product .button.selecteer-optie::before {
	display: none !important;
}

.pricewithicon img {
    width: 17px !important;
    height: auto !important;
    margin-right: 15px !important;
    overflow: visible !important;
}

.pricewithicon {
    display: flex;
    justify-content: space-between;
}

.compare_and_cart.textie.d-flex.flex-wrap.justify-content-end.align-items-center {
	max-width: 100%;
    margin-left: auto;
    text-align: center;
}

@media screen and (max-width: 768px) {
	a.button.wc-forward.wp-element-button {
		position: relative;
		display: flex;
		width: 100%;
		margin-bottom: 15px !important;
	}
	.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
		position: relative;
		display: flex;
		width: 100%;
		margin-bottom: 15px !important;
	}
	#customer_login .col-1 {
		max-width: 100% !important;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100% !important;
	}
	.u-columns.woocommerce-Addresses.col2-set.addresses {
		display: block !important;
	}
	.woocommerce-MyAccount-content .col-1 {
		max-width: 100% !important;
	}
	.archive.archive-header {
		text-align: center;
		min-height: 250px;
	}
	.head-content p {
		width: 100%;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
}

#cookie-law-info-bar {
	z-index: 999999 !important;
}

@media screen and (max-width: 768px) {
	.builder-landingspage .blocks-landing {
		padding-top: 30px;
		margin-bottom: 30px;
	}
	.specs-landing {
		padding: 35px 15px !important;
	}
	.builder-landingspage .options-landing {
		padding: 30px 0;
	}
	.single-product h1, .single-product h1 a {
		font-size: 30px;
		line-height: normal;
		margin-top: 15px;
	}
	.product-info__price {
		padding-top: 0px;
	}
	.product-upsell .btn.btn-grey {
		padding-left: 10px !important;
		padding-right: 0 !important;
		margin-right: 5px;
		font-size: 15px;
	}
	.variations tbody {
		display: table;
		min-width: 100% !important;
	}
	.product-info select {
		width: 100% !important;
	}
	.product-info .variations tbody tr {
		width: 100% !important;
	}
	.product-content__holder {
		background-color: var(--light-grey);
		padding: 0px 0;
		margin: 30px 0;
	}
	section.review.container p {
		line-height: normal !important;
		margin-bottom: 0 !important;
	}
	.review {
		margin-bottom: 0px;
	}
	.review-card {
		margin-top: 20px !important;
	}
	.rating-head ul, .wrapper ul {
		padding-left: 0px !important;
	}
	.review-card {
		padding: 15px !important;
	}	
	footer .footer-under {
		padding-top: 0px;
	}
	footer ul {
		margin-bottom: 30px;
	}
	ul#menu-footer-menu {
		margin-left: 0 !important;
	}
	.icons-section h2 {
		text-align: center;
		margin-bottom: 30px;
	}
	h2 {
		font-size: 22px;
		margin-bottom: 0;
	}
	.fifty_fifty.container ul {
		margin-left: 15px !important;
	}
	section.hulp-nodig .col-md-6:nth-child(2) {
		display: none !important;
	}
	table.variations {
		width: 100% !important;
	}
	td.value, th.label {
		width: 100%;
		min-width: 100%;
		float: right;
	}
	.productoptions select {
		width: 100% !important;
	}
	.product-content__list li span {
		width: 50%;
		color: #6c6c7c;
		text-align: end;
	}
	.category-section .col-md-8.col-xl-9 {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
}

h4.js-category-link {
    font-style: normal;
    color: var(--primary-green);
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
}

.category-section__panel.js-category-panel ul {
	padding-left: 0;
	margin-left: 0 ;
}

table.variations {
	width: 100% !important;
}

td.value, th.label {
	width: 100%;
	min-width: 100%;
	float: right;
}

footer a:hover, footer i:hover {
	transition: all ease-in-out 250ms;
}

footer a:hover, footer i:hover {
	color: var(--primary-green) !important;
	transition: all ease-in-out 250ms;
}

.home .col-md-12.slick-navigation {
	padding: 30px 15px;
	text-align: end;
}



.product-content__holder .product-content__list table:nth-child(n+2) {
	display: none !important;
}

.woocommerce table.shop_attributes th {
	width: 50%;
	background: #F0F0F0;
}

.woocommerce table.shop_attributes td {
	background: #F0F0F0;
}

.woocommerce table.shop_attributes tr:nth-child(even) td, .woocommerce table.shop_attributes tr:nth-child(even) th {
	background: transparent !important;
}


.product-reviews .title {
	color: #222;
	font-size: 30px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	letter-spacing: 0.4px;
}

.product-reviews .subtitle {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 187.5% */
	letter-spacing: 0.4px;
}

@media screen and (max-width: 768px) {
	.head-home {
		height: 700px;
		padding-top: 0;
		padding-bottom: 0;
		border-radius: 10px;
		margin-left: 0;
	}
	.linkcontainer {
		position: absolute;
		right: 0px;
		bottom: 0;
		background: #FFF;
		padding: 30px 30px 15px 30px;
		border-radius: 50px 0px 0px 0px;
	}
	h2 {
		line-height: initial;
	}
	.floating-content {
		border-radius: 10px;
		max-width: 100%;
		max-height: 100%;
		background: #FFF;
		position: relative;
		top: 0;
		left: 0;
		padding: 30px 30px;
		box-shadow: 0px 0px 20px rgb(99 99 99 / 10%);
	}
	.big-background .col-md-11.offset-1 {
		margin-left: 0;
	}
	.social-icons {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.category-section__sidebar {
		padding: 30px 0 0 0;
	}
	.woocommerce .woocommerce-ordering {
		margin: 0 0 25px;
		margin-top: 0px;
		width: 100%;
		padding: 0 15px;
	}
	select.orderby {
		padding: 5px 15px;
		border: 1px solid var(--text, #222);
		border-radius: 50px;
		width: 100%;
	}
	p.woocommerce-result-count {
		margin-left: 15px !important;
	}

	.product-info .product-info__for img {
		height: 500px;
		object-fit: cover;
		width: 100%;
		object-position: center;
        padding-left: 0;
	}
	.single-product h1, .single-product h1 a {
		font-size: 25px;
		line-height: initial;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.categorien {
		margin-bottom: 0px;
	}
	.product-info form.cart .quantity {
		margin-bottom: 0;
		margin-right: 0 !important;
		text-align: end;
	}
	.product-info form.cart button.button {
		padding: 10px !important;
		width: 100%;
        margin-left: 15px !important;
	}

    .afbeelding-link-tekst-rechts img {
        margin-bottom: 30px;
    }

    h2.headerrelated {
        font-size: 30px !important;
    }

    .acc-title::after {
        left: 0 !important;
    }

	.product-reviews a.btn {
		width: 100%;
		margin-top: 15px;
		text-align: center;
	}
	.woocommerce-checkout h3 {
		font-size: 18px !important;
		font-weight: 900;
	}
	section#content li {
		margin-bottom: 30px;
		padding: 15px 10px;
		border-radius: 10px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
	}

	section#content .wishlist_table.mobile li .item-wrapper {
		display: inline-block;
		width: calc(100% - 25px);
		vertical-align: top;
		margin-bottom: 7px;
		display: flex;
		justify-content: space-between;
		width: 100% !important;
	}

	section#content .product-name {
		margin-top: 15px;
		font-size: 20px;
	}

	section#content .item-wrapper {
		margin-bottom: 15px !important;
	}

	section#content td.label {
		font-size: 17px;
	}
	section#content td.value {
		text-align: start !important;
	}

	section#content .product-add-to-cart {
		position: relative;
		background: #29C1DD;
		color: #FFF !important;
		border-radius: 50px !important;
		padding: 5px 25px !important;
		font-weight: 900;
		top: 20px;
	}

	section#content .product-add-to-cart a {
    	color: #FFF !important;
	}

	section#content .product-remove {
		position: relative;
		top: -140px;
		z-index: -1;
	}
	.menu li {
		display: inline-block;
		width: 100%;
		padding: 10px 0px;
		text-align: center;
	}
	.menu li a {
		color: #222222;
	}
}

.archive-header p {
    font-weight: 500 !important;
    margin-bottom: 10px;
}

.far.fa-heart {
    color: #333;
}

section.big-item {
    padding: 0;
    max-height: 500px;
}

section.big-item img {
	object-fit: cover;
}

section.big-item .col-md-12 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

section.big-item img {
    position: relative;
    width: 100%;
    height: 100%;
}

.subbie {
    letter-spacing: 0.4px;
    margin-bottom: 30px;
    color: #FFF;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

h1 {
	font-size: 55px;
}

.bg-head h1 {
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.bg-head h1::after {
    content: " ";
    font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    margin-right: 18px;
    transition: all .4s ease-in-out;
    border-bottom: 3px solid #29C1DD;
    position: absolute;
    left: 15px;
    width: 25%;
    top: 25%;
}

h2.headerrelated {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 40px;
}



.container-fluid.p-0 {
    padding-left: 0 !important;
}

#breadcrumbs, #breadcrumbs a, #breadcrumbs p, #breadcrumbs span {
	font-weight: 400 !important;
}

.lower span {
	font-weight: bold;
}

.archivehelper {
    padding: 60px;
    background: #FFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
    max-width: 350px;
    position: fixed;
    right: 0;
    top: 25%;
    z-index: 999;
	display: none;
}

@media screen and (min-width: 768px) {
	.archivehelper {
		display: block;
	}
}

.archivehelper h2 {
	font-weight: bold;
}

#breadcrumbs * {
	text-transform: uppercase !important;
	text-decoration: none !important;
}

#breadcrumbs .breadcrumb_last {
	font-weight: 900 !important;
}

.intro-category__content h1::after {
    content: " ";
    font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    margin-right: 18px;
    transition: all .4s ease-in-out;
    border-bottom: 3px solid #29C1DD;
    position: absolute;
    left: 15px;
    width: 15%;
    top: 37%;
}

nav ul li:last-child a {
	padding-left: 0;
	margin-right: 0;
}

nav ul li a {
    margin-right: 40px;
	padding: 10px 0;
    display: inline-block;
    color: #333333;
    font-weight: bold;

    transition: color 150ms ease-in-out;

    position: relative;
    text-decoration: none;
    color: #000;
}

nav ul li a:hover {
    display: inline-block;
    color: #333333;
    font-weight: bold;

    transition: color 150ms ease-in-out;
}

.full_width img {
	position: relative;
	width: 100%;
}

p a {
	text-decoration: underline;
	color: #000000;
	font-weight: bold;
}

.fifty_fifty p {
	position: relative;
	margin: auto;
}

.fifty_fifty h4, .fifty_fifty h3, .fifty_fifty h2, .fifty_fifty h1 {
	position: relative;
	margin: auto;
}

.card-product {
    overflow: hidden !important;
    text-align: center;
}

.card-product .title a {
	font-weight: 900;
}

.meertoona * {
	color: var(--primary-green) !important;
}

b, strong {
    font-weight: bold;
} 

.single-head h1 {
	font-size: 35px !important;
	font-weight: 500 !important;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: normal;
}

.product-item img {
	margin: auto;
	max-height: 450px;
	width: auto;
	max-width: 100%;
}

button.single_add_to_cart_button.button.alt {
    max-height: 46px !important;
}

.productsingleUSP {
    padding: 30px;
    margin: 15px 0;
    background: #F5F5F5;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.productsingleUSP * {
	color: #333 !important;
}

.check-green {
	margin-right: 0px;
}

.voorraadHoeveelheid, .voorraadHoeveelheid * {
	color: #00B900;
	text-transform: uppercase;
	font-size: 14px;
}

.strongitems {
	display: flex;
	justify-content: start;
}

.strongitems strong {
	font-weight: bold !important;
	margin-right: 15px;
}

.strongitems .artikelnummer {
	margin-left: 10px;
}

.strongitems .spacer {
	padding: 0 15px;
}

.strongitems {
	padding-bottom: 15px;
}

.usp-item {
    position: relative;
    display: flex;
    justify-content: start;
    max-width: 45%;
    overflow: hidden;
    min-width: 50%;
}

.single-head h1 {
    font-size: 35px!important;
    font-weight: 800!important;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--primary-green);
}

.usp-item .icony {
	margin-right: 15px;
}

.usp-item .text {
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 2px;
	font-size: 13px;
}

.productsingleUSP .usp-item:nth-child(1), .productsingleUSP .usp-item:nth-child(2) {
	margin-bottom: 15px;
}

.star-rating, .star-rating * {
	font-family: 'star' !important;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border: 1px solid #cfc8d8;
    border-right: 0;
    margin: 1px;
    margin: auto;
    margin-top: 30px;
}