/* [ALGEMEEN] */
:root {
	--theme_green: #41693D;
	--theme_orange: #F47827;
	--theme_grey: #656565;
	--black: #000;
	--white: #FFF;
	--font: 'Poppins', sans-serif;
}

body {
	background: #FFF;
	font-family: var(--font);
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	color: var(--black);
	margin: 0;
	
}

a {
	color: var(--theme_orange);
	font-weight: 700;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

a:hover,
a:focus,
a:active {
	color: var(--theme_orange);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font);
	font-weight: 600;
	color: var(--theme_orange);
}

h1 {
	font-size: 40px;
	line-height: 45px;
}

h2 {
	font-size: 30px;
	line-height: 35px;
	margin: 30px 0 15px 0;
}

h3, h4, h5, h6 {
	font-size: 25px;
	line-height: 30px;
	margin: 30px 0 15px 0;
}

.asp-dn
{
    display:none;
}

h1.title {
	position: relative;
	display: block;
	z-index: 0;
	font-size: 40px;
	line-height: 40px;
	margin: 0 0 30px 0;
	pointer-events: none;
}

h2.title {
	position: relative;
	display: inline-block;
	z-index: 1;
	font-size: 40px;
	line-height: 40px;
	margin: 0 0 30px 0;
}

h3.title {
	position: relative;
	display: inline-block;
	z-index: 1;
	font-size: 40px;
	line-height: 40px;
	margin: 0 0 30px 0;
}

h2.download_title {
	font-size: 25px;
    line-height: 25px;
	margin: 0 0 30px 0;
}

h2.contact_title {
	font-size: 25px;
    line-height: 25px;
	margin: 0 0 30px 0;
}

h2.check_title {
	font-size: 25px;
    line-height: 25px;
	margin: 0 0 30px 0;
}

h2.related_title {
	font-size: 35px;
	line-height: 35px;
	margin: 60px 0 30px 0;
}

h2.offerte_title {
	display: block;
	width: 100%;
	padding: 15px 30px;
	background-color: var(--theme_orange);
	color: var(--white);
	margin: 0 0 30px 0;
}

#wrap {
	min-height: 100%;
	height: auto !important;
}

.rel {
	position: relative;
}

.spacer {
	height: 30px;
}

.spacer15 {
	height: 15px;
}

.spacer60 {
	height: 60px;
}

.marg60 {
	margin: 60px 0;
}

.marg90 {
	margin: 90px 0;
}

.block {
	display: block;
}

.red {
	color: red;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.uppercase {
	text-transform: uppercase;
}

.icons {
	z-index: 2;
}

.ui-state-default {
	font-size: 13px;
}

blockquote {
	padding: 10px 20px;
    margin: 15px 0;
    font-size: 16px;
    font-weight: 500;
    border-left: 5px solid #7CC601;
}

.boxshadow {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
       -moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
        -ms-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
         -o-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
            box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
}

/* [PROGRESS BAR] */
.progress-wrapper {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	line-height: 0;
}

.progress-wrapper .progress-label {
	position: relative;
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
}

.progress-wrapper progress {
	position: relative;
	width: 100%;
	height: 5px;
	vertical-align: text-top;
	background: var(--theme_orange);
	border: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	 	    appearance: none;
}

.progress-wrapper progress::-moz-progress-bar {
	background: var(--theme_orange);	
}

.progress-wrapper progress::-webkit-progress-value {
	background: var(--theme_orange);	
}

.progress-wrapper progress::-ms-fill {
	background: var(--theme_orange);	
}

.progress-wrapper progress::-webkit-progress-bar {
	background-color: var(--white);
}

/* [SPLASHSCREEN] */
.splashscreen {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,1);
	z-index: 9999999;
}

.splashscreen .slogan {
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	margin: 5px 0 0 0;
}

.splashscreen section.bar {
	position: fixed;
	display: block;
	z-index: 51;
	width: 100%;
	top: 0;
	left: 0;
	padding: 15px 0;
	background: var(--white);
}

.splashscreen .orangegradient {
	display: table;
	width: 100%;
	height: 100vh;
	z-index: 1;
	background: rgb(244,120,39);
	background: -moz-linear-gradient(125deg, rgba(244,120,39,1) 0%, rgba(157,62,2,1) 100%);
	background: -webkit-linear-gradient(125deg, rgba(244,120,39,1) 0%, rgba(157,62,2,1) 100%);
	background: linear-gradient(125deg, rgba(244,120,39,1) 0%, rgba(157,62,2,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f47827",endColorstr="#9d3e02",GradientType=1);
}

.splashscreen .greengradient {
	display: table;
	width: 100%;
	height: 100vh;
	z-index: 2;
	background: #FFF;
	-webkit-clip-path: polygon(52% 0%, 100% 0%, 100% 100%, 45% 100%);
	        clip-path: polygon(52% 0%, 100% 0%, 100% 100%, 45% 100%);  
}

.splashscreen .greengradient:before {
	content: '';
	width: 96%;
	height: 100vh;
	background: rgb(65,105,61);
	background: -moz-linear-gradient(225deg, rgba(65,105,61,1) 0%, rgba(33,53,31,1) 100%);
	background: -webkit-linear-gradient(225deg, rgba(65,105,61,1) 0%, rgba(33,53,31,1) 100%);
	background: linear-gradient(225deg, rgba(65,105,61,1) 0%, rgba(33,53,31,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#41693d",endColorstr="#21351f",GradientType=1);
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-clip-path: polygon(52.5% 0%, 100% 0%, 100% 100%, 44.5% 100%);
			clip-path: polygon(52.5% 0%, 100% 0%, 100% 100%, 44.5% 100%);  
}

.splashscreen .img {
	position: absolute;
	display: block;
	z-index: 3;
	top: 50%;
	margin-top: -100px;
	left: 50%;
	margin-left: -382px;
}

.splashscreen .opties {
	position: absolute;
	display: block;
	z-index: 4;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 103px;
}

.splashscreen .opties .optie {
	display: block;
	padding: 90px 0 180px 0;
	color: #FFF;
}

.splashscreen .opties .optie .title {
	font-size: 50px;
	line-height: 60px;
	font-weight: 500;
	margin: 0 0 15px 0;
}

.splashscreen .opties .optie .subtitle {
	font-size: 50px;
	line-height: 65px;
	font-weight: 700;
}

.splashscreen .opties .btnspacer {
	height: 20vh;
}

.splashscreen a.btn-splash {
	position: relative;
	display: inline-block;
	padding: 30px;
	border-radius: 15px;
	background-color: #F47827;
	font-size: 18px;
	line-height: 17px;
	font-weight: 700;
	color: #FFF;
	-webkit-box-shadow: 5px 5px 0px 0px #000000; 
			box-shadow: 5px 5px 0px 0px #000000;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.splashscreen a.btn-splash:hover,
.splashscreen a.btn-splash:focus,
.splashscreen a.btn-splash:active {
	text-decoration: none;
	background-color: #FFF;
	color: #F47827;
}

.splashscreen a.btn-splash i {
	margin: 0 0 0 15px;
}

@media(max-width: 414px) {

	.splashscreen .img {
		display: none;
	}

	.splashscreen .greengradient {
		background: transparent;
	}

	.splashscreen .align-left,
	.splashscreen .align-right {
		text-align: center;
	}

	.splashscreen .opties .optie {
		padding: 30px 0;
	}

	.splashscreen .opties .optie .title {
		font-size: 30px;
		line-height: 30px;
	}

	.splashscreen .opties .optie .subtitle {
		font-size: 30px;
		line-height: 45px
	}

	.splashscreen .opties .optie .subtitle br {
		content: "";
	}

	.splashscreen .opties .optie .subtitle br:after {
		content: " ";
	}

	.splashscreen .opties .btnspacer {
		display: none;
	}

	.splashscreen a.btn-splash {
		display: block;
		width: 100%;
		text-align: center;
	}

}

/* [HEADER] */
header.head {
	position: fixed;
	display: block;
	z-index: 51;
	width: 100%;
	top: 0;
	left: 0;
	background: var(--white);
}

header.head.scroll {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5);
       -moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5);
        -ms-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5);
         -o-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5);
            box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5);
}

