:root {
	/* Colors */
	--primary: #404040;
	--primary-bg: #404040;
	--primary-dark: #575757;
	--primary-light: #565656;

	--secondary: #62B034;
	--secondary-bg: #62B034;
	--secondary-dark: #62B034;
	--secondary-light: #62B034;

	--tertiary: #E85B1A;
	--tertiary-bg: #E85B1A;
	--tertiary-dark: #E85B1A;
	--tertiary-light: #E85B1A;

	--black: #000000;
	--white: #FFFFFF;

	/* Fonts */
	--font-family-heading: "Caveat", cursive, -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
		sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji";
	--font-family-sans-serif: "Krub", -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
		sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji";
	--line-height: 1.5;

	/* Utility */
	--border-radius: 1.5rem;
}

/* [ALGEMEEN] */
body {
	background: var(--white);
	font-family: var(--font-family-sans-serif);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--primary-light);
	margin: 0;
}

#wrap {
	overflow: hidden;
}

a {
	color: var(--tertiary);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
	color: var(var(--secondary));
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-sans-serif);
	font-weight: 700;
	color: var(--primary-dark);
}

h1 {
	font-size: 3.5rem;
	line-height: 4rem;
}

h2 {
	font-size: 2.75rem;
	line-height: 3.25rem;
}

h3 {
	font-size: 2rem;
	line-height: 2.5rem;
}

h4,
h5,
h6 {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

h1.title,
h2.title {
	font-size: 3.5rem;
	line-height: 4rem;
	margin: 0 0 2rem 0;
}

h3.title {
	font-size: 2rem;
	line-height: 2.5rem;
	margin: 0 0 2rem 0;
}

.alt-title {
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	line-height: 1.25rem;
	font-weight: 400;
}

.subtitle {
	font-family: var(--font-family-heading);
	font-size: 3rem;
	line-height: 3rem;
	font-weight: 400;
	color: var(--secondary);
	text-align: center;
}

#wrap {
	min-height: 100%;
	height: auto !important;
	position: relative;
}

.rel {
	position: relative;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

label.muted {
	font-size: italic;
	color: #b5b5b5;
	cursor: not-allowed;
}

.disabled {
	display: none !important;
}

.inline {
	display: inline;
}

.spacer {
	height: 30px;
}

.spacer2 {
	height: 15px;
}

.spacer3 {
	height: 5px;
}

.spacer_aanleg {
	height: 60px;
}

.align-center {
	text-align: center;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.primarytxt {
	color: var(--primary);
}

.secondarytxt {
	color: var(--secondary);
}

.tertiarytxt {
	color: var(--tertiary);
}

.whitetxt {
	color: var(--white);
}

.html,
.contentarea {
	line-height: 32px;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

.overflow-y-hidden {
	overflow-y: hidden;
}

.nopad {
	padding: 0;
}

.top-nopad {
	padding-top: 0 !important;
}

.bot-nopad {
	padding-bottom: 0 !important;
}

.boxshadow {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(64, 64, 64, 0.25);
	box-shadow: 0px 4px 10px 0px rgba(64, 64, 64, 0.25);
}

.webshop_container .row .col-md-6:nth-child(4n+1) {
	clear: both;
}

/* [HEADER] */
header.head {
	position: sticky;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(64, 64, 64, 0);
	box-shadow: 0px 4px 10px 0px rgba(87, 64, 64, 0);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

header.head.scroll {
	position: fixed;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(64, 64, 64, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(64, 64, 64, 0.15);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	header.head.scroll {
		position: fixed;
	}
}

/* header.head .col-xs-12 {
	float: unset !important;
} */

header.head .logo {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 300px;
	padding: 1.5rem 0;
	margin-top: -2rem;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	header.head .logo {
		margin-top: 0;
	}
}

header.head .logo a img {
	width: 100%;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

header.head .logo a:hover img,
header.head .logo a:focus img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

header.head .top {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
}

header.head .top ul.toplist {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: auto;
	list-style-type: none;
	padding: 0.5rem 4rem 0.5rem 3rem;
	margin: 0 -30px 0 0;
	background: var(--primary);
	color: var(--white);
	-webkit-border-bottom-right-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	-webkit-border-bottom-left-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
}

header.head .top ul.toplist .es-rating-value {
	font-size: 1.75rem;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	header.head .top ul.toplist {
		padding: 0.5rem 3rem;
		margin: 0 0 0 0;
	}
}

header.head .top ul.toplist li {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 500;
	margin-right: 1.5rem;
}

header.head .top ul.toplist li:first-child {
	margin-right: 0;
}

header.head .top ul.toplist li:last-child {
	margin-right: 0;
}

header.head .top ul.toplist li:after {
	display: inline-block;
	content: "|";
	padding: 0 0 0 1.5rem;
}

header.head .top ul.toplist li:last-child:after {
	display: none;
}

header.head .top ul.toplist li i {
	font-size: 2rem;
	margin: 0 1rem 0 0;
}

header.head .top ul.toplist li a {
	position: relative;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

header.head .top ul.toplist li a:hover,
header.head .top ul.toplist li a:focus,
header.head .top ul.toplist li a:active {
	text-decoration: none;
}

header.head .top ul.toplist li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: #fff;
	transition: all 0.4s ease;
}

header.head .top ul.toplist li a:hover:before,
header.head .top ul.toplist li a:focus:before,
header.head .top ul.toplist li a:active:before {
	width: 100%;
}

header.head #cartholder {
	position: relative;
	display: block;
	min-width: 30px;
}

header.head #cartholder a {
	position: relative;
	display: block;
}

header.head #cartholder a:before {
	display: none;
}

header.head #cartholder a:hover,
header.head #cartholder a:focus,
header.head #cartholder a:active {
	text-decoration: none;
}

header.head #cartholder i {
	display: block;
	z-index: 1;
	font-size: 2rem;
}

header.head #cartholder .counter {
	position: absolute;
	display: block;
	min-width: 26px;
	text-align: center;
	background: var(--tertiary);
	z-index: 2;
	padding: 5px;
	color: #fff;
	border-radius: 100%;
	top: -10px;
	right: -10px;
	font-size: 16px;
	line-height: 16px;
}

header.head #cartholder a:hover .counter,
header.head #cartholder a:focus .counter,
header.head #cartholder a:active .counter {
	background: var(--secondary);
}

header.head .bottom {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	background: var(--white);
	color: var(--primary);
}

/* [MENU] */
/*
- Desktopmenu
- Mobilemenu
- Staticbar
*/