header.head.adminspacer {
	margin: 36px 0 0 0;
}

.headerspacer {
	margin: 80px 0 0 0;
}

.headerspacer.adminmenu {
	margin: 125px 0 0 0;
}

header.head .logo {
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: 0;
}

header.head .logo img {
	width: 100%;
}

header.head .logo::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.25) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.25) 100%);
	-webkit-transform: skewX(-25deg);
	        transform: skewX(-25deg);
}

header.head .logo:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

header.head .top {
	position: relative;
	display: block;
	background: var(--white);
	padding: 15px 0;
}

header.head .top ul.phonelist {
	list-style: none;
	padding-left: 0;
	margin: 2px 0 0 0;	
}

header.head .top ul.phonelist li {
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: var(--black);
	margin: 0 0 8px 0;
}

header.head .top ul.phonelist li:last-child {
	margin: 0;
}

header.head .top ul.phonelist li i {
	margin: 0 10px 0 0;
	min-width: 16px;
}

header.head .top ul.phonelist li a {
	position: relative;
	color: var(--theme_green);
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
}

header.head .top ul.phonelist li a:hover,
header.head .top ul.phonelist li a:focus,
header.head .top ul.phonelist li a:active {
	text-decoration: none;
}

header.head .top ul.phonelist li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: var(--theme_green);
    transition: all 0.4s ease;
}

header.head .top ul.phonelist li a:hover:before,
header.head .top ul.phonelist li a:focus:before,
header.head .top ul.phonelist li a:active:before {
    width: 100%;
}

header.head .top ul.kopenlist {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

header.head .top ul.kopenlist li {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: var(--black);
	margin: 0 0 5px 0;
}

header.head .top ul.kopenlist li:last-child {
	margin: 0;
}

header.head .top ul.kopenlist li i {
	margin: 0 10px 0 0;
}

header.head .top ul.kopenlist li a {
	position: relative;
	color: var(--theme_orange);
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
}

header.head .top ul.kopenlist li a:hover,
header.head .top ul.kopenlist li a:focus,
header.head .top ul.kopenlist li a:active {
	text-decoration: none;
}

header.head .top ul.kopenlist li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--theme_orange);
    transition: all 0.4s ease;
}

header.head .top ul.kopenlist li a:hover:before,
header.head .top ul.kopenlist li a:focus:before,
header.head .top ul.kopenlist li a:active:before {
    width: 100%;
}

header.head .bottom {
	position: relative;
	display: block;
	background: var(--theme_green);
	padding: 0;
}

/* [MENU] */
.menu-toggle {
	display: none;
}

.mobilemenu {
	display: none;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
	    -ms-transition: all .5s;
	     -o-transition: all .5s;
	        transition: all .5s;
}

.mobile_footer,
.mobile_icons {
	display: none;
}

.navbar {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 14px;
	border-radius: 0;
	min-height: 0 !important;
}

.navbar-default .active-marker {
   	position: absolute;
	display: none;
	bottom: -5px;
	left: 0;
	width: auto;
	height: 5px;
  	transition: all 0.2s cubic-bezier(0.25, 0.25, 0.25, 1.25);
  	background: var(--theme_orange);
}

.navbar-default .navbar-nav {
	position: relative;
	display: flex;
    justify-content: space-around;
    align-items: center;
	width: 100%;
    padding: 0;
    margin: 0 !important;
}

.navbar-default .navbar-nav>li {
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
}

.navbar-default .navbar-nav>li.li_admin a img {
	transition: filter .25s ease-in-out;
    -webkit-filter: grayscale(0%);
       -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
         -o-filter: grayscale(0%);
            filter: grayscale(0%);
}

.navbar-default .navbar-nav>li.li_admin a:hover img,
.navbar-default .navbar-nav>li.li_admin a:focus img,
.navbar-default .navbar-nav>li.li_admin a:active img {
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}

.navbar-default .navbar-nav>li.li_btn {
	margin: 0;
}

.navbar-default .navbar-nav>li.external>a {
	color: #151515;
}

.navbar-default .navbar-nav>li.external>a:hover,
.navbar-default .navbar-nav>li.external>a:focus,
.navbar-default .navbar-nav>li.external>a:active {
	background: transparent;
	color: #151515;
}

.navbar-default .navbar-nav>li>a {
	position: relative;
	display: block;
	background: transparent;
	color: var(--white);
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:active {
	background: transparent;
	color: var(--white);
	background: var(--theme_orange);
}

.navbar-default .navbar-nav>.open>a, 
.navbar-default .navbar-nav>.open>a:focus, 
.navbar-default .navbar-nav>.open>a:hover {
	background: transparent;
	color: var(--white);
	background: var(--theme_orange);
}

.navbar-default .navbar-nav>li>a.active {
	background: transparent !important;
	color: var(--white);
	font-weight: 700;
}

.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:focus, 
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>li>a.active:hover,
.navbar-default .navbar-nav>li>a.active:focus,
.navbar-default .navbar-nav>li>a.active:active {
	background: transparent !important;
	color: var(--white);
}

.navbar-default .navbar-nav>li>a i {
	margin: 0 0 0 5px;
}

.navbar-default .navbar-collapse, 
.navbar-default .navbar-form {
	background: transparent;
	border: 0;
}

.navbar-toggle {
	font-size: 12px;
	background: var(--theme_red);
	margin: 15px 0 0 0;
	width: 60px;
	color: var(--white);
	padding: 0;
}

.navbar-collapse {
	max-height :none !important;	
	padding: 0;
}

.dropdown-menu {
    padding: 0;
    border: 0;
    z-index: 9999;
    top: 112.5%;
}

.dropdown-menu>li>a {
	font-size: 16px;
	line-height: 16px;
    font-weight: 400;
    padding: 15px;
    background: var(--white);
	color: var(--black);
}

.dropdown-menu>li>a:focus, 
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:active {
    background: var(--theme_orange) !important;
	color: var(--white);
}

.dropdown-menu>li>a.active {
	background: var(--theme_orange);
	color: var(--white) !important;
}

.dropdown-menu>li>a.active:hover,
.dropdown-menu>li>a.active:focus,
.dropdown-menu>li>a.active:active {
	background: var(--white) !important;
	color: var(--theme_blue) !important;
}

/* [CONTENT] */
section.page {
	position: relative;
	padding: 60px 0;
}

.quickscroll {
	position: relative;
	display: block;
	padding: 30px;
	color: var(--white);
	cursor: pointer;
}

.quickscroll.greenbg {
	background: rgb(65,105,61);
	background: -moz-linear-gradient(90deg, rgba(65,105,61,1) 0%, rgba(33,53,31,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(65,105,61,1) 0%, rgba(33,53,31,1) 100%);
	background: linear-gradient(90deg, rgba(65,105,61,1) 0%, rgba(33,53,31,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#41693d",endColorstr="#21351f",GradientType=1);
}

.quickscroll.greenbg:hover {
	background: rgb(33,53,31);
	background: -moz-linear-gradient(90deg, rgba(33,53,31,1) 0%, rgba(65,105,61,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(33,53,31,1) 0%, rgba(65,105,61,1) 100%);
	background: linear-gradient(90deg, rgba(33,53,31,1) 0%, rgba(65,105,61,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#21351f",endColorstr="#41693d",GradientType=1);
}

.quickscroll.orangebg {
	background: rgb(244,120,39);
	background: -moz-linear-gradient(90deg, rgba(244,120,39,1) 0%, rgba(157,62,2,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(244,120,39,1) 0%, rgba(157,62,2,1) 100%);
	background: linear-gradient(90deg, rgba(244,120,39,1) 0%, rgba(157,62,2,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f47827",endColorstr="#9d3e02",GradientType=1);
}

.quickscroll.orangebg:hover {
	background: rgb(157,62,2);
	background: -moz-linear-gradient(90deg, rgba(157,62,2,1) 0%, rgba(244,120,39,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(157,62,2,1) 0%, rgba(244,120,39,1) 100%);
	background: linear-gradient(90deg, rgba(157,62,2,1) 0%, rgba(244,120,39,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9d3e02",endColorstr="#f47827",GradientType=1);
}

.quickscroll.greybg {
	background: rgb(101,101,101);
	background: -moz-linear-gradient(90deg, rgba(101,101,101,1) 0%, rgba(73,73,73,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(101,101,101,1) 0%, rgba(73,73,73,1) 100%);
	background: linear-gradient(90deg, rgba(101,101,101,1) 0%, rgba(73,73,73,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#656565",endColorstr="#494949",GradientType=1);
}

.quickscroll.greybg:hover {
	background: rgb(73,73,73);
	background: -moz-linear-gradient(90deg, rgba(73,73,73,1) 0%, rgba(101,101,101,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(73,73,73,1) 0%, rgba(101,101,101,1) 100%);
	background: linear-gradient(90deg, rgba(73,73,73,1) 0%, rgba(101,101,101,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#494949",endColorstr="#656565",GradientType=1);
}

.quickscroll h2.title {
	position: relative;
	display: block;
	color: var(--white);
	font-size: 35px;
	line-height: 35px;
}

.quickscroll h2.title:after {
	position: absolute;
	top: 30px;
	right: 0;
	color: var(--white);
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 30px;
	content: "\f30b";
	margin: 0;
}

.quickscroll .img_desc {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
}

section.tuinschuur_title {
	position: relative;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(65,105,61,1) 50%, rgba(65,105,61,1) 100%);
	background: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(65,105,61,1) 50%, rgba(65,105,61,1) 100%);
	background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(65,105,61,1) 50%, rgba(65,105,61,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#41693d",GradientType=1);
}

section.tuinschuur_title h2.title {
	font-size: 28px;
	line-height: 28px;
	font-weight: 400;
	color: var(--white);
	margin: 0;
	padding: 15px 15px 15px 0;
	background-color: var(--theme_green);
}

section.tuinschuur_content {
	padding: 30px 0 60px 0;
}

section.garage_title {
	position: relative;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(244,120,39,1) 50%, rgba(244,120,39,1) 100%);
	background: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(244,120,39,1) 50%, rgba(244,120,39,1) 100%);
	background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(244,120,39,1) 50%, rgba(244,120,39,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f47827",GradientType=1);
}

section.garage_title h2.title {
	font-size: 28px;
	line-height: 28px;
	font-weight: 400;
	color: var(--white);
	margin: 0;
	padding: 15px 15px 15px 0;
	background-color: var(--theme_orange);
}

section.garage_content {
	padding: 30px 0 60px 0;
}

section.tuinhuis_title {
	position: relative;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(101,101,101,1) 50%, rgba(101,101,101,1) 100%);
	background: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(101,101,101,1) 50%, rgba(101,101,101,1) 100%);
	background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(101,101,101,1) 50%, rgba(101,101,101,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#656565",GradientType=1);
}

section.tuinhuis_title h2.title {
	font-size: 28px;
	line-height: 28px;
	font-weight: 400;
	color: var(--white);
	margin: 0;
	padding: 15px 15px 15px 0;
	background-color: var(--theme_grey);
}

section.tuinhuis_content {
	padding: 30px 0 60px 0;
}

.contentarea ul,
.html ul,
.blog_content_desc ul {
	list-style-type: none;
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

.contentarea ul li,
.html ul li,
.blog_content_desc ul li {
	position: relative;
	display: block;
	margin: 0 0 10px 0;
	padding-left: 30px;
}

.contentarea ul li:before,
.html ul li:before,
.blog_content_desc ul li:before {
	position: absolute;
	top: 0;
	left: 0;
	color: #7CC601;
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 16px;
	content: "\f00c";
	margin: 0;
}

.box {
	background: #FFF;
	padding: 30px;
}

.sidebar {
	background: #FFF;
	padding: 30px;
}

.sidebar h2 {
	font-size: 30px;
	line-height: 30px;
	margin: 0 0 30px 0;
}

.sidebar ul {
	list-style-type: none;
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

.sidebar ul li {
	position: relative;
	display: block;
	margin: 0 0 10px 0;
	padding-left: 30px;
}

.sidebar ul li:last-child {
	margin: 0;
}

.sidebar ul li:before {
	position: absolute;
	top: 0;
	left: 0;
	color: #7CC601;
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 16px;
	content: "\f30b";
	margin: 0;
}

.sidebar ul li a {
	position: relative;
	display: block;
	background-color: transparent;
	padding: 0 5px;
}

.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li a:active {
	text-decoration: none;
}

.sidebar ul li a:before {
	content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 5px;
    transition: all 0.4s ease;
	background: rgb(235,231,17);
	background: -moz-linear-gradient(90deg, rgba(235,231,17,1) 0%, rgba(95,187,70,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(235,231,17,1) 0%, rgba(95,187,70,1) 100%);
	background: linear-gradient(90deg, rgba(235,231,17,1) 0%, rgba(95,187,70,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebe711",endColorstr="#5fbb46",GradientType=1);
}

.sidebar ul li a:hover:before,
.sidebar ul li a:focus:before,
.sidebar ul li a:active:before {
    width: 100%;
}

.contentarea table {
	border-collapse: collapse;
	width: 100%;
	background: #FFF;
}

.contentarea th {
	color: #000;
	border-bottom: 2px solid #dee2e6;
}

.contentarea th, td {
	text-align: left;
	padding: 10px;
}

.contentarea tr:nth-child(even) {
	background-color: #F2F2F2;
}

ul.animatedlist {
	list-style-type: none;
	padding-left: 0;
	margin: 0 0 15px 0;
}

ul.animatedlist li {
	margin: 0 0 15px 0;
	font-size: 16px;
	line-height: 16px;
}

ul.animatedlist li i {
	min-width: 16px;
}

ul.animatedlist li h3 {
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
}

ul.animatedlist li a {
	position: relative;
	display: inline-block;
	color: var(--theme_yellow);
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
}

ul.animatedlist li a:hover,
ul.animatedlist li a:focus,
ul.animatedlist li a:active {
	color: var(--theme_yellow);
	text-decoration: none;
}

ul.animatedlist li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: var(--theme_yellow);
    transition: all 0.4s ease;
}

ul.animatedlist li a:hover:before,
ul.animatedlist li a:focus:before,
ul.animatedlist li a:active:before {
    width: 100%;
}

ul.animatedlist li i {
	margin: 0 5px 0 0;
}

.treelist {
	margin: 15px 0 0 0;
}

.treelist ul {
	position: relative;
	display: block;
	z-index: 0;
	list-style: none;
	padding: 0;
	margin-left: 15px; 
}

.treelist ul:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	border-left: 1px solid #000;
}

.treelist ul li:before {
	content: "";
	display: block;
	position: absolute;
	top: 25px;
	left: 0;
	width: 20px;
	height: 0;
	border-top: 1px solid #000;    
}

.treelist ul li:last-child:before {
	top: 22px; 
	bottom: 0;
	height: auto;
	background: #F5F5F5; 
}

.treelist ul li {
	position: relative;
	margin: 0;
	color: #000;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 36px; 
	padding: 5px 20px;
}

.treelist ul li span {
	display: inline-block;
	background: #FFF;
	color: #000;
	font-weight: 500;
	padding: 5px 15px;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
       -moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
        -ms-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
         -o-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
            box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
}

.treelist ul li span.yellow {
	background: #fff100;
	color: #000;
}

.treelist ul li span.blue {
	background: #25368d;
	color: #FFF;
}

.treelist ul li ul {
	position: relative;
	padding: 0;
	list-style: none;
  	margin-left: 15px;  
}

.treelist ul li ul li {
	padding: 5px 20px;
}

.treelist ul li ul:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	border-left: 1px solid #000;
}

.treelist ul ul li:before {
	content: "";
	display: block;
	position: absolute;
	top: 25px;
	left: 0;
	width: 20px;
	height: 0;
	border-top: 1px solid #000;    
}

.treelist ul ul li:last-child:before {
	top: 22px; 
	bottom: 0;
	height: auto;
	background: #F5F5F5; 
}

/* [FOOTER] */
#footer {
	padding: 0;
  	color: var(--white);
  	background: var(--theme_green);  
}

#footer a {
	color: var(--white);
}

#footer .top {
	position: relative;
	padding: 60px 0;
	background: var(--theme_green);
}

#footer .top .title {
	display: block;
	font-family: var(--font);
	font-size: 25px;
	line-height: 25px;
	font-weight: 400;
	color: var(--white);
	margin: 0 0 30px 0;
}

#footer .top ul.footlist {
	list-style-type: none;
	padding-left: 0;
	margin: 0 0 30px 0;
}

#footer .top ul.footlist li {
	margin: 0 0 15px 0;
	font-size: 16px;
	line-height: 16px;
}

#footer .top ul.footlist li i {
	margin: 0 5px 0 0;
	min-width: 16px;
}

#footer .top ul.footlist li a {
	position: relative;
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
}

#footer .top ul.footlist li a:hover,
#footer .top ul.footlist li a:focus,
#footer .top ul.footlist li a:active {
	color: var(--white);
	text-decoration: none;
}

#footer .top ul.footlist li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: all 0.4s ease;
}

#footer .top ul.footlist li a:hover:before,
#footer .top ul.footlist li a:focus:before,
#footer .top ul.footlist li a:active:before {
    width: 100%;
}

#footer .top ul.footlist.normal li a {
	font-weight: 400;
}

#footer .top ul.socials {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

#footer .top ul.socials li {
	display: inline-block;
	margin: 0 10px 0 0;
}

#footer .top ul.socials li:last-child {
	margin: 0;
}

#footer .top ul.socials li a {
	display: inline-block;
	font-size: 25px;
	color: #FFF;
	padding: 10px;
	text-align: center;
	min-width: 46px;
	margin: 0 0 15px 0;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
       -moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
        -ms-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
         -o-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
            box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
}

#footer .top ul.socials li a:hover,
#footer .top ul.socials li a:focus,
#footer .top ul.socials li a:active {
	color: #000;
}

#footer .top ul.socials li.linkedin a {
	color: #FFF;
	background: #0a66c2;
}

#footer .top ul.socials li.linkedin a:hover,
#footer .top ul.socials li.linkedin a:focus,
#footer .top ul.socials li.linkedin a:active {
	color: #0a66c2;
	background: #FFF;
}