/* Desktopmenu */
.navbar {
	background: transparent;
	display: flex;
	flex-direction: row;
	border: 0;
	margin: 1.5rem 0;
}

.navbar-default ul.navbar-nav {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

.navbar-default ul.navbar-nav>li {
	margin-right: 3rem;
}

.navbar-default ul.navbar-nav>li:last-child {
	margin-right: 2rem;
}

.navbar-default ul.navbar-nav>li>a {
	position: relative;
	padding: 1.5rem 0;
	font-size: 1.75rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: var(--primary-dark);
}

.navbar-default ul.navbar-nav>li>a:hover,
.navbar-default ul.navbar-nav>li>a:focus,
.navbar-default ul.navbar-nav>li>a:active {
	color: var(--tertiary);
}

.navbar-default ul.navbar-nav>li>a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 0%;
	height: 2px;
	background: var(--tertiary);
	transition: all 0.4s ease;
}

.navbar-default ul.navbar-nav>li>a:hover:before,
.navbar-default ul.navbar-nav>li>a:focus:before,
.navbar-default ul.navbar-nav>li>a:active:before {
	width: 100%;
}

.navbar-default ul.navbar-nav>li>a.active {
	color: var(--secondary);
}

.navbar-default ul.navbar-nav>li>a.active:before {
	width: 100%;
	background: var(--secondary);
}

.navbar-default ul.navbar-nav>li>a.active:hover:before,
.navbar-default ul.navbar-nav>li>a.active:focus:before,
.navbar-default ul.navbar-nav>li>a.active:active:before {
	width: 0%;
}

.navbar-default ul.navbar-nav>.open>a,
.navbar-default ul.navbar-nav>.open>a:focus,
.navbar-default ul.navbar-nav>.open>a:hover {
	color: #555;
	background-color: var(--white);
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	background: transparent;
	border: 0;
	padding: 0px;
}

.navbar-toggle {
	background-color: var(--white);
	font-size: 12px;
	background: #898c1c;
	margin: 11px 0 11px 0;
	width: 60px;
	color: var(--white);
	padding: 0;
	border-radius: 0px;
}

.navbar-collapse {
	max-height: none !important;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	background-color: var(--tertiary);
}

.dropdown-menu {
	border-radius: 0px;
	border: 0px;
	border-left: 4px solid #6a6a6a;
	padding: 0px;
}

.dropdown-menu>li>a {
	display: block;
	padding: 16px 20px;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
	color: var(--white);
	text-decoration: none;
	background-color: #8e8e8e;
}

/* Mobilemenu */
.menu-toggle-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	margin-top: 17.5%;
}

.menu-toggle-wrap.desktop {
	margin-top: 0;
	margin-left: 2rem;
}

.menu-toggle {
	display: flex;
	flex-direction: row;
	justify-content: center;
	border-top: 2px solid var(--tertiary);
	border-bottom: 2px solid var(--tertiary);
	cursor: pointer;
}

.menu-toggle .text {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary-dark);
	text-transform: uppercase;
}

.menu-toggle.active .sluit,
.menu-toggle .open {
	display: block;
}

.menu-toggle.active .open,
.menu-toggle .sluit {
	display: none;
}