#footer .top ul.socials li.facebook a {
	color: #FFF;
	background: #1877f2;
}

#footer .top ul.socials li.facebook a:hover,
#footer .top ul.socials li.facebook a:focus,
#footer .top ul.socials li.facebook a:active {
	color: #1877f2;
	background: #FFF;
}

#footer .top ul.socials li.instagram a {
	color: #FFF;
	background: #c32aa3;
}

#footer .top ul.socials li.instagram a:hover,
#footer .top ul.socials li.instagram a:focus,
#footer .top ul.socials li.instagram a:active {
	color: #c32aa3;
	background: #FFF;
}

#footer .top ul.socials li.twitter a {
	color: #FFF;
	background: #1da1f2;
}

#footer .top ul.socials li.twitter a:hover,
#footer .top ul.socials li.twitter a:focus,
#footer .top ul.socials li.twitter a:active {
	color: #1da1f2;
	background: #FFF;
}

#footer .top ul.socials li.youtube_v2 a {
	color: #FFF;
	background: #ff0000;
}

#footer .top ul.socials li.youtube_v2 a:hover,
#footer .top ul.socials li.youtube_v2 a:focus,
#footer .top ul.socials li.youtube_v2 a:active {
	color: #ff0000;
	background: #FFF;
}

#footer .bottom {
	background: var(--theme_orange);
	padding: 15px 0;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: var(--white);
}

#footer .bottom ul.footlist {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

#footer .bottom ul.footlist li {
	display: inline;
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
	color: var(--white);
	margin: 0 15px 0 0;
}

#footer .bottom ul.footlist li:last-child {
	margin: 0;
}

#footer .bottom ul.footlist li:after {
	display: inline;
	content: "|";
	margin: 0 0 0 15px;
}

#footer .bottom ul.footlist li:last-child:after {
	content: "";
}

#footer .bottom ul.footlist li a {
	position: relative;
	display: inline-block;
	color: var(--white);
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
}

#footer .bottom ul.footlist li a:hover,
#footer .bottom ul.footlist li a:focus,
#footer .bottom ul.footlist li a:active {
	color: var(--white);
	text-decoration: none;
}

#footer .bottom ul.footlist li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: all 0.4s ease;
}

#footer .bottom ul.footlist li a:hover:before,
#footer .bottom ul.footlist li a:focus:before,
#footer .bottom ul.footlist li a:active:before {
    width: 100%;
}

/* [DOWNLOAD] */
.file {
	margin: 0 0 5px 0;
}

.file a {
	position: relative;
	color: var(--black);
	margin: 0 0 5px 0;
}

.file a:hover,
.file a:focus,
.file a:active {
	color: var(--theme_orange);
	text-decoration: none;
}

.file a.downloadfile i {
	margin: 0 10px 0 0;
}

/* [BLOG] */
.blog_wrap {
	position: relative;
	background: var(--white);
	margin: 0 0 30px 0;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
       -moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
        -ms-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
         -o-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
            box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
}

.blog_wrap .img {
	position: relative;
}

.blog_wrap .img,
.blog_wrap .img a {
	min-height: 225px;
	max-height: 225px;
}

.related .blog_wrap .img,
.related .blog_wrap .img a {
	min-height: 225px;
	max-height: 225px;
}

.related_product .blog_wrap .img,
.related_product .blog_wrap .img a {
	min-height: 225px;
	max-height: 225px;
}

.blog_wrap .img a:last-child {
	position: relative;
	display: block;
	z-index: 1;
}

.blog_wrap .img a:last-child:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	z-index: 2;
	top: 0;
	left: 0;
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.blog_wrap .img a:last-child:hover:before,
.blog_wrap .img a:last-child:focus:before,
.blog_wrap .img a:last-child:active:before {
	background: rgb(33,53,31);
	background: -moz-linear-gradient(280deg, rgba(33,53,31,0.6) 0%, rgba(65,105,61,0.6) 100%);
	background: -webkit-linear-gradient(280deg, rgba(33,53,31,0.6) 0%, rgba(65,105,61,0.6) 100%);
	background: linear-gradient(280deg, rgba(33,53,31,0.6) 0%, rgba(65,105,61,0.6) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#21351f",endColorstr="#41693d",GradientType=1);
}

.blog_wrap .blog_content {
	background: var(--white);
	padding: 10px;
}

.blog_wrap .blog_title {
	margin: 0 0 15px 0;
}

.blog_wrap a.blog_link {
	display: block;
}

.blog_wrap a.blog_link:hover {
	text-decoration: none;
}

.blog_wrap h3.title {
	position: relative;
	display: block;
	z-index: 2;
	color: #000;
	font-size: 25px;
    line-height: 25px;
    font-weight: 700;
	padding: 0;
}

.blog_wrap a:hover h3.title,
.blog_wrap a:focus h3.title,
.blog_wrap a:active h3.title {
	color: var(--theme_orange) !important;
}

.blog_wrap .noindex {
	z-index: 0;
}

.blog_wrap .blog_intro {
	font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    color: var(--black);
}

.blog_wrap .html {
	text-align: left;
}

.blog_wrap a.verder {
	position: relative;
	display: block;
    background: var(--theme_orange);
    border: 1px solid var(--theme_orange);
    padding: 15px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--white);
    border-radius: 0;
    outline: none;
    text-align: center;
    margin: 15px 0 0 0;
}