.mobilemenu {
	display: none;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.mobilemenu.active {
	position: fixed;
	display: inline-block;
	z-index: 2;
	top: 0;
	right: 0;
	background: var(--primary);
	width: 100%;
	height: 100%;
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
}

.mobilemenu .mobile_particulieren {
	position: fixed;
	display: block;
	z-index: 98;
	top: 200px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	background: var(--primary);
	padding: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.mobilemenu ul.parentmenu {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

.mobilemenu ul.parentmenu li a {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 18px;
	font-weight: 600;
	padding: 10px 20px;
	color: var(--white);
	border-bottom: 2px solid var(--white);
}

.mobilemenu ul.parentmenu li:last-child a {
	border-bottom: 2px solid var(--primary);
}

.mobilemenu ul.parentmenu li a:hover,
.mobilemenu ul.parentmenu li a:focus,
.mobilemenu ul.parentmenu li a:active {
	text-decoration: none;
	background: var(--primary);
	color: var(--tertiary);
	border-bottom: 2px solid var(--tertiary);
}

.mobilemenu ul.parentmenu li a.active {
	background: var(--primary);
	color: var(--secondary);
	font-weight: 600;
	border-bottom: 2px solid var(--secondary);
}

.mobilemenu ul.parentmenu li a.active:hover,
.mobilemenu ul.parentmenu li a.active:focus,
.mobilemenu ul.parentmenu li a.active:active {
	border-bottom: 2px solid #000;
	background: #fff;
	color: #000;
}

.mobilemenu ul.parentmenu li.has_child_menu a:after {
	position: absolute;
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 13px;
	content: "\f3be";
	margin: 0 0 0 15px;
}

.mobilemenu ul.parentmenu li a.cursus_btn {
	background: #e95a1b;
	color: #fff;
	margin: 30px 0 0 0;
	border-bottom: 0;
	text-align: center;
}

.mobilemenu ul.parentmenu li a.cursus_btn i {
	margin: 0 0 0 30px;
}

.mobilemenu ul.parentmenu li .submenu {
	list-style-type: none;
	padding-left: 0;
	margin-left: 30px;
	border-left: 3px solid #575757;
}

.mobilemenu ul.parentmenu li .submenu a:after {
	content: "";
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.mobilemenu.active {
		width: 35%;
	}

	.mobilemenu .mobile_particulieren {
		left: unset;
		width: 32%;
	}
}

/* Staticbar */
/* Place on the bottom of the screen. */
.navbar-static-bar {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: calc(100% - 10px);
	height: 60px;
	color: var(--white);
	background-color: var(--primary);
	-webkit-border-radius: 0.75rem;
	border-radius: 0.75rem;
	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);
	--static-bar-width: 26%;
	--static-bar-spacing: 0.4rem;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}

.navbar-static-bar.vo-scholen {
	width: 100%;
	--static-bar-width: 30%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

/* Make it a horizontally scrollable list. */
.navbar-static-bar .navlist-nav {
	display: flex;
	flex-wrap: nowrap;
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
}

/* Hide scrollbar. */
.navbar-static-bar .navlist-nav::-webkit-scrollbar {
	display: block;
}

.navbar-static-bar .nav-item {
	position: relative;
	display: inline-block;
	width: calc(var(--static-bar-width) - calc(3 * var(--static-bar-spacing)));
	margin-left: var(--static-bar-spacing);
	margin-right: var(--static-bar-spacing);
	vertical-align: middle;
	flex-shrink: 0;
	flex-grow: 1;
}

/* Place a line in between each item. */
.navbar-static-bar .nav-item::after {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	top: 20%;
	bottom: 20%;
	left: calc(100% + var(--static-bar-spacing) + 1px);
	background-color: var(--white);
	opacity: 0.5;
}

.navbar-static-bar .nav-item:last-child::after {
	display: none;
}

/* Place icon and text vertical. */
.navbar-static-bar .nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	color: inherit;
}

.navbar-static-bar .nav-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.navbar-static-bar .nav-link:before {
	display: none;
}

.navbar-static-bar .nav-indentation {
	display: none;
}

.navbar-static-bar .nav-title {
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 400;
	text-align: center;
	color: var(--white);
	hyphens: auto;
}

/* Highlight when selected. */
.navbar-static-bar .nav-link:active .nav-title,
.navbar-static-bar .nav-link:hover .nav-title,
.navbar-static-bar .nav-link:focus .nav-title {
	text-decoration: none;
	color: var(--white);
	background-color: transparent;
}

.navbar-static-bar .nav-link:active .nav-icon,
.navbar-static-bar .nav-link:hover .nav-icon,
.navbar-static-bar .nav-link:focus .nav-icon {
	color: var(--tertiary);
}

@media only screen and (min-width: 576px) {

	/* Small (sm) */
	.navbar-static-bar .nav-title {
		font-size: 0.75rem;
		line-height: 0.75rem;
	}
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.navbar-static-bar {
		--static-bar-width: 20%;
		--static-bar-spacing: 0.4rem;
	}
}

/* Move asside for the admin bar. */
@media screen and (max-width: 991px) {

	/* Large (lg) */
	[data-logged="true"] .navbar-static-bar {
		margin-bottom: 3.125rem;
	}
}

/* Offset height below the footer for the navigation bar. */
.navbar-static-bar-offset {
	height: 4.625rem;
}

/* [VIDEO] */
.video {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

.video video {
	width: 100%;
	height: auto;
	transition: all .5s ease-in-out;
}

.video:hover video {
	transform: scale(1.15);
}

.video .overlay {
	position: absolute;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2rem 0rem;
}

.video .overlay .subtitle {
	font-family: var(--font-family-heading);
	font-size: 3rem;
	line-height: 3rem;
	font-weight: 400;
	color: var(--white);
}

.video .overlay .title {
	font-size: 5.25rem;
	line-height: 5.75rem;
	font-weight: 700;
	color: var(--white);
}

.video .overlay .calc-title {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
	color: var(--primary);
}

.video .header-anim {
	position: absolute;
	display: flex;
	bottom: 3rem;
	left: -0.5rem;
	z-index: 1;
	max-width: 250px;
	pointer-events: none;
}

.video .header-anim .draw-path,
.video .header-anim .draw-circle {
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	animation: draw 3s ease-out forwards;
	animation-delay: 1s;
}

.video .header-anim .draw-circle {
	animation-delay: 2.75s;
}

@keyframes draw {
	to {
		stroke-dashoffset: 0;
	}
}

.video .overlay .calculator {
	position: relative;
	display: flex;
	flex-direction: column;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	padding: 2rem;
	margin: 0;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

@media only screen and (min-width: 576px) {

	/* Small (sm) */
	.video .overlay {
		height: auto;
	}
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.video .overlay {
		align-items: center;
		padding: 6rem;
	}

	.video .overlay .calculator {
		padding: 3rem;
	}

	.video .overlay .calc-title {
		font-size: 2.5rem;
		line-height: 3rem;
	}

	.video .header-anim {
		bottom: 9rem;
		left: -0.5rem;
		max-width: 650px;
	}
}

/* [CALCULATOR] */
.calculator .calc-form {
	font-size: 1.5rem;
}

.calculator .calc-form label,
.calculator .calc-form legend {
	font-size: 1.5rem;
	font-weight: 600;
	border-bottom: 0;
}

.calculator .calc-form .input-group label {
	font-weight: 400;
}

.calculator .calc-form button.btn {
	font-weight: 600;
	padding: 1rem 2rem;
}

.calculator .btn-back {
	font-family: var(--font-family-sans-serif);
	padding: 0 !important;
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	background-color: transparent !important;
	outline: none !important;
}

.calculator .btn-back:before {
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 1.5rem;
	content: "\f177";
	margin-right: 1rem;
	color: var(--tertiary);
}

.calculator .btn-back:hover,
.calculator .btn-back:focus {
	color: var(--tertiary);
}

.calculator .btn-back:hover:before,
.calculator .btn-back:focus:before {
	color: var(--primary);
}

.calculator .table-responsive {
	border: 0 !important;
}

/* [TABLES] */
.table-responsive {
	position: relative;
	background-color: transparent;
	padding: 0rem;
	border-radius: 0;
}

table.mce-item-table {
	width: 100%;
	margin: 0;
}

.table-bordered,
.table-bordered th,
.table-bordered td {
	border: 0 !important;
}

table.mce-item-table tr {
	display: flex;
	flex-direction: row;
	border-bottom: 1px solid rgba(86, 86, 86, 0.5) !important;
}

table.mce-item-table tr:first-child {
	background-color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.5rem;
}

table.mce-item-table tr:first-child,
table.mce-item-table tr:last-child {
	border-bottom: 0 !important;
}

table.mce-item-table tr td {
	padding: 1rem;
	width: 100%;
	border-right: 1px solid var(--white) !important;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

table.mce-item-table tr td table.mce-item-table tr td:hover {
	background-color: rgba(255, 255, 255, 0.5);
	color: var(--primary);
	font-weight: 700;
}

table.mce-item-table tr:first-child td,
table.mce-item-table tr td:last-child {
	border-right: 0 !important;
}

table.mce-item-table tr:first-child td:hover {
	background-color: rgba(255, 255, 255, 0);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	table.mce-item-table tr {
		flex-direction: row;
	}

	table.mce-item-table tr th {
		display: flex;
	}

	table.mce-item-table tr td {
		width: 100%;
		border-right: 1px solid var(--white) !important;
	}
}

/* [HEADER] */
section.header.border-radius .fadeheader {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

section.fadehead,
section.fadehead .fadeheaderimg {
	position: relative;
	text-align: center;
}

section.fadehead .fadeheaderimg:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgb(7, 38, 10);
	background: -webkit-linear-gradient(90deg,
			rgba(7, 38, 10, 1) 0%,
			rgba(96, 176, 51, 0) 100%);
	background: linear-gradient(90deg,
			rgba(7, 38, 10, 1) 0%,
			rgba(96, 176, 51, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#07260a", endColorstr="#60b033", GradientType=1);
}

.circles {
	position: absolute;
	display: block;
	z-index: 0;
	width: 632px;
	height: 100%;
	top: 0;
	left: 0;
}

.circles a.top_link {
	position: relative;
	display: block;
	width: 363px;
	height: auto;
	line-height: 16px;
	margin: 60px 0 0 60px;
}

.circles a.bot_link {
	position: absolute;
	display: block;
	bottom: 30px;
	right: 30px;
	width: 261px;
	height: auto;
	line-height: 16px;
}

.circles a.top_link:after {
	position: absolute;
	display: block;
	z-index: 7;
	bottom: -5px;
	right: 30%;
	border-radius: 100%;
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 30px;
	content: "\f356";
	color: #fff;
	background: var(--tertiary);
	padding: 15px 10px;
}

.circles a.bot_link:after {
	position: absolute;
	display: block;
	z-index: 7;
	bottom: 15px;
	right: 10%;
	border-radius: 100%;
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 30px;
	content: "\f356";
	color: #fff;
	background: var(--tertiary);
	padding: 15px 10px;
}

.circles a:hover:after,
.circles a:focus:after,
.circles a:active:after {
	background: var(--secondary);
	color: #fff;
}

.circles .circleimg_top {
	position: relative;
	display: block;
	z-index: 5;
	border: 4px solid var(--white);
	border-radius: 100%;
	overflow: hidden;
	text-align: center;
}

.circles .circleimg_bot {
	position: relative;
	display: block;
	z-index: 4;
	border: 4px solid var(--white);
	border-radius: 100%;
	overflow: hidden;
	text-align: center;
	margin: -150px 0 0 0;
}

.circles .circleimg_top a.advanced,
.circles .circleimg_bot a.advanced {
	right: unset;
	top: 15px;
}

.circles .circleimg_top a.editbutton,
.circles .circleimg_bot a.editbutton {
	left: 35%;
}

.circles .circleimg_top a.changealttag,
.circles .circleimg_bot a.changealttag {
	left: 41%;
}

.circles .circleimg_top a.setimglink,
.circles .circleimg_bot a.setimglink {
	left: 47%;
}

.circles .circleimg_top a.setfilelink,
.circles .circleimg_bot a.setfilelink {
	left: 53%;
}

/* [USPBAR] */
section.uspbar {
	position: relative;
	padding: 3rem 1rem;
}

section.uspbar .usp {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

section.uspbar .usp .icon {
	max-width: 80px;
}

section.uspbar .usp .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin-left: 1rem;
}

section.uspbar .usp .content .title {
	font-size: 1.75rem;
	line-height: 2rem;
	font-weight: 700;
}

section.uspbar .usp .content .desc {
	font-size: 1.25rem;
	font-weight: 400;
	margin: 0;
}

/* [CONTENT] */
section.page {
	position: relative;
	display: block;
	padding: 6rem 0;
	line-height: 26px;
}

.primarybg {
	background-color: var(--primary);
}

.secondarybg {
	background-color: var(--secondary);
}

.tertairybg {
	background-color: var(--tertiary);
}

section.orange-element:before {
	position: absolute;
	content: "";
	bottom: 6rem;
	left: 0;
	width: 630px;
	height: 95px;
	background-image: url('img/orange-element.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	pointer-events: none;
}

section.orange-element-alt:before {
	position: absolute;
	content: "";
	bottom: -6rem;
	right: -10rem;
	z-index: 2;
	width: 330px;
	height: 95px;
	background-image: url('img/orange-element.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	pointer-events: none;
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.orange-element-alt:before {
		bottom: -3rem;
		right: -10rem;
		width: 630px;
		height: 95px;
	}
}

.imagebox,
.imageboxsub {
	position: relative;
}

.imagebox.green-element:after {
	position: absolute;
	content: "";
	z-index: -1;
	bottom: -6rem;
	left: -7rem;
	width: 486px;
	height: 95px;
	rotate: -7.5deg;
	background-image: url('img/image-green-element.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	pointer-events: none;
}

.imagebox.green-element-alt:after {
	position: absolute;
	content: "";
	z-index: -1;
	top: -3rem;
	right: -3rem;
	width: 386px;
	height: 58px;
	rotate: -7.5deg;
	background-image: url('img/image-green-element.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	pointer-events: none;
	-webkit-transform: scale(-1, -1);
	transform: scale(-1, -1);
}

.imagebox.rotate {
	rotate: 7.5deg;
}

.imagebox.rotate-reverse {
	rotate: -7.5deg;
}

.imagebox.move-top {
	margin-top: 9rem;
}

.imagebox.move-left {
	margin-left: -3rem;
}

.imagebox.move-right {
	margin-right: -3rem;
}

.imagebox img.img-responsive,
.imageboxsub img.img-responsive {
	overflow: hidden;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

.buttontxt {
	font-size: 1.25rem;
	line-height: 1.25rem;
	font-weight: 600;
	color: var(--secondary);
	padding: 0 2.6rem;
}

section.page .paddingbox-right {
	padding: 0;
}

section.page .paddingbox-left {
	padding: 0;
}

section.page .circleimg_top {
	position: relative;
	display: block;
	z-index: 0;
	border: 4px solid var(--white);
	border-radius: 100%;
	overflow: hidden;
	text-align: center;
}

section.page .circleimg_bot {
	position: relative;
	display: block;
	z-index: 1;
	border: 4px solid var(--white);
	border-radius: 100%;
	overflow: hidden;
	text-align: center;
	margin: -120px 0 0 0;
}

section.page .circleimg_top a.advanced,
section.page .circleimg_bot a.advanced {
	right: unset;
	top: 15px;
}

section.page .circleimg_top a.editbutton,
section.page .circleimg_bot a.editbutton {
	left: 35%;
}

section.page .circleimg_top a.changealttag,
section.page .circleimg_bot a.changealttag {
	left: 41%;
}

section.page .circleimg_top a.setimglink,
section.page .circleimg_bot a.setimglink {
	left: 47%;
}

section.page .circleimg_top a.setfilelink,
section.page .circleimg_bot a.setfilelink {
	left: 53%;
}

section.page .usplist {
	position: relative;
	display: block;
	z-index: 1;
	background: #fff;
	padding: 15px;
	margin: -60px 0 0 0;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(87, 87, 87, 0.15);
	box-shadow: 0px 4px 10px 0px rgba(87, 87, 87, 0.15);
}

section.page .usplist h2,
section.page .usplist h3 {
	font-size: 30px;
	line-height: 35px;
	margin: 0 0 15px 0;
}

section.page .usplist ul {
	position: relative;
	display: block;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

section.page .usplist ul li {
	display: inline-block;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

section.page .usplist ul li:last-child {
	margin: 0;
}

section.page .usplist ul li:before {
	position: relative;
	color: var(--secondary);
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 18px;
	content: "\f00c";
	margin: 0;
	padding: 0 15px 0 0;
}

section.page .stap h3.title {
	margin: 15px 0;
}

section.page .stap h4 {
	font-size: 18px;
	line-height: 18px;
}

section.ctabar {
	position: relative;
	background: var(--tertiary);
	padding: 30px 0;
}

section.ctabar ul.ctalist {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

section.ctabar ul.ctalist li {
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
}

section.ctabar ul.ctalist li:before {
	position: relative;
	color: var(--white);
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 20px;
	content: "\f00c";
	margin: 0;
	padding: 0 10px 0 0;
}

section.producten {
	position: relative;
	background: var(--primary);
	padding: 6rem 0;
	margin-right: 15px;
	-webkit-border-top-right-radius: 1.25rem;
	border-top-right-radius: 1.25rem;
	-webkit-border-bottom-right-radius: 1.25rem;
	border-bottom-right-radius: 1.25rem;
}

section.producten:before {
	position: absolute;
	content: "";
	top: calc(75% - 95px);
	left: 0;
	width: 630px;
	height: 95px;
	background-image: url('img/green-element.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	pointer-events: none;
}

section.producten h3.title {
	font-size: 5.25rem;
	line-height: 5.75rem;
	font-weight: 700;
	color: var(--white);
}

section.producten .content {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	text-align: center;
}

section.greenbg {
	background: #dae2d6;
}

.iconlist ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	-webkit-columns: 1;
	columns: 1;
}

.iconlist.onecol ul {
	-webkit-columns: 1;
	columns: 1;
}

.iconlist ul li:before {
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 1.5rem;
	content: "\f111";
	margin-right: 1.5rem;
	color: var(--tertiary);
}

ul.naw-gegevens {
	list-style: none;
	padding: 0px;
	margin: 0;
}

ul.naw-gegevens li {
	margin: 0 0 5px 0;
}

ul.naw-gegevens li i {
	margin: 0 5px 0 0;
	min-width: 16px;
	color: var(--tertiary);
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	section.page .paddingbox-right {
		padding: 0 4.5rem 0 0;
	}

	section.page .paddingbox-left {
		padding: 0 0 0 4.5rem;
	}

	.iconlist ul {
		-webkit-columns: 2;
		columns: 2;
	}
}

/* [TABLES] */
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
	padding: 2px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 0px solid #ddd;
}

.table>tbody>tr.table_head>th {
	padding: 20px 5px !important;
	font-size: 15px !important;
	line-height: 15px !important;
}

/* [PROJECTEN] */
.project {
	display: block;
	margin: 0 0 30px 0;
	overflow: hidden;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

.project .project_img {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 2 / 1;
}

.project .project_img:before {
	position: absolute;
	content: "";
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 334px;
	height: 42px;
	background-image: url('img/blog-preview-element-orange.svg');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: contain;
	pointer-events: none;
}

.project .project_img a.project_link .img-responsive {
	object-fit: cover;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
}

.project .project_img a.project_link:hover .img-responsive,
.project .project_img a.project_link:focus .img-responsive,
.project .project_img a.project_link:active .img-responsive {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: -webkit-transform 2s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: transform 2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.project ul.adminlist {
	position: absolute;
	list-style-type: none;
	z-index: 1;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	padding: 1.5rem;
	margin: 0;
}

.project ul.adminlist li {
	margin-right: 1rem;
}

.project ul.adminlist li:last-child {
	margin-right: 0;
}

.project .project_title {
	position: relative;
	background: rgba(64, 64, 64, 0.05);
	padding: 2rem;
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
}

.project .project_title a.project_link {
	text-decoration: none;
}

.project .project_title a.project_link h3 {
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 700;
	color: var(--primary-dark);
	text-align: left;
	margin: 0 0 2rem 0;
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
}

.project .project_title a.project_link:hover h3,
.project .project_title a.project_link:focus h3 {
	color: var(--tertiary);
}

.project .project_title a.project_link .projectcontent {
	clear: both;
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--primary);
	margin-bottom: 3rem;
}

.project .btn-back {
	font-family: var(--font-family-sans-serif);
	padding: 0 !important;
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	background-color: transparent !important;
	outline: none !important;
}

.project .btn-back:after {
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 1.5rem;
	content: "\f178";
	margin-left: 1rem;
	color: var(--tertiary);
}

.project:hover .btn-back,
.project:focus .btn-back {
	color: var(--tertiary);
}

.project:hover .btn-back:after,
.project:focus .btn-back:after {
	color: var(--primary);
}

/* [WEBSHOP] */
.winkelmand_tabel label {
	font-weight: 500;
}

#footer .elfsight {
	width: 160px;
}

/* [FOOTER] */
footer.nav-footer {
	position: relative;
}

footer.nav-footer .footer-left-anim {
	position: absolute;
	display: block;
	z-index: 1;
	top: unset;
	bottom: 12rem;
	left: 0;
	max-width: 250px;
	pointer-events: none;
}

footer.nav-footer .footer-right-anim {
	position: absolute;
	display: block;
	z-index: 1;
	top: -1.5rem;
	right: 0;
	max-width: 300px;
	pointer-events: none;
}

footer.nav-footer .top {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-color: var(--primary);
	color: var(--white);
	padding: 3rem 3rem 9rem 3rem;
	overflow: hidden;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

footer.nav-footer .flex-middle {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

footer.nav-footer .top a {
	color: var(--white);
}

footer.nav-footer .top .logo {
	display: inline-block;
}

footer.nav-footer .top a.logo {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

footer.nav-footer .top a.logo:hover,
footer.nav-footer .top a.logo:focus {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

footer.nav-footer .top .footerspacer {
	height: 45px;
}

footer.nav-footer .top .subtitle {
	font-family: var(--font-family-heading);
	font-size: 2.5rem;
	line-height: 2.5rem;
	font-weight: 400;
	color: var(--secondary);
}

footer.nav-footer .top .title {
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 3rem 0;
}

footer.nav-footer .top ul.footlist,
footer.nav-footer .top ul.contactlist {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

footer.nav-footer .top ul.footlist li,
footer.nav-footer .top ul.contactlist li {
	margin: 0 0 2rem 0;
	font-size: 1.5rem;
	line-height: 1.5rem;
}

footer.nav-footer .top ul.footlist li:last-child,
footer.nav-footer .top ul.contactlist li:last-child {
	margin: 0;
}

footer.nav-footer .top ul.contactlist li i {
	color: var(--white);
	min-width: 16px;
}

footer.nav-footer .top ul.footlist li a {
	position: relative;
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
}

footer.nav-footer .top ul.contactlist li a {
	position: relative;
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
}

footer.nav-footer .top ul.contactlist li i {
	margin: 0 1rem 0 0;
}

footer.nav-footer .top ul.footlist li a:hover,
footer.nav-footer .top ul.footlist li a:focus,
footer.nav-footer .top ul.footlist li a:active,
footer.nav-footer .top ul.contactlist li a:hover,
footer.nav-footer .top ul.contactlist li a:focus,
footer.nav-footer .top ul.contactlist li a:active {
	color: var(--white);
	text-decoration: none;
}

footer.nav-footer .top ul.footlist li a:before,
footer.nav-footer .top ul.contactlist li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 1px;
	background: var(--white);
	transition: all 0.4s ease;
}

footer.nav-footer .top ul.footlist li a:hover:before,
footer.nav-footer .top ul.footlist li a:focus:before,
footer.nav-footer .top ul.footlist li a:active:before,
footer.nav-footer .top ul.contactlist li a:hover:before,
footer.nav-footer .top ul.contactlist li a:focus:before,
footer.nav-footer .top ul.contactlist li a:active:before {
	width: 100%;
}

footer.nav-footer .top ul.socials {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	list-style-type: none;
	padding-left: 0;
	margin: 0;
	width: 100%;
}

footer.nav-footer .top ul.socials li {
	display: flex;
	margin-right: 1rem;
	font-size: 1.5rem;
}

footer.nav-footer .top ul.socials li:last-child {
	margin-right: 0;
}

footer.nav-footer .top ul.socials li.facebook a {
	position: relative;
	min-width: 30px;
}

footer.nav-footer .top ul.socials li.facebook a:hover,
footer.nav-footer .top ul.socials li.facebook a:focus,
footer.nav-footer .top ul.socials li.facebook a:active {
	color: #1877f2 !important;
}

footer.nav-footer .top ul.socials li.facebook a i {
	position: absolute;
	font-size: 30px;
	margin: 0 0 0 15px;
}

footer.nav-footer .top ul.socials li.linkedin a {
	position: relative;
	display: inline-block;
	min-width: 30px;
}

footer.nav-footer .top ul.socials li.linkedin a:hover,
footer.nav-footer .top ul.socials li.linkedin a:focus,
footer.nav-footer .top ul.socials li.linkedin a:active {
	color: #0a66c2 !important;
}

footer.nav-footer .top ul.socials li.linkedin a i {
	position: absolute;
	font-size: 3rem;
	margin: 0 0 0 15px;
}

footer.nav-footer .bottom {
	position: relative;
	padding: 15px 0;
	color: var(--white);
}

footer.nav-footer .bottom ul.footlist {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

footer.nav-footer .bottom ul.footlist li {
	display: inline;
	font-size: 1.4rem;
	line-height: 1.4rem;
	font-weight: 400;
	color: var(--primary);
	margin: 0 1.5rem 0 0;
}

footer.nav-footer .bottom ul.footlist li:last-child {
	margin: 0;
}

footer.nav-footer .bottom ul.footlist li:after {
	display: inline;
	content: "|";
	margin: 0 0 0 1.5rem;
}

footer.nav-footer .bottom ul.footlist li:last-child:after {
	content: "";
}

footer.nav-footer .bottom ul.footlist li a {
	position: relative;
	display: inline-block;
	color: var(--primary);
	font-size: 1.35rem;
	line-height: 1.35rem;
	font-weight: 400;
}

footer.nav-footer .bottom ul.footlist li a:hover,
footer.nav-footer .bottom ul.footlist li a:focus,
footer.nav-footer .bottom ul.footlist li a:active {
	color: var(--tertiary);
	text-decoration: none;
}

footer.nav-footer .bottom ul.footlist li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: var(--tertiary);
	transition: all 0.4s ease;
}

footer.nav-footer .bottom ul.footlist li a:hover:before,
footer.nav-footer .bottom ul.footlist li a:focus:before,
footer.nav-footer .bottom ul.footlist li a:active:before {
	width: 100%;
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	footer.nav-footer .footer-left-anim {
		top: 12rem;
		bottom: unset;
		left: 0;
		max-width: 250px;
	}

	footer.nav-footer .footer-right-anim {
		top: -1.5rem;
		right: 0;
		max-width: 400px;
	}

	footer.nav-footer .top {
		padding: 6rem;
	}

	footer.nav-footer .top .subtitle {
		font-size: 3rem;
		line-height: 3rem;
	}

	footer.nav-footer .top .title {
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
}

/* [DOWNLOAD] */
.file {
	margin: 0 0 5px 0;
}

.file a {
	position: relative;
	color: #1d1d1d;
	margin: 0 0 5px 0;
}

.file a:hover,
.file a:focus,
.file a:active {
	color: var(--white);
	text-decoration: none;
}

.file a.downloadfile i {
	margin: 0 10px 0 0;
}

/* [GOOGLEMAP] */
.googlemap {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-border-radius: 1.25rem;
	border-radius: 1.25rem;
}

.gm-style-iw {
	padding: 10px;
	line-height: 22px;
	font-size: 14px !important;
	font-weight: 500 !important;
}

.gm-style-iw h5 {
	font-family: var(--font-family-sans-serif);
	color: #383838;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.gm-style-iw a {
	color: var(--tertiary);
	font-weight: 700;
	margin-left: 0 !important;
	float: unset !important;
}

.gm-style-iw a:hover,
.gm-style-iw a:focus,
.gm-style-iw a:active {
	text-decoration: none;
	color: var(--secondary);
}

/* [FORM] */
.form .form-group label {
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	line-height: 32px;
	text-align: left;
}

.form .form-group label .red {
	color: var(--tertiary);
}

.form .stemmen label {
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
}

.form .form-group input {
	display: block;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.5);
	background: rgba(0, 0, 0, 0);
	font-size: 16px;
	color: var(--primary-dark);
	padding: 2.5rem;
	outline: none !important;
	-webkit-border-radius: 0.75rem;
	border-radius: 0.75rem;
}

.form .form-group input[type="file"] {
	padding: 5px 10px;
}

.form .form-group input:hover,
.form .form-group input:focus {
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid #eb6322;
	-webkit-box-shadow: unset;
	box-shadow: unset;
}

.form .form-group textarea {
	display: block;
	width: 100%;
	padding: 2.5rem;
	font-size: 16px;
	color: var(--primary-dark);
	border: 1px solid rgba(0, 0, 0, 0.5);
	background: rgba(0, 0, 0, 0);
	outline: none !important;
	-webkit-border-radius: 0.75rem;
	border-radius: 0.75rem
}

.form .form-group textarea:hover,
.form .form-group textarea:focus {
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid var(--tertiary);
	-webkit-box-shadow: unset;
	box-shadow: unset;
}

.form .form-group select {
	display: block;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.5);
	background: rgba(0, 0, 0, 0);
	font-size: 16px;
	color: var(--primary-dark);
	outline: none !important;
	padding: 2.5rem;
	border-radius: 0;
}

.modal-body .form .form-group input,
.modal-body .form .form-group textarea {
	border: 1px solid #26357a;
	background: rgba(0, 0, 0, 0);
	color: #c23508;
}

.form .form-group input[type="submit"] {
	position: relative;
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 700;
	display: block;
	width: 100%;
	text-decoration: none;
	border-radius: 2rem;
	border: 1px solid var(--secondary);
	padding: 1.3rem 2.6rem 1.3rem 2.6rem !important;
	letter-spacing: 0.5px;
	text-align: center;
	background-color: var(--secondary);
	color: var(--white);
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
}

.form .form-group input[type="submit"]:hover,
.form .form-group input[type="submit"]:focus,
.form .form-group input[type="submit"]:active {
	padding: 1.3rem 2.6rem 1.3rem 2.6rem !important;
	border-color: var(--secondary);
	background-color: var(--white);
	color: var(--secondary);
}

.form .form-group input[type="radio"],
.form .form-group input[type="checkbox"] {
	display: inline-block;
	width: 5%;
	text-align: left;
}

@media only screen and (min-width: 576px) {

	/* Small (sm) */
	.form .form-group input[type="submit"] {
		display: block;
		width: 100%;
		text-align: center;
	}
}

@media only screen and (min-width: 768px) {

	/* Medium (md) */
	.form .form-group input[type="submit"] {
		display: inline-block;
		width: auto;
		margin-bottom: 1rem;
	}
}

@media only screen and (min-width: 992px) {

	/* Large (lg) */
	.form .form-group input[type="submit"] {
		display: inline-block;
		width: auto;
		margin-bottom: 0;
	}
}

/* [CAROUSEL] */
.tophead {
	font-size: 2.3em;
	font-weight: 600;
	text-transform: uppercase;
}

.bottomhead {
	font-weight: 100;
	font-size: 1.5em;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
	margin: auto;
}

.carousel-indicators {
	bottom: -10%;
}

.carousel:hover .carousel-indicators {
	bottom: 2%;
}

.carousel-control,
.carousel-indicators {
	-webkit-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

.carousel-control.left {
	left: -10%;
	opacity: 0;
}

.carousel:hover .carousel-control.left {
	left: 0%;
	opacity: 0.5;
}

.carousel-control.right {
	right: -10%;
	opacity: 0;
}

.carousel:hover .carousel-control.right {
	right: 0%;
	opacity: 0.5;
}

.carousel {
	overflow: hidden;
}

.captionbox {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 3;
	width: 100%;
	height: 100%;
}

.carousel-caption {
	position: relative;
	left: unset;
	right: unset;
	bottom: unset;
	text-align: center;
	background: transparent;
	padding: 150px 0 0 0;
}

.carousel-caption .tophead {
	font-size: 50px;
	line-height: 50px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}

.carousel-caption .bottomhead {
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
}

.carousel-caption .btn-default {
	margin: 45px 0 0 0;
	text-shadow: none;
	clear: both;
	display: inline-block;
	background: var(--tertiary);
	border: 1px solid var(--tertiary);
	padding: 15px 60px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
	outline: none;
	color: var(--white);
	border-radius: 30px;
}

.carousel-caption .btn-default:hover,
.carousel-caption .btn-default:focus,
.carousel-caption .btn-default:active {
	background: var(--white);
	color: var(--tertiary);
}

.carousel-caption .btn i {
	margin: 0 0 0 30px;
}

.carousel.fade {
	opacity: 1;
}

.fade .carousel-inner .item {
	opacity: 0;
	transition-property: opacity;
}

.fade .carousel-inner .active {
	opacity: 1;
}

.fade .carousel-inner .active.left,
.fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}

.fade .carousel-inner .next.left,
.fade .carousel-inner .prev.right {
	opacity: 1;
}

.fade .carousel-control {
	z-index: 2;
}

@media all and (transform-3d),
(-webkit-transform-3d) {

	.fade .carousel-inner>.item.next,
	.fade .carousel-inner>.item.active.right {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.fade .carousel-inner>.item.prev,
	.fade .carousel-inner>.item.active.left {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.fade .carousel-inner>.item.next.left,
	.fade .carousel-inner>.item.prev.right,
	.fade .carousel-inner>.item.active {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/* Chrome, Safari, Opera */
@-webkit-keyframes entrance {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0px;
	}
}

/* Standard syntax */
@keyframes entrance {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0px;
	}
}

@media (min-width: 1200px) {
	.carousel.vertical .carousel-inner {
		height: 100%;
		width: auto;
	}

	.carousel.vertical .carousel-inner>.item {
		width: auto;
		padding-right: 0px;
		-webkit-transition: 0.6s ease-in-out top;
		transition: 0.6s ease-in-out top;
	}

	@media all and (transform-3d),
	(-webkit-transform-3d) {
		.carousel.vertical .carousel-inner>.item {
			-webkit-transition: 0.6s ease-in-out;
			transition: 0.6s ease-in-out;
		}

		.carousel.vertical .carousel-inner>.item.next,
		.carousel.vertical .carousel-inner>.item.active.right {
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
			top: 0;
		}

		.carousel.vertical .carousel-inner>.item.prev,
		.carousel.vertical .carousel-inner>.item.active.left {
			-webkit-transform: translate3d(0, -100%, 0);
			transform: translate3d(0, -100%, 0);
			top: 0;
		}

		.carousel.vertical .carousel-inner>.item.next.left,
		.carousel.vertical .carousel-inner>.item.prev.right,
		.carousel.vertical .carousel-inner>.item.active {
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
			top: 0;
		}
	}

	.carousel.vertical .carousel-inner>.active,
	.carousel.vertical .carousel-inner>.next,
	.carousel.vertical .carousel-inner>.prev {
		display: block;
	}

	.carousel.vertical .carousel-inner>.active {
		top: 0;
	}

	.carousel.vertical .carousel-inner>.next,
	.carousel.vertical .carousel-inner>.prev {
		position: absolute;
		top: 0;
		width: 100%;
	}

	.carousel.vertical .carousel-inner>.next {
		top: 100%;
	}

	.carousel.vertical .carousel-inner>.prev {
		top: -100%;
	}

	.carousel.vertical .carousel-inner>.next.left,
	.carousel.vertical .carousel-inner>.prev.right {
		top: 0;
	}

	.carousel.vertical .carousel-inner>.active.left {
		top: -100%;
	}

	.carousel.vertical .carousel-inner>.active.right {
		top: 100%;
	}

	.carousel.vertical .carousel-control {
		left: auto;
		width: 50px;
	}

	.carousel.vertical .carousel-control.up {
		top: 0;
		right: 0;
		bottom: 50%;
	}

	.carousel.vertical .carousel-control.down {
		top: 50%;
		right: 0;
		bottom: 0;
	}

	.carousel.vertical .carousel-control .icon-prev,
	.carousel.vertical .carousel-control .icon-next,
	.carousel.vertical .carousel-control .glyphicon-chevron-up,
	.carousel.vertical .carousel-control .glyphicon-chevron-down {
		position: absolute;
		top: 50%;
		z-index: 5;
		display: inline-block;
	}

	.carousel.vertical .carousel-control .icon-prev,
	.carousel.vertical .carousel-control .glyphicon-chevron-up {
		left: 50%;
		margin-left: -10px;
		top: 50%;
		margin-top: -10px;
	}

	.carousel.vertical .carousel-control .icon-next,
	.carousel.vertical .carousel-control .glyphicon-chevron-down {
		left: 50%;
		margin-left: -10px;
		top: 50%;
		margin-top: -10px;
	}

	.carousel.vertical .carousel-control .icon-up,
	.carousel.vertical .carousel-control .icon-down {
		width: 20px;
		height: 20px;
		line-height: 1;
		font-family: serif;
	}

	.carousel.vertical .carousel-control .icon-prev:before {
		content: "\2039";
	}

	.carousel.vertical .carousel-control .icon-next:before {
		content: "\203a";
	}
}

/* Chrome, Safari, Opera */
@-webkit-keyframes entrance {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0px;
	}
}

/* Standard syntax */
@keyframes entrance {
	from {
		opacity: 0;
		margin-left: -10px;
	}

	to {
		opacity: 1;
		margin-left: 0px;
	}
}

/* [ADMIN] */
.modal-content {
	border-radius: 0px;
}

.modal-header .close {
	margin-top: -32px;
}

.close {
	font-size: 40px;
	font-weight: 400;
	color: #2f2f2f;
	filter: alpha(opacity=100) !important;
	opacity: 1 !important;
}

/* [LOGIN] */
.fancybox-skin {
	position: relative;
	background: #fff !important;
	color: #2f2f2f;
	text-shadow: none;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px;
}

.fancybox-skin h2 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.fancybox-skin .control-label {
	font-size: 14px;
}

.fancybox-skin .form-control {
	font-size: 14px;
	color: #2f2f2f;
	background-color: #fff;
	border: 1px solid #1f5081;
	border-radius: 0px;
	outline: none;
}

.fancybox-skin .form-control:hover,
.fancybox-skin .form-control:focus,
.fancybox-skin .form-control:active {
	border: 1px solid #fede30;
}

.fancybox-skin .form .showAjax {
	font-size: 14px;
}

.fancybox-skin .form .mui-btn {
	font-weight: 400 !important;
}

/* [RESPONSIVE] */
@media (max-width: 992px) {
	#wrap {
		overflow-x: hidden;
	}

	.fixedpos {
		position: fixed;
		display: block;
		z-index: 1;
	}

	.circles {
		width: 50%;
	}

	.circles a.top_link {
		width: 75%;
	}

	.circles a.bot_link {
		width: 50%;
	}

	section.ctabar ul.ctalist {
		display: block;
		justify-content: unset;
		align-items: unset;
	}

	section.ctabar ul.ctalist li {
		display: block;
		margin: 0 0 15px 0;
	}

	section.ctabbar ul.ctalist li:last-child {
		margin: 0;
	}

	section.page,
	section.producten {
		padding: 30px 0;
	}

	.modal {
		z-index: 99999 !important;
	}

	.container {
		width: auto !important;
	}
}

@media (max-width: 414px) {
	.xs-block {
		display: block;
		width: 100%;
		text-align: center;
	}

	header.head .top ul.toplist {
		float: unset;
	}

	.circles {
		display: none;
	}

	.subfade .carousel-caption {
		padding: 90px 0 0 0 !important;
	}

	.subfade .carousel-caption .tophead {
		font-size: 40px;
		line-height: 45px;
	}

	.btn-goback {
		margin: 0 0 30px 0;
		width: 100%;
		text-align: center;
	}

	.hoofdafbeelding {
		margin: 0 0 30px 0;
	}

	#cartModal .btn-custom1,
	#cartModal .btn-custom2 {
		width: 100%;
		text-align: center;
		margin: 0 0 15px 0;
	}

	#footer .pull-right {
		float: unset !important;
	}

	.readmore-uit table {
		width: 100% !important;
		max-width: 100% !important;
		font-size: 13px !important;
	}

	.form_left,
	.form_right {
		clear: both;
		margin: 0 0 60px 0;
	}

	.form_left h2,
	.form_right h2 {
		font-size: 25px;
		line-height: 30px;
	}
}

.webshop_container [data-filter-id] {
	display: none;
}

c-frame.whappe-align-bottomright,
[is="c-frame"].whappe-align-bottomright,
c-bubble.whappe-align-bottomright,
[is="c-bubble"].whappe-align-bottomright,
c-frame.whappe-align-bottomleft,
[is="c-frame"].whappe-align-bottomleft,
c-bubble.whappe-align-bottomleft,
[is="c-bubble"].whappe-align-bottomleft {
	/* display: none !important; */
	bottom: 90px !important;
}