.blog_wrap a.verder i {
	margin: 0 0 0 5px;
}

.blog_wrap a.verder:hover,
.blog_wrap a.verder:focus,
.blog_wrap a.verder:active {
	color: var(--theme_orange);
	background: var(--white);
	text-decoration: none;
}

.blog_wrap ul.adminlist {
	list-style-type: none;
	padding-left: 0;
	background: #E5E5E5;
	padding: 5px 10px;
	margin: 0 0 15px 0;
}

.blog_wrap ul.adminlist li {
	display: inline;
	margin: 0 5px 0 0;
}

.blog_wrap ul.adminlist li a {
	display: inline;
}

/* [PAGER] */
.pager li > a, 
.pager li > span {
	display: inline-block;
	color: #FFF; 
	background-color: #404040; 
	border: 1px solid #404040; 
	border-radius: 0;
	padding: 15px 20px;
}

.pager li > a:focus, 
.pager li > a:hover {
	color: #404040; 
	background-color: #FFF; 
	border: 1px solid #404040; 
	text-decoration: none;
}

/* [GOOGLEMAP] */
.gm-style-iw {
	padding: 10px;
	line-height: 22px;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #000;
}

.gm-style-iw h5 {
	font-family: var(--font);
	color: #000;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	padding-bottom: 5px;
}

.gm-style-iw a {
	color: #8064A2;
	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: underline;
	color: #8064A2;
}

/* [FORM] */
.form .form-group label,
.form label {
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	text-align: left;
}

.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(--black);
	padding: 15px;
	outline: none !important;
	border-radius: 0;
}

.form .form-group input:hover,
.form .form-group input:focus {
	background: rgba(0,0,0,0.02);
	border: 1px solid var(--theme_orange);
	-webkit-box-shadow: unset;
            box-shadow: unset;
}

.form .form-group textarea {
	display: block;
	width: 100%;
	padding: 15px;
	font-size: 16px;
	color: var(--black);
	border: 1px solid rgba(0,0,0,0.5);
	background: rgba(0,0,0,0);
	outline: none !important;
	border-radius: 0;
}

.form .form-group textarea:hover,
.form .form-group textarea:focus {
	background: rgba(0,0,0,0.02);
	border: 1px solid var(--theme_orange);
	-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(--black);
	padding: 0 5px;
	outline: none !important;
	border-radius: 0;
}

.modal-body .form .form-group input,
.modal-body .form .form-group textarea {
	border: 1px solid rgba(0,0,0,0.5);
	background: rgba(0,0,0,0);
	color: var(--black);
}

.form input[type=submit] {
	display: block;
	width: 100%;
	border: 1px solid var(--theme_orange);
	background: var(--theme_orange);
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	padding: 15px 20px;
	outline: none !important;
	border-radius: 0;
	-webkit-transition: all .2s;
	   -moz-transition: all .2s;
	    -ms-transition: all .2s;
	     -o-transition: all .2s;
	        transition: all .2s;
}

.form input[type=submit]:hover,
.form input[type=submit]:focus,
.form input[type=submit]:active {
	background: var(--white);
	color: var(--theme_orange);
}

.modal-body .form .form-group input[type=submit]:hover,
.modal-body .form .form-group input[type=submit]:focus,
.modal-body .form .form-group input[type=submit]:active {
	color: var(--theme_orange);
	background: var(--white);
}

.form .form-group input[type=radio],
.form .form-group input[type=checkbox] {
	display: inline-block;
	width: 5%;
	text-align: left;
}

/* [CAROUSEL] */
.fadehead {
	overflow: hidden;
}

.fadehead,
.fadehead .carousel,
.fadehead .carousel .carousel-inner,
.fadehead .carousel .carousel-inner .item,
.fadehead .carousel .carousel-inner .item .fadeheaderimg {
	width: 100%;
	height: 250px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.fadehead,
.sub_fadehead {
	position: relative;
	display: block;
	background: #F2F2F2;
}

.sub_fadehead,
.sub_fadehead .carousel,
.sub_fadehead .carousel .carousel-inner,
.sub_fadehead .carousel .carousel-inner .item,
.sub_fadehead .carousel .carousel-inner .item .fadeheaderimg {
	width: 100%;
	height: 250px;
	-webkit-transition: all .4s;
	   -moz-transition: all .4s;
	    -ms-transition: all .4s;
	     -o-transition: all .4s;
	        transition: all .4s;
}

.fadehead .carousel .carousel-inner .item .carouselwrap {
	position: absolute;
	display: block;
	z-index: 2;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
}

.sub_fadehead .carousel .carousel-inner .item .carouselwrap {
	position: absolute;
	display: block;
	z-index: 2;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
}

.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 {
	display: none;
	-webkit-transition: all 300ms ease-out;
	   -moz-transition: all 300ms ease-out;
	    -ms-transition: all 300ms ease-out;
	     -o-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;
}

.carousel #halfrondje {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 250px;
	background: rgb(33,53,31);
	background: -moz-linear-gradient(280deg, rgba(33,53,31,0.9) 0%, rgba(65,105,61,0.9) 100%);
	background: -webkit-linear-gradient(280deg, rgba(33,53,31,0.9) 0%, rgba(65,105,61,0.9) 100%);
	background: linear-gradient(280deg, rgba(33,53,31,0.9) 0%, rgba(65,105,61,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#21351f",endColorstr="#41693d",GradientType=1);
}

.carousel-caption {
	position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    text-align: left;
    padding: 60px 0 0 0;
}

.carousel-caption .tophead {
    font-size: 40px;
    line-height: 45px;
    font-weight: 400;
	color: var(--white);
	text-align: center;
}

.carousel-caption .tophead strong {
	font-size: 50px;
	font-weight: 700;
}

.carousel-caption .bottomhead {
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	color: var(--white);
	margin: 30px 0;
	text-align: center;
}

.carousel-caption .bottomhead ul {
	list-style: none;
	display: flex;
    justify-content: space-around;
    align-items: center;
	width: 100%;
	padding: 0;
	margin: 0;
}

.carousel-caption .bottomhead ul li {
	position: relative;
	display: block;
	margin: 0 0 5px 0;
	padding-left: 30px;
	font-size: 16px;
	line-height: 16px;
	text-align: left;
}

.carousel-caption .bottomhead ul li:before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--white);
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	font-size: 16px;
	content: "\f00c";
	margin: 0;
}

.carousel-caption a.btn-default {
	display: inline-block;
	background: var(--theme_yellow);
	border: 1px solid var(--theme_yellow);
	padding: 15px 30px !important;
	font-size: 16px !important;
	line-height: 16px;
	font-weight: 700;
	color: var(--black);
	border-radius: 30px !important;
	outline: none;
	text-shadow: none;
}

.carousel-caption a.btn-default:hover,
.carousel-caption a.btn-default:focus,
.carousel-caption a.btn-default:active {
	background: var(--theme_yellow);
	border: 1px solid var(--theme_yellow);
	color: var(--white) !important;
	text-decoration: none;
}

.carousel-caption a.btn-default i {
	margin: 0 0 0 10px;
}

.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 {
    top: 30px;
    z-index: 999999 !important;
}

.modal-content {
    border-radius: 0px;
}

.modal-header {
	background: var(--theme_green);
	border-bottom: 0;
}

.modal-header h3.modal-title {
	font-size: 25px;
	line-height: 25px;
	font-weight: 300;
	color: var(--white);
}

.modal-header h4.modal-title {
	font-size: 25px;
	line-height: 25px;
	font-weight: 300;
	color: var(--white);
}

.modal-header .close {
    margin-top: -10px;
    outline: none;
    color: rgba(255,255,255,1);
    text-shadow: none;
}

.modal-header .close:hover,
.modal-header .close:focus,
.modal-header .close:active {
	 color: rgba(255,255,255,0.75);
}

.close {
    font-size: 40px;
    font-weight: 400;
    color: #2F2F2F;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

.modal-body {
	color: #000;
}

.admin_menu_opt {
	position: absolute;
	bottom: 0;
	right: 30px;
}

.admin_menu_opt .add_page_menu {
	display: block;
	margin: 0 0 10px 0;
}

.admin_menu_opt a {
	position: relative;
	display: inline-block;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.admin_menu_opt a:hover,
.admin_menu_opt a:focus,
.admin_menu_opt a:active {
	text-decoration: none;
}

.admin_menu_opt a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #FFF;
    transition: all 0.4s ease;
}

.admin_menu_opt a:hover:before,
.admin_menu_opt a:focus:before,
.admin_menu_opt a:active:before {
    width: 100%;
}

.admin_menu_opt .svg-inline--fa {
	display: inline-block;
	margin: 0 5px 0 0;
	color: #FFF;
}

.admin_menu_opt .edit_menu {
	display: block;
	margin: 0 0 0 0;
}

ul.persoonadmin {
	list-style-type: none;
	padding-left: 0;
	margin: 0 0 30px 0;
}

ul.persoonadmin li {
	display: inline-block;
	margin: 0 5px 0 0;
}

ul.img_admin {
	position: absolute;
	top: 5px;
	left: 5px;
	display: inline-block;
	list-style: none;
	line-height: 14px;
	padding: 5px;
	margin: 0;
	background: transparent;
}

ul.img_admin li {
	display: inline;
	margin: 0 5px 0 0;
}

ul.img_admin li:last-child {
	margin: 0;
}

ul.img_admin a.changealttag,
ul.img_admin a.setimglink,
ul.img_admin a.setfilelink,
ul.img_admin a.deleteimglink,
ul.img_admin a.editbutton, 
ul.img_admin a.editbutton:visited {
	position: relative;
	right: unset;
	top: unset;
	right: unset;
	bottom: unset;
}

ul.img_admin a:hover,
ul.img_admin a:focus,
ul.img_admin a:active {
	text-decoration: none;
}

/* [LOGIN] */
.fancybox-skin {
    position: relative;
    background: #FFF !important;
    color: #2F2F2F;
    text-shadow: none;
    -webkit-border-top-left-radius: 0px;
       -moz-border-radius-topleft: 0px;
            border-top-left-radius: 0px;
}

.fancybox-skin h2 {
	margin: 0 0 15px 0;
	color: rgb(46, 81, 131);
}

.fancybox-skin .control-label {
	font-size: 14px;
	color: rgb(46, 81, 131);
}

.fancybox-skin .form-control {
    font-size: 14px;
    color: #2F2F2F;
    background-color: #FFF !important;
    border: 1px solid #1f5081;
    border-radius: 0px;
    outline: none;
    padding: 20px !important; 
}

.fancybox-skin .form-control:hover,
.fancybox-skin .form-control:focus,
.fancybox-skin .form-control:active {
	border: 1px solid rgb(46, 81, 131) !important;
}

.fancybox-skin .form .btn {
	border-radius: 0 !important;
	outline: none !important;
	padding: 10px 15px !important;
}

.fancybox-skin .form .showAjax {
	font-size: 14px;
}

/* [RESPONSIVE] */
@media (max-width: 768px) {

	#wrap {
		overflow-x: hidden;
	}

	.fixedpos {
		position: fixed;
		display: block;
		z-index: 1;
	}

	.menu-toggle {
		position: fixed;
		display: inline-block;
		z-index: 9999;
		top: 15px;
		right: 15px;
		cursor: pointer;
		text-align: center;
		user-select: none;
		background: transparent;
		padding: 5px;
	}

	.menu-toggle:active,
	.menu-toggle:focus,
	.menu-toggle:hover {
		color: var(--theme_red);
		text-decoration: none;
	}

	.menu-toggle div:first-child {
		position: relative;
		width: 5rem;
		height: 5rem;
		z-index: 90;
		color: var(--theme_yellow);
	}

	.menu-toggle .text {
		margin-top: 0rem;
		color: var(--theme_black);
		font-size: 100%;
		font-weight: 400;
		text-transform: uppercase;
	}

	.menu-toggle i {
		position: absolute;
		display: block;
		width: 95%;
		height: 10%;
		left: 5%;
		border-radius: 1px;
		background-color: var(--theme_lightblue);
		-webkit-transition: all 200ms ease-in-out;
		        transition: all 200ms ease-in-out;
	}

	.menu-toggle i:nth-child(1) {
		top: 20%;
	}

	.menu-toggle i:nth-child(2) {
		top: 45%;
	}

	.menu-toggle i:nth-child(3) {
		top: 70%;
	}

	.menu-toggle.active i:nth-child(1) {
		top: 45%;
		left: 0%;
		-webkit-transform: rotateZ(45deg);
		        transform: rotateZ(45deg);
	}

	.menu-toggle.active i:nth-child(2) {
		width: 0px;
		left: 50%;
	}

	.menu-toggle.active i:nth-child(3) {
		top: 45%;
		left: 0%;
		-webkit-transform: rotateZ(-45deg);
		        transform: rotateZ(-45deg);
	}

	.mobilemenu.active {
		position: fixed;
		display: inline-block;
		z-index: 50;
		top: 0;
		right: 0;
		background: var(--white);
		width: 100%;
		height: 100%;
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
	}

	.mobilemenu .mobile_particulieren {
		position: fixed;
		display: block;
		z-index: 98;
		top: 120px;
		right: 15px;
		bottom: 15px;
		left: 15px;
		background: var(--white);
		padding: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: all 0.5s ease;
		   -moz-transition: all 0.5s ease;
		    -ms-transition: all 0.5s ease;
		     -o-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: 16px;
		font-weight: 400;
		padding: 8px 20px;
		color: var(--theme_black);
		border-bottom: 2px solid var(--white);
	}

	.mobilemenu ul.parentmenu li a:hover,
	.mobilemenu ul.parentmenu li a:focus,
	.mobilemenu ul.parentmenu li a:active {
		text-decoration: none;
		background: var(--white);
		color: var(--theme_red);
		border-bottom: 2px solid var(--theme_lightblue);
	}

	.mobilemenu ul.parentmenu li a.active {
		background: var(--white);
		color: var(--theme_black);
		font-weight: 500;
		border-bottom: 2px solid var(--theme_lightblue);
	}

	.mobilemenu ul.parentmenu li a.active:hover,
	.mobilemenu ul.parentmenu li a.active:focus,
	.mobilemenu ul.parentmenu li a.active:active {
		background: var(--white);
		color: var(--theme_black);
	}

	.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.advies_btn a {
		background: var(--theme_yellow);
		color: var(--white);
		margin: 30px 0 0 0;
		border-bottom: 0;
		text-align: center;
	}

	.mobilemenu ul.parentmenu li.advies_btn a 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 #eee;
	}

	.mobilemenu ul.parentmenu li .submenu a:after {
		content: "";
	}

	.quickscroll h2.title {
		font-size: 25px;
		line-height: 25px;
	}

	.quickscroll h2.title:after {
		top: 0px;
	}

	.quickscroll .img_desc {
		font-size: 16px;
		line-height: 16px;
	}

}

@media (max-width: 414px) {

	h1.title {
		font-size: 30px;
		line-height: 30px;
		margin: 0 0 15px 0;
	}

	.carousel-caption {
		padding: 30px 0;
	}

	.carousel-caption .tophead {
		font-size: 25px;
		line-height: 30px;
	}

	.carousel-caption .tophead br {
		display: none;
	}

	.carousel-caption .bottomhead {
		margin: 15px 0 0 0;
	}

	.carousel-caption .bottomhead ul {
		flex-direction: column;
	}

	.carousel-caption .bottomhead ul li {
		margin: 0 0 10px 0;
	}

	.carousel-caption .bottomhead ul li:last-child {
		margin: 0;
	}

	section.page {
		padding: 30px 0;
	}

	#footer .pull-right {
		float: unset !important;
	}

	#footer .bottom ul.footlist li {
		display: block;
	}

	#footer .bottom ul.footlist li:after {
		display: none;
	}

	#footer .bottom ul.footlist li a {
		margin: 0 0 15px 0;
	}

	.btn-custom1,
	.btn-custom2,
	.btn-custom3,
	.btn-goback {
		display: block;
		text-align: center;
	}

	.mobile_footer {
		position: fixed;
		display: block;
		z-index: 9997;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.mobile_footer ul {
		list-style-type: none;
		padding: 0;
		margin: 0;
		width: 100%;
		display:table;
	}

	.mobile_footer ul li {
		display: table-cell;
		text-align: center;
	}

	.mobile_footer ul li a {
		display: block;
		font-size: 16px;
		font-weight: 400;
		padding: 10px 15px;
		text-decoration: center;
	}

	.mobile_footer ul li a:hover,
	.mobile_footer ul li a:focus,
	.mobile_footer ul li a:active {
		text-decoration: none;
	}

	.mobile_footer ul li a i {
		margin: 0 5px 0 0;
	}

	.mobile_footer ul li.afspraak a {
		background: #EF7E00;
		color: #FFF;
		border: 2px solid #EF7E00;
	}

	.mobile_footer ul li.afspraak a:hover,
	.mobile_footer ul li.afspraak a:focus,
	.mobile_footer ul li.afspraak a:active {
		background: #FFF;
		color: #EF7E00;
	}

	.mobile_footer ul li.telefoon a {
		background: green;
		color: #FFF !important;
		border: 2px solid green;
	}

	.mobile_footer ul li.telefoon a:hover,
	.mobile_footer ul li.telefoon a:focus,
	.mobile_footer ul li.telefoon a:active {
		background: #FFF;
		color: green !important;
	}

	c-bubble#whappe-button.align-bottomright, 
	[is="c-bubble"]#whappe-button.align-bottomright {
		bottom: 64px !important;
	}
	
}