/*
Theme Name: Frituurwereld 2020
Theme URI: http://www.excellutions.nl
Author: C.P.M. Bastiaansen
Author URI: http://www.excellutions.nl/
Description: Thema ontworpen en gerealiseerd door EXCELLUTIONS | C.P.M. Bastiaansen
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Frituurwereld2020

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



/* ---- ANIMATIONS ---- */
@keyframes slideIn {
	from { 
		top: -100px; 
	}
	to { 
		top: -50px; 
	}
}
.slideIn { 
	animation-name: slideIn; 
}

@keyframes slideOut {
	from { 
		bottom: 0; 
	}
	to { 
		bottom: 50px; 
	}
}
.slideOut { 
	animation-name: slideOut; 
	animation-delay: 10s;
}


/* ---- CHANGE CONTAINER WIDTH BASED ON SCREEN WIDTH ---- */
@media (min-width: 1500px) {
	.container {
		width: 1440px!important;
	}
}


html {
	position: relative;
	margin: 0;
	padding: 0;
	height: auto;
	min-height: 100%;
	width: 100%;
	-ms-overflow-style: -ms-autohiding-scrollbar;

}

body {
	position: relative;
	display: inherit;
	font-family: 'Open Sans';
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	color: #555555;
  	height: 100%;
	width: 100%;
}

* {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #000000;
}

h1 {
	font-size: 34px;
	line-height: 40px;
}

h2 {
	font-size: 32px;
	line-height: 36px;
	margin-bottom: 28px;
}

h3 {
	font-size: 22px;
	margin-bottom: 0;
}

p {
	margin-bottom: 24px;
}

a {
	color: #F7941D;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

a:hover, 
a:focus {
	color: #F7941D;
	text-decoration: none;
	border-bottom: 1px solid  #f7941d;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

a:focus {
	outline: 0 none;
}

a:hover:before,
a:hover:after {
	text-decoration: none!important;
}

a#protocollen {
	position: relative;
	top: -100px;
}

blockquote {
	width: 90%;
	border-left: 5px solid #F7941D!important;
	background-color: #f1f1f1;
	margin: 0 auto;
	padding: 15px 30px!important
}

blockquote p {
	font-size: 24px!important;
	line-height: 32px!important;
	color: #000000!important;
	font-weight: 500!important;
	font-style: italic!important;
}

.wp-block-pullquote cite {
	font-size: 16px;
	font-style: italic;
	color: #3f3f3f;
}


img {
	min-width: 100%;
	max-width: 100%;
	height: auto;
	/* margin-bottom: 24px; */
}

img.image-margin-top {
	margin-top: 10px;
}

img.alignright {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}

figure.alignleft img {
	margin-bottom: 0;
}

figure.alignright img {
	margin-bottom: 0;
}

img.alignleft {
	float: left;
	margin-bottom: 10px;
	margin-right: 10px;
}

.wp-block-image figcaption {
	position: relative;
	/* top: -20px; */
	color: #999999;
	font-size: 14px;
	font-style: italic;
	margin-bottom: 24px;
}



/* ---- VIDEO FULL WIDTH ---- */
.wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}



/* ---- TOP-HEADER ---- */
#top-header-wrapper {
	font-size: 15px;
	height: 30px;
	line-height: 30px;
	/* border-bottom: 1px solid #d2d5d7; */
}


#top-header-wrapper .top-header-loginout-container {
	text-align: right;
}



/* ---- HEADER ---- */
#header-wrapper {
	position: fixed; /* relative; */
	width: 100%;
	height: 150px;
	background: linear-gradient(to bottom, #ffffff 50%, transparent 50%);
	z-index: 8500;
}

#header-wrapper .header-wrapper-background-container {
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	left: 0;
	height: 150px;
	width: 100%;
}

#header-wrapper .header-wrapper-background-container .header-wrapper-background-style {
	position: relative;
	height: 50px;
	width: 100%;
	background-color: #F7941D;
	vertical-align: middle;
	z-index: 10;
}


#header-wrapper .header-container {
	position: relative;
	height: 150px;
	width: 100%;
	z-index: 100000;
}







/* ---- HEADER --> LOGO ---- */
#header-wrapper .header-logo-container {
	position: relative;
	height: auto;
	
}

#header-wrapper .header-logo-container a {
	position: relative;
	display: inline-block;
	height: 150px;
	z-index: 1000;
}

#header-wrapper .header-logo-container a .header-background-logo {
	background-image: url('images/logos/Frituurwereld/Logo Frituurwereld.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#header-wrapper .header-logo-container a img.header-logo {
	position: relative;
	display: inline-block;
	height: 150px;
	width: auto;
	object-fit: cover;
	/* border-right: 3px solid #ffffff;
	border-left: 3px solid #ffffff; */
}

#header-wrapper .header-logo-container a:before {
	position: absolute;
	content: '';
	top: 0;
	left: -3px;
	width: 3px;
	height: 150px;
	background-color: #ffffff;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#header-wrapper .header-logo-container a:hover:before {
	background-color: #da7802;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#header-wrapper .header-logo-container a:after {
	position: absolute;
	content: '';
	top: 0;
	right: -3px;
	width: 3px;
	height: 150px;
	background-color: #ffffff;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#header-wrapper .header-logo-container a:hover:after {
	background-color: #da7802;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

/*
#header-wrapper .header-logo-container a.header-logo {
	height: 150px;
	background-image: url('images/logos/Frituurwereld/Logo Frituurwereld.jpg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	border-right: 2px solid #ffffff;
}
*/



/* ---- HEADER --> TOP-HEADER-INSET ---- */
#top-header-inset-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	line-height: 50px;
	width: 100%;
	text-align: right;
	background-color: #ffffff;
	z-index: 500;
}

#top-header-inset-wrapper ul {
	position: relative;
	float: right;
	width: calc( 100% - 200px );
}

#top-header-inset-wrapper ul li {
	display: inline-block;
}

#top-header-inset-wrapper ul li:last-child {
	padding-right: 0;
}

#top-header-inset-wrapper ul li:after {
	content: '|';
	padding: 10px;
}

#top-header-inset-wrapper ul li:last-child:after {
	display: none;
}

#top-header-inset-wrapper ul li a {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666666;
}

#top-header-inset-wrapper ul li.blue a,
#header-main-menu-wrapper-mobile .navbar-collapse ul li.sub-item.blue a {
	background-color: #0063B2FF;
	color: #ffffff;
	font-weight: bold;
	padding: 3px 10px;
}

#top-header-inset-wrapper ul li a:hover,
#top-header-inset-wrapper ul li a:focus {
	color: #F7941D;
	text-decoration: none;
}

#top-header-inset-wrapper ul li.blue:hover a,
#top-header-inset-wrapper ul li.blue:focus a {
	color: #ffffff;
	background-color: #F7941D;
	border-color: #F7941D;
}

#top-header-inset-wrapper ul li.active a,
#top-header-inset-wrapper ul li.current_page_item a {
	font-weight: normal;
	color: #F7941D;
	text-decoration: none;
}


/* ---- HEADER --> MAIN MENU ---- */
#header-wrapper #header-main-menu-wrapper-desktop {
	position: absolute;
	display: flex;
	align-items: center;
	left: 0;
	top: 0;
	height: 150px;
	width: 100%;
	
}

#header-wrapper #header-main-menu-wrapper-desktop ul {
	position: relative;
	display: table-cell;
	height: 50px;
	width: 100%;
	margin-bottom: 0;
	vertical-align: middle;
	padding-left: 200px; /* 250px; */
	background-color: #F7941D;
	z-index: 2;
}

#header-wrapper #header-main-menu-wrapper-desktop ul li {
	display: inline-block;
	line-height: 50px;
	list-style: none;
	/* margin-right: 30px; */
}

#header-wrapper #header-main-menu-wrapper-desktop ul li a {
	position: relative;
	display: inline-block;
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 18px; /*20px; /* 20px */
	line-height: 50px;
	color: #ffffff;
	letter-spacing: 1px;
	padding: 0 13px; /* 0 15px; */
	z-index: 100;
	transform: all .2s ease-in-out;
	-webkit-transform: all .2s ease-in-out;
	-moz-transform: all .2s ease-in-out;
	-ms-transform: all .2s ease-in-out;
	-o-transform: all .2s ease-in-out;
}

#header-wrapper #header-main-menu-wrapper-desktop ul li a:hover,
#header-wrapper #header-main-menu-wrapper-desktop ul li a:focus {
	text-decoration: none;
	border: 0 none;
	transform: all .2s ease-in-out;
	-webkit-transform: all .2s ease-in-out;
	-moz-transform: all .2s ease-in-out;
	-ms-transform: all .2s ease-in-out;
	-o-transform: all .2s ease-in-out;
}

#header-wrapper #header-main-menu-wrapper-desktop ul li a:before {
	position: absolute;
	content: '';
	top: -1px;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: transparent;
	transform: skew( -19deg );
	z-index: -1;
	transform: all .2s ease-in-out;
	-webkit-transform: all .2s ease-in-out;
	-moz-transform: all .2s ease-in-out;
	-ms-transform: all .2s ease-in-out;
	-o-transform: all .2s ease-in-out;
}


#header-wrapper #header-main-menu-wrapper-desktop ul li a:hover:before,
#header-wrapper #header-main-menu-wrapper-desktop ul li a:focus:before {
	text-decoration: none;
	border-bottom: 0 none;
	background-color: #da7802;
	z-index: -1;
	transform: all .2s ease-in-out;
	-webkit-transform: all .2s ease-in-out;
	-moz-transform: all .2s ease-in-out;
	-ms-transform: all .2s ease-in-out;
	-o-transform: all .2s ease-in-out;
}

#header-wrapper #header-main-menu-wrapper-desktop ul li.active a:before {
	background-color: #da7802;
}

#header-wrapper #header-main-menu-wrapper-desktop ul li.menu-search-icon a {
	position: relative;
	top: -7px;
	height: 50px;
	width: 50px;
	font-size: 0;
	text-align: center;
	padding: 0;
}

#header-wrapper #header-main-menu-wrapper-desktop ul li.menu-search-icon a:before {
	display: inline-block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	transform: inherit;
	font-family: 'Fontawesome';
	font-size: 20px; /* 22px; */
	content: '\f002';
}

#header-wrapper #header-main-menu-wrapper-desktop ul li.menu-search-icon a:hover:before,
#header-wrapper #header-main-menu-wrapper-desktop ul li.menu-search-icon a:focus:before {
	color: #f1f1f1;
	background-color: inherit;
}



/* ---- HEADER-WRAPPER --> ZOEKEN ---- */
#header-wrapper-search-bar-wrapper {
	position: absolute;
	display: flex!important;
	flex-direction: column;
	justify-content: center;
	bottom: 50px;
	background-color: #f7f7f7;
	padding-left: 265px;
	z-index: 1;
	border-bottom: 1px solid #f7941d;
	border-right: 1px solid #F7941D;
	border-top: 1px solid #ffffff;
	border-radius: 0 0 7px 0;
	-webkit-border-radius: 0 0 7px 0;
	-moz-border-radius: 0 0 7px 0;
	-ms-border-radius: 0 0 7px 0;
	-o-border-radius: 0 0 7px 0;
}

#header-wrapper-search-bar-wrapper.hide {
	left: 0;
	height: 50px;
	width: 100%;
}

#header-wrapper-search-bar-wrapper.show {
	left: 0;
	height: 50px;
	width: 100%;
}

#header-wrapper-search-bar-wrapper input[type="text"] {
	font-size: 14px;
	width: 300px;
	border: 1px solid #F7941D;
	padding: 0 5px;
}

#header-wrapper-search-bar-wrapper input[type="submit"] {
	position: relative;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #F7941D;
	border: 0 none;
	padding: 2px 15px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#header-wrapper-search-bar-wrapper input[type="submit"]:hover,
#header-wrapper-search-bar-wrapper input[type="submit"]:focus {
	position: relative;
	top: -2px;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #da7802;
	border: 0 none;
	padding: 2px 15px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}




/* ---- NEW SEARCH BOX 2021 ---- */
#header-wrapper-search-screen-wrapper {
	position: fixed;
	display: flex!important;
	flex-direction: column;
	justify-content: top;
	align-items: center;
	top: 50px;
	height: 0;
	min-height: 0;
	min-width: 100%;
	background: rgba( 0, 0, 0, 0.8); /* #f7f7f7; */
	z-index: -10;
	opacity: 0;
	transition: all .3s ease-in-out;
}

#header-wrapper-search-screen-wrapper.show {
	z-index: 5;
	opacity: 1;
	transition: all .3s ease-in-out;
	height: 100vh;
}

#header-wrapper-search-screen-wrapper.show .desktop-header-searchbar-container {
	width: 100%;
	height: 300px;
	padding: 150px 0;
	background-color: #ffffff;
	text-align: center;
	border-bottom: 3px solid #F7941D;;
}

#header-wrapper-search-screen-wrapper input[type="text"] {
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	width: 400px;
	border: 1px solid #F7941D;
	padding: 0 5px;
}

#header-wrapper-search-screen-wrapper input[type="submit"] {
	position: relative;
	top: -3px;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #F7941D;
	border: 0 none;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#header-wrapper-search-screen-wrapper input[type="submit"]:hover,
#header-wrapper-search-screen-wrapper input[type="submit"]:focus {
	position: relative;
	top: -2px;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #da7802;
	border: 0 none;
	padding: 2px 15px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}







/* ---- START SITE ---- */
#site-wrapper {
	padding-top: 160px; /* 180px; /* 30px; */
	padding-bottom: 70px;
}

#site-wrapper hr {
	display: block;
	clear: both;
}




/* ---- ALGEMENE OPMAAK ---- */
.average-reading-time-container {
	position: relative;
	display: inline-block;
	font-size: 12px; /* 14px; */
	font-style: italic;
	color: #999999;
	height: 50px;
	line-height: 50px;
}


/* ---- ALGEMENE OPMAAK --> EXCLUSIEVE ITEMS ---- */
.fp-main-item,
.category-main-item,
.category-videos-main-item {
	position: relative;
}

.fp-main-item .fp-single-item-exclusive-container,
.category-main-item .category-single-item-exclusive-container,
.category-videos-main-item .category-single-item-exclusive-container {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 2px 20px;
	background-color: #ffa627;
	color: #000000;
}

.fp-sub-item .fp-single-item-exclusive-container,
.category-sub-item .category-single-item-exclusive-container,
.category-videos-sub-item .category-single-item-exclusive-container,
#single-page-wrapper .single-page-exclusive-container {
	display: inline-block;
	font-size: 10px;
	line-height: 20px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0 15px;
	margin-right: 10px;
	background-color: #ffa627;
	color: #000000;
}



/* ---- FRONTPAGE ---- */


/* ---- FRONTPAGE --> ADVERTENTIES ---- */

/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> SINGLE ---- */
#banner-ads-wrapper {
	/* 
	text-align: center;
	margin: 20px 0 40px 0; 
	*/
	min-width: 728px;
	max-width: 728px;
	margin: 30px auto;
	padding: 15px 0;
	text-align: center;
	border-top: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
}

#banner-ads-wrapper a:hover,
#banner-ads-wrapper a:focus {
	border: 0 none;
}

#banner-ads-wrapper .banner-ads-title-container,
.banner-ads-title-container {
	position: relative;
	color: #999999;
	font-size: 12px;
	text-align: center;
	width: 100%;
	max-width: 728px;
	border-bottom: 1px solid #cacaca;
	margin: 0 auto 15px auto;
}

#banner-ads-wrapper img.banner-single-ad {
	min-width: 728px;
	max-width: 728px;
	height: auto;
	margin-bottom: 0;
}

#banner-ads-wrapper .ads-banner-separator {
	position: relative;
	top: -2px;
	display: inline-block;
	height: 1px;
	width: 100%;
	max-width: 728px;
	border-bottom: 1px solid #cacaca;
	margin: 0 auto;
}


/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> SINGLE --> PREMIUM ---- */
#premium-banner-ads-wrapper {
	min-width: 728px;
	max-width: 728px;
	margin: 30px auto;
	padding: 15px 0;
	text-align: center;
	border-top: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
}

#premium-banner-ads-wrapper img {
	min-width: inherit;
	max-width: 728px;
	margin: 0 auto;
}



/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> CAROUSEL ---- */
#banner-ads-wrapper #slider,
#banner-ads-wrapper #carousel-bounding-box,
#banner-ads-wrapper #myCarousel,
#banner-ads-wrapper .carousel-inner {
	position: relative;
	width: 728px;
	height: 188px;
	margin: 0 auto;
}

#banner-ads-wrapper #carousel-bounding-box,
#banner-ads-wrapper #myCarousel,
#banner-ads-wrapper .carousel-inner {
	position: absolute;
	top: 0;
	left: 0;
}

#banner-ads-wrapper .carousel-inner .carousel-item {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	top: 0;
	left: 0;
	height: 100%; /* 700px; */
	width: 100%; /* 1280px; */
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	opacity: 0;
}

#banner-ads-wrapper .carousel-inner .carousel-item img.header-slideshow-single-image {
	height: auto;
	width: 728px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}		


/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> CAROUSEL - FADING ---- */
#banner-ads-wrapper .carousel-fade .carousel-inner .carousel-item {
	opacity: 0;
	transition: opacity .5s ease-in-out;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
}

#banner-ads-wrapper .carousel-fade .carousel-inner .active {
	opacity: 1;
}

#banner-ads-wrapper .carousel-inner .carousel-item a {
	position: relative;
	z-index: -10;
}

#banner-ads-wrapper .carousel-inner .carousel-item.active a {
	position: relative;
	z-index: 1;
}












/* ---- FRONTPAGE --> ADVERTENTIES --> SIDEBAR BANNER ---- */
#sidebar-adds-wrapper {
	text-align: center;
}

#sidebar-adds-wrapper .sidebar-adds-title-container {
	position: relative;
	width: 100%;
	max-width: 300px;
	color: #999999;
	font-size: 12px;
	border-bottom: 1px solid #cacaca;
	margin: 0 auto 15px auto;
}

#sidebar-adds-wrapper img {
	width: 100%;
	min-width: inherit;
	max-width: 300px;
	margin: 0 auto;
	margin-bottom: 30px;
}






/* ---- FRONTPAGE --> READ ALL LINK ---- */
.fp-read-all-link-container .fp-read-all-link-content a {
	color: #555555;
	display: block;
	height: 50px;
	width: 100%;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 50px;
	border: 1px solid#F7941D;
	border-radius: 7px;
	padding: 0 15px;
}

.fp-read-all-link-container .fp-read-all-link-content a:after {
	font-family: 'Fontawesome';
	content: '\f04b';
	color:#F7941D;
	margin-left: 10px;
}

.fp-read-all-link-container .fp-read-all-link-content a:hover,
.fp-read-all-link-container .fp-read-all-link-content a:focus {
	text-decoration: none;
	background-color: #F7941D;
	color: #ffffff;
}

.fp-read-all-link-container .fp-read-all-link-content a:hover:after,
.fp-read-all-link-container .fp-read-all-link-content a:focus:after {
	color: #ffffff;
}





/* ---- FRONTPAGE --> ACTUEEL ---- */
#fp-actueel-wrapper {
	/* background-color: #f1f1f1; */
	height: auto;
	min-height: 200px;
	padding: 0 0 45px 0;
	/* margin-bottom: 30px; */
}

#fp-actueel-wrapper h2.fp-actueel-title {
	border-left: 7px solid #F7941D;
	padding-left: 15px;
}

#fp-actueel-wrapper .fp-actueel-single-item-image-container {
	height: 0;
	padding-bottom: 66.66667%; /* 62.5%; */
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
}

#fp-actueel-wrapper .fp-actueel-single-item-image-container.fp-main-item {
	margin-bottom: 35px;
}

#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container {
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 66.66667%; /* 62.5%; */
	background: rgba( 0, 0, 0, 0.1);
	border-radius: 7px;
	
}

#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container #fp-actueel-single-item-title-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
}

#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container h3.fp-actueel-single-item-title {
	/* position: absolute; */
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}


#fp-actueel-wrapper .fp-actueel-single-item-publish-date-container {
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	font-style: italic;
	color: #999999;
}

#fp-actueel-wrapper .fp-actueel-single-other-item-container {
	height: auto;
	overflow: hidden;
	margin-bottom: 15px;
}

#fp-actueel-wrapper .fp-actueel-single-other-item-container .fp-actueel-single-item-date-container {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #999999;
}

#fp-actueel-wrapper .fp-actueel-single-other-item-container h4.fp-actueel-title {
	display: inline-block;
	font-size: 18px;
	margin: 7px 0 0 0;
}



/* ---- FRONTPAGE --> ACHTERGROND ---- */
#fp-background-wrapper {
	/* background-color: #f1f1f1; */
	height: auto;
	min-height: 200px;
	padding: 45px 0;
	/* margin-bottom: 30px; */
}

#fp-background-wrapper h2.fp-background-title {
	border-left: 7px solid #F7941D;
	padding-left: 15px;
}

#fp-background-wrapper .fp-background-single-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 62.5%;
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	margin-bottom: 25px;
}

#fp-background-wrapper .fp-background-single-item-image-container #fp-background-single-item-title-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 20px;
}

#fp-background-wrapper .fp-background-single-item-image-container .fp-background-single-item-title {
	/* position: absolute; */
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7)
}

#fp-background-wrapper .fp-date-published-and-exclusive-item-container {
	font-size: 14px;
	font-style: italic;
	color: #999999;
	margin: 10px 0 15px 0;
}

#fp-background-wrapper .fp-background-single-other-item-container {
	height: auto;
	overflow: hidden;
	margin-bottom: 15px;
}

#fp-background-wrapper .fp-background-single-other-item-container .fp-background-content-container.fp-sub-item {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}

#fp-background-wrapper .fp-background-single-other-item-container .fp-background-single-item-image-container {
	margin-bottom: 0;
}

#fp-background-wrapper .fp-background-single-other-item-container .fp-background-single-item-date-container {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #999999;
}

#fp-background-wrapper .fp-background-single-other-item-container h4.fp-background-title {
	display: inline-block;
	font-size: 18px;
	margin: 7px 0 0 0;
}


/* ---- FRONTPAGE --> HIGHLIGHTED ----- */
#fp-highlighted-wrapper {
	position: relative;
	background-color: #f3f0ea;
	padding: 0;
	z-index: 5;
}

#fp-highlighted-wrapper #slider,
#fp-highlighted-wrapper #carousel-bounding-box,
#fp-highlighted-wrapper #myCarousel,
#fp-highlighted-wrapper .carousel-inner {
	position: relative;
	width: 100%; /* 1280px; */
	margin: 0 auto;
}

#fp-highlighted-wrapper #carousel-bounding-box,
#fp-highlighted-wrapper #myCarousel,
#fp-highlighted-wrapper .carousel-inner {
	position: absolute;
	top: 0;
	left: 0;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%; /* 700px; */
	width: 100%; /* 1280px; */
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	opacity: 0;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item.active {
	opacity: 1;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item a {
	position: relative;
	z-index: -10;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item.active a {
	position: relative;
	z-index: 1;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper {
	padding: 25px 0; /* 50px 0; */
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper h3 {
	display: inline-block;
	font-size: 32px;
	color: #F7941D;
	margin: 0 10px 20px 0;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper h4 {
	display: block;
	font-size: 22px;
	margin: 0 0 30px 0;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper .fp-highlighted-single-item-date {
	position: relative;
	top: -20px;
	font-size: 14px;
	font-style: italic;
	color: #666666;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper .readmore-link-container {
	position: absolute;
	bottom: 50px;
}


#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper .readmore-link-container a {
	font-size: 16px; /* 5px; */
	color: #ffffff; /* #f7941d; */
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: #41a62b;
	padding: 5px 15px;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper .readmore-link-container a:after {
	font-family: 'Fontawesome';
	content: '\f105';
	margin-left: 7px;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper .readmore-link-container a:hover,
#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-content-wrapper .readmore-link-container a:focus {
	font-weight: normal; /* bold; */
	text-decoration: none;
	font-size: 16px; /* 15px */
	background-color: #F7941D;
	border: 0 none;
}

#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-image-wrapper {
	height: 0;
	padding-bottom: 66.66667%;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}		

#fp-highlighted-wrapper .carousel-indicators {
	position: relative;
	top: 90%;
	left: 0%;
	width: 41.66667%;
	margin-left: 0;
	text-align: center;
	z-index: 150000;
	color: #000000;
	z-index: 9900;
}

#fp-highlighted-wrapper .carousel-indicators li {
	border-color: #F7941D;
	background-color: #F7941D;
	transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
}

#fp-highlighted-wrapper .carousel-indicators .active {
	background-color: #41a62b!important;
	border-color: #41a62b!important;
	transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
}

/* ---- FRONTPAGE - SLIDESHOW - FADE IMAGES ---- */
#fp-highlighted-wrapper .carousel-fade .carousel-inner .carousel-item {
	opacity: 0;
	transition: opacity .5s ease-in-out;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
}

#fp-highlighted-wrapper .carousel-fade .carousel-inner .active {
	opacity: 1;
}

#fp-highlighted-wrapper .carousel-fade .carousel-inner .active.left,
#fp-highlighted-wrapper .carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}



/* ----- FRONTPAGE --> PROFRI IN HET NIEUWS ----- */
#fp-profri-in-het-nieuws-wrapper { 
	height: auto;
	min-height: 200px;
	padding: 70px 0;
	background-image: linear-gradient(0deg,#12151a 0%,#172234 100%);
}

#fp-profri-in-het-nieuws-wrapper .fp-profri-in-het-nieuws-single-item-image-container {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
}

#fp-profri-in-het-nieuws-wrapper .fp-profri-in-het-nieuws-single-item-image-container:before {
	position: relative;
	display: block;
	content: '';
	padding-top: 66.66667%;
}




/* ---- FRONTPAGE --> NIEUW! ---- */
#fp-new-wrapper {
	/* background-color: #f1f1f1; */
	height: auto;
	min-height: 200px;
	padding: 0 0 45px 0;
	/* margin-bottom: 30px; */
}

#fp-new-wrapper h2.fp-new-title {
	border-left: 7px solid #F7941D;
	padding-left: 15px;
}

#fp-new-wrapper .fp-new-single-item-image-container {
	height: 0;
	padding-bottom: 66.66667%; /* 62.5%; */
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
}

#fp-new-wrapper .fp-new-single-item-image-container.fp-main-item {
	margin-bottom: 35px;
}

#fp-new-wrapper .fp-new-single-item-image-container .fp-new-single-item-title-container {
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 66.66667%; /* 62.5%; */
	background: rgba( 0, 0, 0, 0.1);
	border-radius: 7px;	
}

#fp-new-wrapper .fp-new-single-item-image-container #fp-new-single-item-title-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 20px;
}

#fp-new-wrapper .fp-new-single-item-image-container .fp-new-single-item-title-container h3.fp-new-single-item-title {
	/* position: absolute; */
	font-size: 28px;
	line-height: 34px;
	color: #ffffff;
	/* bottom: 0; */
	/* left: 0; */
	/* padding: 15px 20px; */
	margin-top: 0;
	text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#fp-new-wrapper .fp-new-single-item-publish-date-container {
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	font-style: italic;
	color: #999999;
}

#fp-new-wrapper .fp-new-single-other-item-container {
	height: auto;
	overflow: hidden;
	margin-bottom: 30px;
}

#fp-new-wrapper .fp-new-single-item-content-container.fp-sub-item {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}

#fp-new-wrapper .fp-new-single-other-item-container .fp-new-single-item-date-container {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #999999;
}

#fp-new-wrapper .fp-new-single-other-item-container h4.fp-new-title {
	display: inline-block;
	font-size: 18px;
	margin: 7px 0 0 0;
}








/* ---- FRONTPAGE --> VIDEOS ----- */
#fp-videos-wrapper {
	color: #ffffff;
	background-color: #222222;
	padding: 50px 0;
}

#fp-videos-wrapper h2 {
	color: #ffffff;
	margin-top: 0;
}

/* MAKE DIV SCROLLING */
#fp-videos-wrapper .h-scrolling {
	position: relative;
}

#fp-videos-wrapper .h-scrolling .scrolling {
	position: relative;
	display: flex;
	overflow-x: auto;
	/* padding-left: 30px;*/
	left: 30px;
	margin-right: 30px;
	margin-bottom: 50px;
}

#fp-videos-wrapper .h-scrolling .scrolling::-webkit-scrollbar {
	display: none;
}

#fp-videos-wrapper .h-scrolling .scrolling {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

/* VIDEO CONTENT */
#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper {
	min-width: 31%;
}

	@media (min-width: 1500px) {
		#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper {
			min-width: 24%;
		}
	}

	@media (min-width: 2000px) {
		#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper {
			min-width: 19%;
		}
	}

	@media (min-width: 2500px) {
		#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper {
			min-width: 16%;
		}
	}

#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container {
	position: relative;
}

#fp-videos-wrapper a:hover,
#fp-videos-wrapper a:focus {
	text-decoration: none;
}

#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container .fp-videos-single-video-thumb-container {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 0;
}

#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container .fp-videos-single-video-title-container {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 70px;
	width: 90%;
	padding: 10px 40px 10px 10px;
	background-color: #ffffff99;
}

#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container .fp-videos-single-video-title-container .fp-videos-single-video-play-icon-container {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 35px;
	width: 35px;
	background-color: #f7941d;
}

#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container .fp-videos-single-video-title-container .fp-videos-single-video-play-icon-container:before {
	position: absolute;
	display: table-cell;
	height: 35px;
	width: 35px;
	top: 0;
	right: 0;
	font-family: 'Fontawesome';
	content: '\f04b';
	font-size: 16px;
	color: #ffffff;
	line-height: 35px;
	text-align: center;
	text-shadow: 2px 2px rgba( 0, 0, 0, 0.2);

}

#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container .fp-videos-single-video-title-container h3.fp-video-single-video-title {
	font-size: 16px;
	line-height: 22px;
	font-weight: normal;
	color: #000000;
	margin-top: 0;
}

/* VIDEO NAVIGTION */
#fp-videos-wrapper #fp-videos-scroll-to-left-icon-wrapper {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	width: 100px;
	z-index: 100;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#fp-videos-wrapper #fp-videos-scroll-to-left-icon-wrapper.visible {
	opacity: 1;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#fp-videos-wrapper #fp-videos-scroll-to-right-icon-wrapper {
	position: absolute;
	opacity: 0;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	height: 100%;
	width: 100px;
	z-index: 100;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#fp-videos-wrapper #fp-videos-scroll-to-right-icon-wrapper.visible {
	opacity: 1;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

#fp-videos-wrapper #fp-videos-scroll-to-left-icon-wrapper:before {
	display: block;
	font-family: 'Fontawesome';
	font-size: 40px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	content: '\f104';
	height: 50px;
	width: 50px;
	background-color: #00000080;
}

#fp-videos-wrapper #fp-videos-scroll-to-right-icon-wrapper:before {
	display: block;
	font-family: 'Fontawesome';
	font-size: 40px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	content: '\f105';
	height: 50px;
	width: 50px;
	background-color: #00000080;
}

/* MORE VIDEOS */
#fp-videos-wrapper .fp-videos-more-videos-container a.fp-videos-more-videos-readmore-link {
	color: #ffffff;
	text-transform: uppercase;
}

#fp-videos-wrapper .fp-videos-more-videos-container a.fp-videos-more-videos-readmore-link:after {
	font-family: 'Fontawesome';
    content: '\f04b';
    margin-left: 10px;
}

#fp-videos-wrapper .fp-videos-more-videos-container a.fp-videos-more-videos-readmore-link:hover,
#fp-videos-wrapper .fp-videos-more-videos-container a.fp-videos-more-videos-readmore-link:focus {
	color: #F7941D;
	text-decoration: none;
}



/* ---- FRONTPAGE --> TRIVIA ---- */
#fp-trivia-wrapper {
	/* background-color: #f1f1f1; */
	height: auto;
	min-height: 200px;
	padding: 45px 0;
	/* margin-bottom: 30px; */
}

#fp-trivia-wrapper h2.fp-trivia-title {
	border-left: 7px solid #F7941D;
	padding-left: 15px;
}

#fp-trivia-wrapper .fp-trivia-single-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 62.5%;
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	margin-bottom: 25px;
}

#fp-trivia-wrapper .fp-trivia-single-item-image-container #fp-trivia-single-item-title-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
}

#fp-trivia-wrapper .fp-trivia-single-item-image-container .fp-trivia-single-item-title {
	/* position: absolute; */
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#fp-trivia-wrapper .fp-date-published-and-exclusive-item-container {
	font-size: 14px;
	font-style: italic;
	color: #999999;
	margin: 10px 0 15px 0;
}

#fp-trivia-wrapper .fp-trivia-single-other-item-container {
	height: auto;
	overflow: hidden;
	margin-bottom: 15px;
}

#fp-trivia-wrapper .fp-trivia-single-other-item-container .fp-trivia-content-container.fp-sub-item {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}

#fp-trivia-wrapper .fp-trivia-single-other-item-container .fp-trivia-single-item-image-container {
	margin-bottom: 0;
}

#fp-trivia-wrapper .fp-trivia-single-other-item-container .fp-trivia-single-item-date-container {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #999999;
}

#fp-trivia-wrapper .fp-trivia-single-other-item-container h4.fp-trivia-title {
	display: inline-block;
	font-size: 18px;
	margin: 7px 0 0 0;
}






/* ---- FRONTPAGE --> AANBEVOLEN ---- */
#fp-recommended-wrapper {
	/* background-color: #f1f1f1; */
	height: auto;
	min-height: 200px;
	padding: 30px 0;
	/* margin-bottom: 30px; */
}

#fp-recommended-wrapper h2.fp-recommended-title {
	border-left: 7px solid #F7941D;
	padding-left: 15px;
}

#fp-recommended-wrapper #fp-recommended-single-item-wrapper {
	margin-bottom: 45px;
}

#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-thumb-container {
	height: 0;
	padding-bottom: 66.66667%; /* 62.5%; */
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #eaeaea;
}

#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-title-container {
	height: 52px;
}

#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-title-container h4.fp-recommended-single-item-title {
	font-size: 18px; /* 20px; */
	line-height: 22px; /* 26px; */
}


#fp-recommended-wrapper .fp-actueel-single-item-publish-date-container {
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 12px;
	font-style: italic;
	color: #999999;
}


#fp-actueel-wrapper .fp-actueel-single-other-item-container {
	height: auto;
	overflow: hidden;
	margin-bottom: 15px;
}

#fp-actueel-wrapper .fp-actueel-content-container.fp-sub-item {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}



/* ---- FRONTPAGE --> LEZERSVOORDELEN ---- */
#fp-discounts-wrapper {
	/* background-color: #f1f1f1; */
	height: auto;
	min-height: 200px;
	padding: 30px 0;
	/* margin-bottom: 30px; */
}

#fp-discounts-wrapper h2.fp-discounts-title {
	border-left: 7px solid #F7941D;
	padding-left: 15px;
}

#fp-discounts-wrapper #fp-discounts-single-item-wrapper {
	margin-bottom: 45px;
}

#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-thumb-container {
	height: 0;
	padding-bottom: 66.66667%; /* 62.5%; */
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	border: 1px solid #eaeaea;
}

#fp-discounts-wrapper #fp-discounts-single-item-wrapper .advertorial,
#fp-discounts-wrapper #fp-discounts-single-item-wrapper .benefit {
	position: relative;
	left: -15px;
	font-size: 10px;
}

#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-title-container {
	position: relative;
	left: -15px;
	height: 52px;
	width: calc( 100% + 15px );
}

#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-title-container h4.fp-discounts-single-item-title {
	font-size: 20px;
	line-height: 26px;
}



/* ---- CATEGORIES ---- */
#category-wrapper h1.category-title-content {
	font-size: 32px; /* 36px; */
	line-height: 36px;
	border-left: 7px solid #F7941D;
	padding-left: 15px;
	margin-bottom: 28px; /* 45px; */
}

#category-wrapper #category-main-item-wrapper {
	height: auto;
}

#category-wrapper #category-main-item-wrapper .category-main-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 66.66667%;
	background-color: #c4c4c4;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	margin-bottom: 30px;
}

#category-wrapper #category-main-item-wrapper .category-main-item-title-container,
#category-wrapper #category-main-item-wrapper #category-main-item-title-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
    padding: 15px 20px;
}

#category-wrapper #category-main-item-wrapper h3.category-main-item-title {
	/* position: absolute; */
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#category-wrapper .category-sub-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 66.66667%;
	background-color: #c4c4c4;
	margin-bottom: 30px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
}


#category-wrapper #category-sub-item-wrapper.category-sub-item {
	height: auto;
	overflow: hidden;
	margin-bottom: 30px;
}

#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-content-container.sub-item {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}

#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-image-container {
	margin-bottom: 0;
}

#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-date-container,
#single-page-related-items-wrapper #single-page-related-items-single-item-wrapper .category-sub-item-date-container {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #999999;
}


/* 
#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-title-container {
	position: relative;
	left: -15px;
	width: calc( 100% + 30px );
}*/

#category-wrapper #category-sub-item-wrapper.category-sub-item h4.category-sub-item-title {
	display: inline-block;
	font-size: 18px;
	margin: 0; /*  7px 0 0 0; */
}


/* ---- CATEGORIES --> ACTUEEL --> OUDERE BERICHTEN ---- */
#category-wrapper #category-news-older-posts-wrapper {
	font-size: 14px;
	line-height: 20px;
	/* padding: 30px 0; */
}

#category-wrapper #category-news-older-posts-wrapper .category-news-older-posts-single-item-container {
	position: relative;
	display: flex;
	padding: 5px 0;
}

#category-wrapper #category-news-older-posts-wrapper .category-news-older-posts-single-item-container .category-news-older-posts-single-item-date {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding-right: 7px;
}

#category-wrapper #category-news-older-posts-wrapper .category-news-older-posts-single-item-container a.category-news-older-posts-single-item-readmore-link {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: #555555;
	border-bottom: 1px solid #f7941d00;
	width: auto;
	max-width: 70%;
	padding-left: 7px;
	word-wrap: break-word;
}

#category-wrapper #category-news-older-posts-wrapper .category-news-older-posts-single-item-container a.category-news-older-posts-single-item-readmore-link:hover,
#category-wrapper #category-news-older-posts-wrapper .category-news-older-posts-single-item-container a.category-news-older-posts-single-item-readmore-link:focus {
	border-bottom: 1px solid  #f7941d;
}


/* ---- CATEGORIES --> VIDEOS ---- */
#category-videos-wrapper h1.category-videos-title-content {
	font-size: 32px; /* 36px; */
	line-height: 36px;
	border-left: 7px solid #F7941D;
	padding-left: 15px;
	margin-bottom: 28px; /* 45px; */
}

#category-videos-wrapper .category-videos-main-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

#category-videos-wrapper .category-videos-main-item-image-container:before {
	position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Fontawesome';
    content: '\f01d';
    font-size: 34px;
    color: #F7941D;
	text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#category-videos-wrapper .category-videos-main-item-intro-container {
	margin-bottom: 30px;
}

#category-videos-wrapper .category-videos-main-item-intro-container h3.category-videos-main-item-title {
	height: auto;
	min-height: 50px;
	line-height: 25px;
	margin: 0;
}

#category-videos-wrapper .category-videos-sub-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

#category-videos-wrapper .category-videos-sub-item-image-container:before {
	position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: 'Fontawesome';
    content: '\f01d';
    font-size: 22px;
    color: #F7941D;
	text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#category-videos-wrapper .category-videos-sub-item-intro-container {
	margin-bottom: 30px;
}

#category-videos-wrapper .category-videos-sub-item-intro-container h4.category-videos-sub-item-title {
	font-size: 16px;
	height: auto;
	min-height: 40px;
	line-height: 20px;
	margin: 0;
}



/* ---- CATEGORIES --> NIEUW ---- */
#category-new-wrapper h1.category-new-title-content {
	font-size: 32px; /* 36px; */
	line-height: 36px;
	border-left: 7px solid #F7941D;
	padding-left: 15px;
	margin-bottom: 28px; /* 45px; */
}

#category-new-wrapper #category-new-main-item-wrapper {
	height: auto;
}

#category-new-wrapper #category-new-main-item-wrapper .category-new-main-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 66.66667%;
	background-color: #c4c4c4;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	margin-bottom: 30px;
}

#category-new-wrapper #category-new-main-item-wrapper #category-new-main-item-title-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
}

#category-new-wrapper #category-new-main-item-wrapper h3.category-new-main-item-title {
	/* position: absolute; */
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item {
	height: auto;
	overflow: hidden;
	margin-bottom: 30px;
}

#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item .category-new-sub-item-image-container {
	position: relative;
	display: inline-block;
	width: 100%;
	padding-bottom: 66.66667%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	overflow: hidden;
}

#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item .category-new-sub-item-title-container {
	padding-bottom: 1000px;
	margin-bottom: -1000px;
	background: rgba( 0, 0, 0, 0.1);
}

#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item #category-new-sub-item-title-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
    padding: 15px 20px;
}

#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item h4.category-new-sub-item-title {
	/* position: absolute; */
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
	margin-bottom: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}



/* ---- TAG ---- */
#tag-wrapper h1.tag-title-content {
	font-size: 32px; /* 36px; */
	line-height: 36px;
	border-left: 7px solid #F7941D;
	padding-left: 15px;
	margin-bottom: 28px; /* 45px; */
}

#tag-wrapper #tag-main-item-wrapper {
	height: auto;
}

#tag-wrapper #tag-main-item-wrapper .tag-main-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 66.66667%;
	background-color: #c4c4c4;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	margin-bottom: 30px;
}

#tag-wrapper #tag-main-item-wrapper .tag-main-item-title-container,
#tag-wrapper #tag-main-item-wrapper #tag-main-item-title-wrapper {
	position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
    padding: 15px 20px;
}

#tag-wrapper #tag-main-item-wrapper h3.tag-main-item-title {
	/* position: absolute; */
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
    /* bottom: 0; */
    /* left: 0; */
    /* padding: 15px 20px; */
    margin-top: 0;
    text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

#tag-wrapper .tag-sub-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 66.66667%;
	background-color: #c4c4c4;
	margin-bottom: 30px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
}


#tag-wrapper #tag-sub-item-wrapper.tag-sub-item {
	height: auto;
	overflow: hidden;
	margin-bottom: 30px;
}

#tag-wrapper #tag-sub-item-wrapper.tag-sub-item .tag-sub-item-content-container.sub-item {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}

#tag-wrapper #tag-sub-item-wrapper.tag-sub-item .tag-sub-item-image-container {
	margin-bottom: 0;
}

#tag-wrapper #tag-sub-item-wrapper.tag-sub-item .tag-sub-item-date-container {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #999999;
}

#tag-wrapper #tag-sub-item-wrapper.tag-sub-item h4.tag-sub-item-title {
	display: inline-block;
	font-size: 16px; /* 18px; */
	line-height: 18ox; /* new */
	margin: 0; /*  7px 0 0 0; */
}







/* ---- SINGLE --> PAGES ---- */
#single-page-wrapper h1.single-page-title {
	border-left: 7px solid #F7941D; /* #F7941D; */
	padding-left: 15px;
	
}

#single-page-wrapper #single-page-content-wrapper {
	padding-bottom: 50px;
}

#single-page-wrapper #single-page-content-wrapper p:first-of-type {
	font-weight: bold;
	font-size: 18px;
	color: #000000;
}

/* 
#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-container {
	padding-bottom: 45px;
}
*/

#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content {
	display: inline-block;
}

#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content span.single-page-exclusive-devider {
	font-size: 14px;
	color: #333333;
}

#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-category-container {
	position: relative;
	display: inline-block;
	font-size: 12px; /* 14px; */
	color: #333333;
}

#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-date-container {
	position: relative;
	display: inline-block;
	font-size: 12px; /* 14px; */
	color: #333333;
}

#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-average-reading-time-container {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #999999;
}

#single-page-wrapper .single-page-average-reading-time-content span {
	position: relative;
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    color: #999999;
    height: 16px;
    line-height: 16px;
	padding-left: 22px;
}

#single-page-wrapper .single-page-video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	margin-bottom: 30px;
}


#single-page-wrapper .single-page-content-container .iframe-container {
	position: relative;
	height: 0;
	padding-bottom: 56.26%;
}

#single-page-wrapper .single-page-content-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* ---- SINGLE --> PREVIOUS AND NEXT LINK ---- */
#previous-and-next-link-wrapper {
	padding: 30px 0 0 0;
}

#previous-and-next-link-wrapper .previous-and-next-link-container {
	position: relative;
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
	margin: 30px 0;
}

#previous-and-next-link-wrapper .previous-and-next-link-container .next-link-container {
	width: 100%;
	text-align: right;
}



/* ---- SINGLE --> RELATED ITEMS ---- */
#single-page-related-items-wrapper {
	padding: 25px 0;
}

#single-page-related-items-wrapper .single-page-related-items-container {
	border-left: 3px solid #eaeaea;
	padding-left: 30px;
}

#single-page-related-items-wrapper .single-page-related-items-container h3.single-page-related-items-title {
	margin-bottom: 30px;
}

#single-page-related-items-wrapper .single-page-related-items-container #single-page-related-items-single-item-wrapper {
	margin-bottom: 30px;
}

#single-page-related-items-wrapper .single-page-related-items-container .related-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#single-page-related-items-wrapper .single-page-related-items-container .related-image {
	display: flex;
}

#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-image-container {
	position: relative;
	height: 0;
	padding-bottom: 66.66667%;
	width: 100%;
	border-radius: 7px;
}

#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-image-container img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	margin-bottom: 0; 
	border-radius: 7px;
}

/*(
#single-page-related-items-wrapper .single-page-related-items-container .related-content {
	display: table-cell;
	vertical-align: center;
}
*/

#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container {
	position: relative;
	left: -15px;
	width: calc( 100% + 30px );
}

#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container .single-page-category-container {
	position: relative;
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: #333333;
}

#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container h4.single-page-related-items-single-item-title-content {
	color: #000000;
	margin: 5px 0;
}



/* ---- SINGLE --> TAGS ---- */
#single-page-tags-wrapper {
	height: auto;
	overflow: hidden;
	padding: 25px 0 0 0;
}

#single-page-tags-wrapper ul {
	list-style: none;
	padding-left: 0;
}

#single-page-tags-wrapper ul li {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
}

#single-page-tags-wrapper ul li:last-child {
	margin-right: 0;
}

#single-page-tags-wrapper a.single-page-tags-single-tag-content {
	font-size: 16px;
	display: inline-block;
	padding: 10px 15px;
	border: 1px solid #f7941d;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}


#single-page-tags-wrapper a.single-page-tags-single-tag-content:hover,
#single-page-tags-wrapper a.single-page-tags-single-tag-content:focus {
	color: #ffffff;
	background-color: #f7941d;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}



/* ---- SINGLE --> MOST-RECENT ITEMS ---- */
#single-page-related-items-wrapper {
	padding: 25px 0 0 0;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container h3.single-page-most-recent-items-title {
	margin-bottom: 30px;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container #single-page-most-recent-items-single-item-wrapper {
	margin-bottom: 30px;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .most-recent-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .category-sub-item-date-container {
	display: inline-block;
	font-size: 12px;
	color: #333333;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .most-recent-image {
	display: flex;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .single-page-most-recent-items-single-item-image-container {
	position: relative;
	height: 0;
	padding-top: 75%;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .single-page-most-recent-items-single-item-image-container img {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	margin-bottom: 0; 
	border-radius: 7px;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .single-page-most-recent-items-single-item-title-container {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .single-page-most-recent-items-single-item-title-container .single-page-category-container {
	position: relative;
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: #333333;
}

#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .single-page-most-recent-items-single-item-title-container h4.single-page-most-recent-items-single-item-title-content {
	color: #000000;
	margin: 0;
}




/* ---- PAGES ---- */
#page-wrapper {
	min-height: 70vh;
}

#page-wrapper h1.page-title {
	border-left: 7px solid #F7941D; /* #F7941D; */
	padding-left: 15px;
	margin-bottom: 30px; /* 45px; */
}


/* ---- PAGES --> PAGETEMPLATE: CONTACT ---- */
#page--contact-wrapper {
	min-height: 70vh;
}

#page-contact-wrapper h1.page-title {
	border-left: 7px solid #F7941D; /* #F7941D; */
	padding-left: 15px;
	margin-bottom: 45px;
}



/* ---- PAGES --> PAGETEMPLATE: PAGINA NIEUWSBRIEF ---- */
#page-newsletter-wrapper {
	min-height: 70vh;
}

#page-newsletter-wrapper h1.page-newsletter-title {
	border-left: 7px solid #F7941D; /* #F7941D; */
	padding-left: 15px;
	margin-bottom: 45px;
}

body #page-newsletter-wrapper .gform_wrapper {
	left: 0;
}

body #page-newsletter-wrapper .gform_wrapper li.gfield.gfield_html {
	padding-left: 0;
}

body #page-newsletter-wrapper .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
	position: relative;
	float: left;
	width: auto;
	width: 400px;
	border-radius: 7px 0 0 7px;
}

body #page-newsletter-wrapper .gform_wrapper .gform_footer {
	position: relative;
    clear: none;
    float: left;
    margin: 36px 0 0 -15px;
    padding: 0;
    width: auto;
}

body #page-newsletter-wrapper .gform_wrapper input[type="submit"] {
	position: relative;
	float: left;
	color: #ffffff;
	background-color: #F7941D;
	border-radius: 0 7px 7px 0;
}

body #page-newsletter-wrapper .gform_wrapper input[type="submit"]:hover,
body #page-newsletter-wrapper .gform_wrapper input[type="submit"]:focus {
	color: #F7941D;
	background-color: #ffffff;
}




/* ---- PAGES --> PAGETEMPLATE: PAGINA MET SIDEBAR ---- */



/* ---- PAGES --> PAGETEMPLATE: PAGINA ADVERTEREN ---- */
#page-wrapper .page-advertising-sidebar-container {
	font-size: 16px;
	line-height: normal;
	padding: 30px 15px;
	background-color: #F5F1E7;
}

#page-wrapper .page-advertising-sidebar-container h3.page-advertising-sidebar-title {
	margin-top: 0;
	margin-bottom: 20px;
	color: #F7941D;
}

#page-wrapper .page-advertising-sidebar-container .gform_wrapper .top_label div.ginput_container {
	margin-top: 0;
}

#page-wrapper .page-advertising-sidebar-container .gform_wrapper li.hidden_label input {
	margin-top: 0;
}

#page-wrapper .page-advertising-sidebar-container .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
	font-size: 14px;
	height: 30px;
	line-height: 30px;
}

#page-wrapper .page-advertising-sidebar-container .gform_wrapper input[type="submit"] {
	font-size: 16px;
	color: #ffffff;
	height: 40px;
	line-height: 40px;
	background-color: #F7941D;
}

#page-wrapper .page-advertising-sidebar-container .gform_wrapper input[type="submit"]:hover,
#page-wrapper .page-advertising-sidebar-container .gform_wrapper input[type="submit"]:focus {
	color: #F7941D;
	background-color: #FFFFFF;
}





/* ---- PAGES --> ZOEKRESULTATEN ---- */
#page-search-results-wrapper h1.page-searcht-results-title-container {
	margin-bottom: 30px;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e1dede;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper a {
	display: block;
	height: 100%;
	overflow: hidden;
}
#page-search-results-wrapper #page-search-results-single-result-item-wrapper a:hover,
#page-search-results-wrapper #page-search-results-single-result-item-wrapper a:focus {
	background-color: #f1f1f1;
	text-decoration: none;
	border: 0 none;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper h4 {
	margin-top: 0; /* 10px */;
	margin-bottom: 0px;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper #page-search-results-single-result-category-and-date-wrapper {
	position: relative;
   font-size: 12px;
	line-height: normal;
	color: #999999;
	font-style: italic;
	margin-bottom: 5px;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper #page-search-results-single-result-category-and-date-wrapper .page-search-results-single-result-category-container {
	display: inline-block;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper #page-search-results-single-result-category-and-date-wrapper .page-search-results-single-result-date-container {
	display: inline-block;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-item-image-container {
	height: 0;
	padding-bottom: 75%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-content-item-container {
	font-size: 14px;
	color: #414141;
	line-height: normal;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content {
	font-size: 14px;
	font-style: italic;
	margin: 15px 0 0 0;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content:after {
	font-family: 'Fontawesome';
	content: '\f105';
	margin-left: 5px;
}

#page-search-results-wrapper #page-search-results-single-result-item-wrapper a:hover .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content,
#page-search-results-wrapper #page-search-results-single-result-item-wrapper a:focus .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content,
#page-search-results-wrapper #page-search-results-single-result-item-wrapper a:hover .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content:after,
#page-search-results-wrapper #page-search-results-single-result-item-wrapper a:focus .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content:after {
	color: #000000;
}





/* ---- NEWSLETTER AND SOCIALMEDIA ---- */
#newsletter-and-socialme-wrapper {
	height: auto;
	min-height: 150px;
	padding: 30px 0;
	background-color: #f7941d;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-logo-container {
	position: relative;
	float: left;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-logo-container img {
	position: relative;
	margin-top: -65px;
	height: 150px;
	width: auto;
	border: 2px solid #ffffff;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container {
	position: relative;
	float: left;
	padding: 0 30px;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container h4 {
	font-size: 20px;
	color: #ffffff;
	letter-spacing: 1px;
	margin: 0;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container p {
	font-size: 14px;
	color: #f1f1f1;
	font-style: italic;
	margin: 0;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper {
    position: relative;
    left: 0;
    width: 100%;
    max-width: 100%;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper .gform_body {
	position: relative;
	clear: both;
	float: left;
	width: auto;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper ul li.gfield {
	margin-top: 0;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper .top_label div.ginput_container {
	margin: 0;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper li.hidden_label input {
	margin: 0;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
	font-weight: inherit;
	width: 400px;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper .gform_footer {
	position: relative;
	clear: none;
	float: left;
	margin: 0 0 0 15px;
	padding: 0;
	width: auto;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper input[type="submit"] {
	color: #ffffff;
	font-weight: normal;
	background: #da7802;
	text-transform: initial;
	left: 0;
}

#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper input[type="submit"]:hover,
#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper input[type="submit"]:focus {
	color: #da7802;
	background: #ffffff;
	left: 0;
}

#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container {
	position: relative;
	display: flex;
	height: 100px;
	width: 100%;
	justify-content: flex-end;
	flex-direction: column;
	align-items: flex-end;
}

#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container p {
	padding: 0;
	margin: 0;
}

#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container .social-links {
	display: block;
}

#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container h4 {
	color: #eaeaea;
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 0;
}

#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container a svg {
	fill: #eaeaea;
	width: 40px;
	height: 40px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	margin-left: 10px;
}

#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container a svg:hover,
#newsletter-and-socialme-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container a svg:focus {
	fill: #555555;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}



/* ---- GESPRONSORDE CONTENT ---- */
.advertorial {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	padding: 0 15px;
	background-color: #41a62b;
}

.fp-sub-item .advertorial {
	font-size: 10px;
	line-height: 18px;
	padding: 0 10px;
}

#fp-highlighted-single-item-content-wrapper .advertorial {
	position: relative;
	bottom: 5px;
}

.category-sub-item .advertorial,
.category-new-sub-item .advertorial {
	display: inline-block;
	font-size: 10px;
	line-height: 18px;
	padding: 0 10px;
}

#single-page-wrapper .advertorial {
	font-size: 12px;
	line-height: 20px;
}

#category-sub-item-exlusive-date-wrapper .advertorial {
	font-size: 10px;
	line-height: 18px;
	margin-right: 5px;
}

.benefit,
.offer {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	padding: 0 15px;
	background-color: #0063B2FF;
}

.fp-sub-item .benefit,
.fp-sub-item .offer {
	font-size: 10px;
	line-height: 18px;
	padding: 0 10px;
}

#fp-highlighted-single-item-content-wrapper .benefit,
#fp-highlighted-single-item-content-wrapper .offer {
	position: relative;
	bottom: 5px;
}

.category-sub-item .benefit,
.category-new-sub-item .benefit,
.category-sub-item .offer,
.category-new-sub-item .offer {
	display: inline-block;
	font-size: 10px;
	line-height: 18px;
	padding: 0 10px;
}

#single-page-wrapper .benefit,
#single-page-wrapper .offer {
	font-size: 12px;
	line-height: 20px;
}

#category-sub-item-exlusive-date-wrapper .benefit,
#category-sub-item-exlusive-date-wrapper .offer {
	font-size: 10px;
	line-height: 18px;
	margin-right: 5px;
}






/* ---- FOOTER ---- */
#footer-wrapper {
	position: relative;
	height: auto;
	min-height: 200px;
	font-size: 14px;
	color: #666666;
	background-color: #F0F2F3;
	border-top: 2px solid #d2d5d7;
	padding: 70px 0;
	z-index: 0; /* -1; */
}

#footer-wrapper p {
	margin-bottom: 15px;
}

#footer-wrapper .wp-block-table table {
	width: auto;
}

#footer-wrapper .wp-block-table table td.has-text-align-center {
	width: auto;
	min-width: 20px;
}

#footer-wrapper ul[id*="menu-footer-menu-"],
#footer-wrapper ul[id*="menu-footer-category-menu"] {
	list-style: none;
	padding-left: 0;
}

#footer-wrapper ul[id*="menu-footer-menu-"] li a,
#footer-wrapper ul[id*="menu-footer-category-menu"] li a {
	color: #666666;
}

#footer-wrapper ul[id*="menu-footer-menu-"] li.blue a,
#footer-wrapper ul[id*="menu-footer-category-menu"] li.blue a {
	color: #0063B2FF;
}

#footer-wrapper ul[id*="menu-footer-menu-"] li a:hover,
#footer-wrapper ul[id*="menu-footer-menu-"] li a:focus,
#footer-wrapper ul[id*="menu-footer-category-menu"] li a:hover,
#footer-wrapper ul[id*="menu-footer-category-menu"] li a:focus {
	color: #f7941d;
	text-decoration: none;
}



/* ---- FOOTER --> PUBLISHER ---- */
#publisher-footer-wrapper {
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
}

#publisher-footer-wrapper .publisher-footer-content-container {
	padding: 30px 0;
	font-size: 14px;
	line-height: normal;
	color: #333333;
}

#publisher-footer-wrapper .publisher-footer-content-container p {
	margin: 0;
}



/* ---- FOOTER --> COPYRIGHT ---- */
#copyright-footer-wrapper {
	padding: 15px 0;
}

#copyright-footer-wrapper .copyright-footer-content-container {
	font-size: 14px;
}

#copyright-footer-wrapper .copyright-footer-design-build-container {
	text-align: right;
}

#copyright-footer-wrapper .copyright-footer-design-build-container a {
	font-size: 14px;
	line-height: 40px;
	color: #555555;
}

#copyright-footer-wrapper .copyright-footer-design-build-container a:hover,
#copyright-footer-wrapper .copyright-footer-design-build-container a:focus {
	color: #555555;
	text-decoration: none;
}

#copyright-footer-wrapper .copyright-footer-design-build-container img {
	height: 30px;
	width: auto;
	min-width: inherit;
	margin-bottom: 0;
}



/* ---- FORMULIER ---- */
body img.gform_ajax_spinner {
	display: none !important;
}

body .gform_wrapper {
	position: relative;
	left: -15px;
	width: calc( 100% + 15px );
	max-width: calc( 100% + 15px );
}

body .single-page-content-container .gform_wrapper {
	position: relative;
	left: inherit;
	width: inherit;
	max-width: inherit;
}



body .gform_wrapper ul.gform_fields li.gfield {
	position: relative;
	clear: inherit;
	float: left;
	padding-right: 0;
}

body .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
	height: 50px;
	line-height: 50px;
	padding: 0 10px!important;
	border: 1px solid #F7941D;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
}

body .gform_wrapper ul.gform_fields li.gfield textarea {
	padding: 10px!important;
	border: 1px solid #F7941D;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
}

body .gform_wrapper input[type="submit"] {
	position: relative;
	left: 15px;
	height: 50px;
	line-height: 50px;
	color: #F7941D;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0 15px;
	border: 1px solid #F7941D;
	background-color: #ffffff;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

body .single-page-content-container .gform_wrapper input[type="submit"] {
	left: inherit;
}

body .gform_wrapper input[type="submit"]:hover,
body .gform_wrapper input[type="submit"]:focus {
	background-color: #F7941D;
	color: #ffffff;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}



/* ---- SOCIAL SHARE ---- */
#single-page-wrapper .single-page-social-share-container.share-item-top:before {
	content: ' | ';
	/* margin: 5px; */
}

#single-page-wrapper .single-page-social-share-container.share-item-top {
	display: inline;
	font-size: 12px;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing {
	display: inline;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .single-page-social-share-title {
	display: inline;
	font-size: 12px;
	margin-right: 3px;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat {
	background-color: #f3f0ea;
	border-right: 1px solid #f7941d;
	margin: 0;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat:last-of-type {
	border-right: 0 none;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat:hover,
#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat:focus {
	background-color: #f7941d!important;
	color: #ffffff!important;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat i {
	color: #f7941d;
}

#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat:hover i,
#single-page-wrapper .single-page-social-share-container.share-item-top .supsystic-social-sharing .sharer-flat:focus i {
	color: #ffffff!important;
}




/* ---- SOCIAL SHARE --> BELOW CONTENT ---- */
#single-page-content-wrapper .single-page-social-share-container {
	padding: 30px 0;
}

#single-page-content-wrapper .single-page-social-share-container .single-page-social-share-title {
	font-size: 15px;
	color: #666666;
}

#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat {
	background-color: #f3f0ea;
	border-right: 1px solid #f7941d;
}

#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat:last-of-type {
	border-right: 0 none;
}

#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat:hover,
#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat:focus {
	background-color: #f7941d!important;
	color: #ffffff!important;
}

#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat i {
	color: #f7941d;
}

#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat:hover i,
#single-page-content-wrapper .single-page-social-share-container .supsystic-social-sharing .sharer-flat:focus i {
	color: #ffffff!important;
}


.grecaptcha-badge {
	display: none!important;
}






@media(max-width: 767px) {
	.mc-banner { 
		display: none !important; 
	}

	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		color: #000000;
	}
	
	h1 {
		font-size: 34px;
		line-height: 40px;
	}
	
	h2 {
		font-size: 32px;
		line-height: 36px;
		margin-bottom: 28px;
	}
	
	h3 {
		font-size: 22px;
		margin-bottom: 0;
	}
								
	p {
		margin-bottom: 24px;
	}
	
	a:focus {
		outline: 0 none;
	}
	
	a:hover:before,
	a:hover:after {
		text-decoration: none!important;
	}
								
	a#protocollen {
		position: relative;
		top: -100px;
	}
								
	
	blockquote p {
		font-size: 20px!important;
		line-height: 28px!important;
	}
	
	.wp-block-pullquote cite {
		font-size: 14px;
		font-style: italic;
		color: #3f3f3f;
	}
								
	img {
		min-width: 100%;
		max-width: 100%;
		height: auto;
		margin-bottom: 24px;
	}
	
	img.image-margin-top {
		margin-top: 10px;
	}
	body .wp-block-image .alignright,
	img.alignright {
		clear: both;
		float: none;
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	body .wp-block-image .alignleft,
	img.alignleft {
		clear: both;
		float: none;
		width: 100%;
		margin: 0 auto 0 auto;
	}

	body .wp-block-image {
		margin-bottom: 0;
	}
	
	figure.alignright img {
		margin-bottom: 20px;
	}

	figure.alignleft img {
		margin-bottom: 20px;
	}
	
	.wp-block-image figcaption {
		position: relative;
		top: -20px;
		color: #999999;
		font-size: 14px;
		font-style: italic;
		margin-bottom: 24px;
	}			
								
								
	/* ---- VIDEO FULL WIDTH ---- */
	.wp-block-embed__wrapper {
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 56.25%;
	}
	
	.wp-block-embed__wrapper iframe {
		position: absolute;
		top: 0;
		height: 100%;
		width: 100%;
	}


	/* ---- MOBILE SEARCH FORM ---- */
	#mobile-search-form-wrapper {
		position: fixed;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		top: 0;
		left: 100%;
		width: 100vw;
		height: 100vh;
		background: rgba( 255, 255, 255, 0.95);
		z-index: 15500;
	}

	#mobile-search-form-wrapper .mobile-search-form-introtext {
		flex-shrink: 0;
		width: 100%;
		padding: 0 30px;
		margin-bottom: 0px;
	}

	#mobile-search-form-wrapper .mobile-search-form-container {
		flex-shrink: 0;
		width: 100%;
		padding: 0 30px
	}

	#mobile-search-form-wrapper .mobile-search-form-container input[type="text"] {
		height: 50px;
		line-height: 50px;
		width: 100%;
		padding: 0 10px;
		margin-bottom: 15px;
	}

	#mobile-search-form-wrapper .mobile-search-form-container input[type="submit"] {
		position: relative;
		width: 100%;
		font-size: 20px;
		color: #ffffff;
		text-transform: uppercase;
		background-color: #F7941D;
		border: 0 none;
		padding: 5px 15px;
		transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
	}

	

					
	/* ---- HEADER ---- */
	#header-wrapper {
		position: absolute; /* fixed; */
		height: 100px;
		width: 100%;
		background-color: #ffffff;
		border: 0 none;
		box-shadow: none;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-ms-box-shadow: none;
		-o-box-shadow: none;
		z-index: 10000;
	}

	#header-wrapper.fixed-header {
		position: fixed;
		height: 50px;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
		-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
		-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
		-ms-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
		-o-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	}
								
	#header-wrapper .header-wrapper-background-container {
		align-items: top;
		top: 0;
		left: 0;
		height: 100px;
		width: 100%;
	}
								
	#header-wrapper .header-wrapper-background-container .header-wrapper-background-style {
		vertical-align: top;
	}
	
	#header-wrapper .header-container {
		height: 100px;
	}							
								
	
	/* ---- HEADER --> LOGO ---- */
	#header-wrapper .header-logo-container a {
		height: 100px;
		z-index: 15500;
	}

	#header-wrapper .header-logo-container.fixed-logo a .header-background-logo {
		background-image: url('images/logos/Frituurwereld/Logo Frituurwereld - FW-only.png');
		background-size: contain;
		height: 50px;
		background-position: center;
		transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
	}
								
	#header-wrapper .header-logo-container a img.header-logo {
		height: 100px;
	}
							
	#header-wrapper .header-logo-container a:before {
		height: 100px;
	}

	#header-wrapper .header-logo-container.fixed-logo a:before {
		width: 1px;
		left: -1px;
		height: 50px;
	}

	#header-wrapper .header-logo-container a:after {
		height: 100px;
	}
								
	#header-wrapper .header-logo-container.fixed-logo a:after {
		width: 1px;
		right: -1px;
		height: 50px;
	}
	
	
	/* ---- HEADER --> TOP-HEADER-INSET ---- */
	#top-header-inset-wrapper {
		display: none;
	}
								
								
	/* ---- HEADER --> MAIN MENU ---- */
	#header-main-menu-wrapper-mobile {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100px;
		z-index: 15000;
	}

	#header-main-menu-wrapper-mobile .main-nav-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	
	#header-main-menu-wrapper-mobile .navbar-collapse {
		padding-left: 0;
		padding-right: 0;
	}

	#header-main-menu-wrapper-mobile .main-nav-container {
		position: relative;
		height: auto;
		padding: 0;
		background-color: darkblue!important;
	}

	#header-main-menu-wrapper-mobile .navbar-nav {
		margin-left: inherit;
		margin-right: inherit;
	}

	#header-main-menu-wrapper-mobile .mobile-menu {
		position: relative;
		z-index: 10000;
		text-align: right;
		border-bottom: 2px solid #ffdd00;
	}
						
	#header-main-menu-wrapper-mobile .navbar-toggle {
		position: relative;
		float: right;
		height: 100px;
		width: 50px;
		background-image: url(images/icons/icon_pancake_menu.png);
		background-position: center;
		background-size: 30px;
		background-repeat: no-repeat;
		margin: 0 0 0 0;
		padding-right: 0;
		background-color: transparent;
		border: 0 none;	
		z-index: 15000;		
	}

	#header-main-menu-wrapper-mobile .header-main-menu-wrapper-mobile-search-icon-container {
		position: relative;
		float: right;
		height: 100px;
		width: 30px;
		z-index: 0;	
	}

	#header-main-menu-wrapper-mobile .header-main-menu-wrapper-mobile-search-icon-container:before {
		position: absolute;
		height: 100px;
		line-height: 100px;
		width: 30px;
		font-family: 'Fontawesome';
		content: '\f002';
	}

	#header-main-menu-wrapper-mobile .header-main-menu-wrapper-mobile-search-icon-container.fixed-icon:before {
		height: 50px;
		line-height: 50px;	
	}

	#header-main-menu-wrapper-mobile .navbar-toggle:hover,
	#header-main-menu-wrapper-mobile .navbar-toggle:focus {
		background-color: transparent;
		color: #da7802;
		border: 0 none;	
		outline: 0;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse {
		position: absolute;
		clear: both;
		left: -15px;
		top: 0;
		width: 100vw;
		height: 100vh;
		padding: 150px 0;
		background-color: #F7941D;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse.show {
		display: inherit!important;
		
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul {
		height: 100vh;
		width: 100vw;
		z-index: 16000;
		padding: 0 15px;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li {
		height: 50px;
		line-height: 50px;
		list-style: none;
		border-bottom: 1px solid #bd6802;		
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul li:first-child {
		border-top: 1px solid #bd6802;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul li.sub-item {
		height: 30px;
		line-height: 30px;
		border-bottom: 0 none;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul .sub-item:first-child {
		padding-top: 30px;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li a {
		font-family: 'Montserrat';
    	font-size: 22px;
		font-weight: 600;
		line-height: 50px;
		padding: 0 10px;
		box-sizing: border-box;
		margin-left: 0;
		color: #ffffff;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul li.sub-item a {
		font-size: 16px;
		font-weight: normal;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li:hover a,
	#header-main-menu-wrapper-mobile .navbar-collapse ul li a:hover,
	#header-main-menu-wrapper-mobile .navbar-collapse ul li:focus a,
	#header-main-menu-wrapper-mobile .navbar-collapse ul li a:focus {
		color: #555555; /* #ffffff; */
		text-decoration: none;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li.active a, 
	#header-main-menu-wrapper-mobile .navbar-collapse ul li.current-menu-parent a, 
	#header-main-menu-wrapper-mobile .navbar-collapse ul li.current-menu-ancestor a {
		text-decoration: none;
		color: #555555; /* #ffffff; */
	}


	/* ---- HEADER-WRAPPER --> ZOEKEN ---- */
	#header-wrapper-search-bar-wrapper {
		display: none!important;
	}
						
						








								#header-wrapper #header-main-menu-wrapper-desktop {
									position: absolute;
									display: flex;
									align-items: center;
									left: 0;
									top: 0;
									height: 150px;
									width: 100%;
									
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul {
									position: relative;
									display: table-cell;
									height: 50px;
									width: 100%;
									margin-bottom: 0;
									vertical-align: middle;
									padding-left: 250px;
									background-color: #F7941D;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li {
									display: inline-block;
									line-height: 50px;
									list-style: none;
									/* margin-right: 30px; */
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a {
									position: relative;
									display: inline-block;
									font-family: 'Montserrat';
									font-weight: 600;
									font-size: 22px;
									line-height: 50px;
									color: #ffffff;
									letter-spacing: 1px;
									padding: 0 15px;
									z-index: 100;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:hover,
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:focus {
									text-decoration: none;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:before {
									position: absolute;
									content: '';
									top: 0;
									left: 0;
									height: 100%;
									width: 100%;
									background-color: transparent;
									transform: skew( -19deg );
									z-index: -1;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:hover:before,
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:focus:before {
									background-color: #da7802;
									z-index: -1;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li.active a:before {
									background-color: #da7802;
								}
								
								
								
								
	/* ---- START SITE ---- */
	#site-wrapper {
		padding-top: 100px; /* 125px; */
	}
								
								
								
								
	/* ---- ALGEMENE OPMAAK ---- */
	.average-reading-time-container {
		font-size: 12px;
		height: 30px;
		line-height: 30px;
	}
								
								
								/* ---- ALGEMENE OPMAAK --> EXCLUSIEVE ITEMS ---- */
								.fp-main-item,
								.category-main-item,
								.category-videos-main-item {
									position: relative;
								}
								
								.fp-main-item .fp-single-item-exclusive-container,
								.category-main-item .category-single-item-exclusive-container,
								.category-videos-main-item .category-single-item-exclusive-container {
									position: absolute;
									top: 0;
									left: 0;
									font-size: 14px;
									font-style: normal;
									font-weight: bold;
									letter-spacing: 1px;
									text-transform: uppercase;
									padding: 2px 20px;
									background-color: #ffa627;
									color: #000000;
								}
								
								.fp-sub-item .fp-single-item-exclusive-container,
								.category-sub-item .category-single-item-exclusive-container,
								.category-videos-sub-item .category-single-item-exclusive-container,
								#single-page-wrapper .single-page-exclusive-container {
									display: inline-block;
									font-size: 10px;
									line-height: 20px;
									font-style: normal;
									font-weight: bold;
									letter-spacing: 1px;
									text-transform: uppercase;
									padding: 0 15px;
									margin-right: 10px;
									background-color: #ffa627;
									color: #000000;
								}
								
								
								
	/* ---- FRONTPAGE ---- */	
	



	/* ---- FRONTPAGE --> ADVERTENTIES ---- */

	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> SINGLE ---- */
	#banner-ads-wrapper {
		margin-top: 15px; /* 40px; */
		margin-bottom: 15px;
		min-width: 100%;
		max-width: 100%;
		padding: 10px 0;
	}

	#banner-ads-wrapper .banner-ads-title-container {
		width: 100%;
		max-width: 100%;
	}

	#banner-ads-wrapper img.banner-single-ad {
		min-width: 100%;
		max-width: 100%;
	}

	#banner-ads-wrapper .ads-banner-separator {
		display: none;
	}

	.ads-separator {
		position: relative;
		padding: 0 0 30px 0;
	}

	.ads-separator:before {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		height: 1px;
		width: 100%;
		background-color: #cacaca;	
	}


	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> SINGLE --> PREMIUM ---- */
	#premium-banner-ads-wrapper {
		margin: 10px 0 25px 0;
		text-align: center;
		min-width: 100%;
		max-width: 100%;
		padding: 10px 0;
	}

	#premium-banner-ads-wrapper img {
		min-width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}



	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> CAROUSEL ---- */
	#banner-ads-wrapper #slider,
	#banner-ads-wrapper #carousel-bounding-box,
	#banner-ads-wrapper #myCarousel,
	#banner-ads-wrapper .carousel-inner {
		position: relative;
		width: 728px;
		height: 90px;
		margin: 0 auto;
	}






	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> CAROUSEL ---- */
	#banner-ads-wrapper #slider,
	#banner-ads-wrapper #carousel-bounding-box,
	#banner-ads-wrapper #myCarousel,
	#banner-ads-wrapper .carousel-inner {
		width: 100%;
		height: 0;
		padding-bottom: 33.33333%; /* 15.625% */
	}

	#banner-ads-wrapper .carousel-inner .carousel-item img.banner-single-ad {
		height: auto;
		width: 100%;
	}	
	
	

	/* ---- FRONTPAGE --> ADVERTENTIES --> SIDEBAR BANNER ---- */
	#sidebar-adds-wrapper {
		/* border-top: 1px solid #cacaca;
		border-bottom: 1px solid #cacaca; */
	}
	
	#sidebar-adds-wrapper .sidebar-adds-title-container {
		max-width: inherit;
	}

	#sidebar-adds-wrapper img {
		margin: 15px auto;
	}






	/* ---- FRONTPAGE --> READ ALL LINK ---- */
	.fp-read-all-link-container {
		margin-bottom: 20px;
	}
									.fp-read-all-link-container .fp-read-all-link-content a {
										color: #555555;
										display: block;
										height: 50px;
										width: 100%;
										font-size: 18px;
										text-transform: uppercase;
										line-height: 50px;
										border: 1px solid#F7941D;
										border-radius: 7px;
										padding: 0 15px;
									}

									.fp-read-all-link-container .fp-read-all-link-content a:after {
										font-family: 'Fontawesome';
										content: '\f04b';
										color:#F7941D;
										margin-left: 10px;
									}

									.fp-read-all-link-container .fp-read-all-link-content a:hover,
									.fp-read-all-link-container .fp-read-all-link-content a:focus {
										text-decoration: none;
										background-color: #F7941D;
										color: #ffffff;
									}

									.fp-read-all-link-container .fp-read-all-link-content a:hover:after,
									.fp-read-all-link-container .fp-read-all-link-content a:focus:after {
										color: #ffffff;
									}





			/* ---- FRONTPAGE --> ACTUEEL ---- */
									#fp-actueel-wrapper {
										/* background-color: #f1f1f1; */
										height: auto;
										min-height: 200px;
										padding: 0 0 45px 0;
										/* margin-bottom: 30px; */
									}

									#fp-actueel-wrapper h2.fp-actueel-title {
										border-left: 7px solid #F7941D;
										padding-left: 15px;
									}

									#fp-actueel-wrapper .fp-actueel-single-item-image-container {
										height: 0;
										padding-bottom: 66.66667%; /* 62.5%; */
										background-color: #f1f1f1;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
										border-radius: 7px;
									}

									#fp-actueel-wrapper .fp-actueel-single-item-image-container.fp-main-item {
										margin-bottom: 35px;
									}

									#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container {
										position: relative;
										height: 0;
										width: 100%;
										padding-bottom: 66.66667%; /* 62.5%; */
										background: rgba( 0, 0, 0, 0.1);
										
									}

	#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container h3.fp-actueel-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}


									#fp-actueel-wrapper .fp-actueel-single-item-publish-date-container {
										display: block;
										height: 50px;
										line-height: 50px;
										font-size: 12px;
										font-style: italic;
										color: #999999;
									}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container {
		margin-bottom: 15px;
	}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container.mobile {
		margin-top: -20px;
		margin-bottom: 5px;
	}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container .fp-actueel-single-item-date-container {
		font-size: 12px;
		line-height: 16px;
	}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container h4.fp-actueel-title {
		font-size: 14px; /* 16px; */
		font-weight: 600; /* */
		margin: 0;
	}



	/* ---- FRONTPAGE --> ACHTERGROND ---- */
	#fp-background-wrapper .fp-background-single-item-image-container .fp-background-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}

									#fp-background-wrapper .fp-date-published-and-exclusive-item-container {
										font-size: 14px;
										font-style: italic;
										color: #999999;
										margin: 10px 0 15px 0;
									}

	#fp-background-wrapper .fp-background-single-other-item-container {
		margin-bottom: 15px;
	}

									#fp-background-wrapper .fp-background-single-other-item-container .fp-background-single-item-image-container {
										margin-bottom: 0;
									}

	#fp-background-wrapper .fp-background-single-other-item-container .fp-background-single-item-date-container {
		font-size: 12px;
		line-height: 16px;
	}

	#fp-background-wrapper .fp-background-single-other-item-container h4.fp-background-title {
		font-size: 14px; /* 16px; */
		font-weight: 600; /* */
		margin: 0;
	}


	/* ---- FRONTPAGE --> HIGHLIGHTED ----- */
	#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-image-wrapper { 
		position: relative;
		left: -15px;
		width: calc( 100% + 30px );
	}

	#fp-highlighted-wrapper .carousel-indicators {
		top: 95%;
		width: 100%;
	}


	/* ---- FRONTPAGE --> NIEUW! ---- */
	#fp-new-wrapper {
		position: relative;
		/* background-color: #f1f1f1; */
	}

	#fp-new-wrapper .fp-new-single-item-image-container.fp-main-item {
		margin-bottom: 30px; /* 15px; */
	}

	#fp-new-wrapper .fp-new-single-item-title-container.mobile {
		height: auto;
		min-height: 50px;
		margin-bottom: 30px;	
	}

	#fp-new-wrapper .fp-new-single-item-title-container.mobile h4.fp-new-single-item-title {
		font-size: 16px;
		line-height: 22px;
	}

	#fp-new-wrapper .fp-new-single-item-image-container .fp-new-single-item-title-container h3.fp-new-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}


							

	#fp-new-wrapper .fp-new-single-other-item-container {
		margin-bottom: 15px;
	}

							#fp-new-wrapper .fp-new-single-other-item-container .fp-new-single-item-date-container {
								display: inline-block;
								font-size: 12px;
								line-height: 20px;
								font-style: italic;
								color: #999999;
							}

	#fp-new-wrapper .fp-new-single-other-item-container h4.fp-new-single-item-title {
		display: inline-block;
		font-size: 14px; /* 16px; */
		font-weight: 600; /* */
		margin: 0;
	}

									



	/* ---- FRONTPAGE --> VIDEOS ----- */

	/* MAKE DIV SCROLLING */
	#fp-videos-wrapper .h-scrolling .scrolling {
		padding-left: 15px;
		margin-bottom: 30px;
	}

	/* VIDEO CONTENT */
	#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper{
		min-width: 90%;
	}

	#fp-videos-wrapper #fp-videos-single-video-wrapper .fp-videos-single-video-container .fp-videos-single-video-title-container h3.fp-video-single-video-title {
		font-size: 14px;
		font-weight: 600; /* bold; */
		line-height: 17px;
	}

	

	/* ---- FRONTPAGE --> TRIVIA ---- */
	#fp-trivia-wrapper .fp-trivia-single-item-image-container .fp-trivia-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}

									#fp-trivia-wrapper .fp-date-published-and-exclusive-item-container {
										font-size: 14px;
										font-style: italic;
										color: #999999;
										margin: 10px 0 15px 0;
									}

	#fp-trivia-wrapper .fp-trivia-single-other-item-container {
		margin-bottom: 15px;
	}

									#fp-trivia-wrapper .fp-trivia-single-other-item-container .fp-trivia-single-item-image-container {
										margin-bottom: 0;
									}

	#fp-trivia-wrapper .fp-trivia-single-other-item-container .fp-trivia-single-item-date-container {
		line-height: 16px;
	}

	#fp-trivia-wrapper .fp-trivia-single-other-item-container h4.fp-trivia-title {
		font-size: 14px; /* 16px; */
		font-weight: 600; /* */
		margin: 0; /* 30px; */
	}




	/* ---- FRONTPAGE --> AANBEVOLEN ---- */
	#fp-recommended-wrapper {
		position: relative;
		margin-bottom: 15px;
	}

	#fp-recommended-wrapper #fp-recommended-single-item-wrapper {
		margin-bottom: 30px;
	}

	#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-title-container {
		height: auto;
		min-height: 50px; /* 75px; */
	}

	#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-title-container h4.fp-recommended-single-item-title {
		font-size: 13px; /* 18px; */
		line-height: 16px; /* 24px; */
	}


									




	/* ---- FRONTPAGE --> LEZERSVOORDELEN ---- */
	#fp-discounts-wrapper #fp-discounts-single-item-wrapper {
		margin-bottom: 30px;
	}

	#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-title-container {
		height: 52px;
	}

	#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-title-container h4.fp-discounts-single-item-title {
		font-size: 14px; /* 16px; */
		font-weight: 600; /* */
		line-height: 20px;
		margin: 0; /* */
	}


	/* ---- PAGES --> PAGETEMPLATE: PAGINA NIEUWSBRIEF ---- */
	body #page-newsletter-wrapper .gform_wrapper ul li.gfield {
		width: calc( 100% - 15px );
		margin-top: 0;
	}

	body #page-newsletter-wrapper .gform_wrapper .top_label div.ginput_container {
		margin: 0 0 15px 0;
	}

	body #page-newsletter-wrapper .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
		position: relative;
		clear: both;
		float: none;
		width: 100%;
		border-radius: 7px;
	}

	body #page-newsletter-wrapper .gform_wrapper .gform_footer {
		clear: both;
		float: none;
		margin: 15px 0 0 0;
		padding: 0;
		width: auto;
	}

	body #page-newsletter-wrapper .gform_wrapper input[type="submit"] {
		left: 0;
		border-radius: 7px;
	}




								


									




	/* ---- CATEGORIES ---- */
	#category-wrapper h1.category-title-content {
		font-size: 32px; /* 36px; */
		line-height: 36px;
		border-left: 7px solid #F7941D;
		padding-left: 15px;
		margin-bottom: 20px; /* 28px; */
	}

									#category-wrapper #category-main-item-wrapper {
										height: auto;
									}

									#category-wrapper #category-main-item-wrapper .category-main-item-image-container {
										position: relative;
										height: 0;
										padding-bottom: 66.66667%;
										background-color: #c4c4c4;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
										border-radius: 7px;
									}

#category-wrapper #category-main-item-wrapper h3.category-main-item-title {
	font-size: 22px;
	line-height: 28px;
	color: #ffffff;
	text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
}

									#category-wrapper .category-sub-item-image-container {
										position: relative;
										height: 0;
										padding-bottom: 66.66667%;
										background-color: #c4c4c4;
										margin-bottom: 30px;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
										border-radius: 7px;
									}


	#category-wrapper #category-sub-item-wrapper.category-sub-item {
		margin-bottom: 30px;
	}

	#category-wrapper #category-sub-item-wrapper.category-sub-item.mobile {
		margin-top: -15px;
		margin-bottom: 5px;
	}

									#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-image-container {
										margin-bottom: 0;
									}

	#category-wrapper #category-sub-item-exlusive-date-wrapper {
		line-height: 12px;
		margin-bottom: 0; /* 5px; */
	}

	#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-date-container {
		display: inline-block;
		font-size: 12px;
		line-height: 12px;
		font-style: italic;
		color: #999999;
	}

	#category-wrapper #category-sub-item-wrapper.category-sub-item h4.category-sub-item-title {
		font-size: 14px; /* 16px; */
		font-weight: 600;
		line-height: 20px; /* 18px; */
		margin: 0;
	}



	/* ---- CATEGORIES --> NIEUW ---- */
	#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item #category-new-sub-item-title-wrapper {
		padding: 5px 10px;
	}

	#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item h4.category-new-sub-item-title {
		font-size: 14px; /* 16px; */
		font-weight: 700;
		line-height: 18px; /* 22px; */
		/* padding: 5px 10px; */
	}

	#category-new-wrapper #category-new-main-item-wrapper h3.category-new-main-item-title {
		font-size: 22px;
		line-height: 28px;
	}


	






	/* ---- CATEGORIES --> VIDEOS ---- */
	#category-videos-wrapper h1.category-videos-title-content {
		font-size: 32px; /* 36px; */
		line-height: 36px;
		border-left: 7px solid #F7941D;
		padding-left: 15px;
		margin-bottom: 28px; /* 45px; */
	}

									#category-videos-wrapper .category-videos-main-item-image-container {
										position: relative;
										height: 0;
										padding-bottom: 56.25%;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
									}

	#category-videos-wrapper .category-videos-sub-item-intro-container h4.category-videos-sub-item-title {
		font-size: 13px;
		line-height: 16px;
		height: auto;
		min-height: 60px;
	}




	/* ---- SINGLE --> PAGES ---- */
	#single-page-wrapper h1.single-page-title {
		font-size: 26px;
		line-height: 30px;
	}
	
	#single-page-wrapper #single-page-content-wrapper p {
		font-size: 15px;
		line-height: 21px;
	}

	#single-page-wrapper #single-page-content-wrapper ul li {
		font-size: 15px;
		line-height: 21px;
	}
	
	#single-page-wrapper #single-page-content-wrapper p:first-of-type {
		font-size: 16px; /* 18px; */
		line-height: 22px;
		color: #000000;
	}

	#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-container {
		padding-bottom: 30px;
	}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content {
										display: inline-block;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content span.single-page-exclusive-devider {
										font-size: 14px;
										color: #333333;
									}

	#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-category-container {
		font-size: 12px;
	}

	#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-date-container {
		font-size: 12px;
	}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-average-reading-time-container {
										position: relative;
										display: inline-block;
										font-size: 14px;
										color: #999999;
									}

									#single-page-wrapper .single-page-average-reading-time-content span {
										position: relative;
										display: inline-block;
										font-size: 14px;
										font-style: italic;
										color: #999999;
										height: 16px;
										line-height: 16px;
										padding-left: 22px;
									}



	/* ---- SINGLE --> PREVIOUS AND NEXT LINK ---- */
	#previous-and-next-link-wrapper {
		padding: 35px 0 0 0;
	}

									#previous-and-next-link-wrapper .previous-and-next-link-container {
										position: relative;
										font-size: 14px;
										height: 50px;
										line-height: 50px;
										border-top: 1px solid #999999;
										border-bottom: 1px solid #999999;
										margin: 30px 0;
									}

									#previous-and-next-link-wrapper .previous-and-next-link-container .next-link-container {
										width: 100%;
										text-align: right;
									}



	/* ---- SINGLE --> RELATED ITEMS ---- */
	#single-page-related-items-wrapper {
		padding: 25px 0;
	}

	#single-page-related-items-wrapper .single-page-related-items-container {
		border-left: 2px solid #eaeaea;
		padding-left: 10px;
	}

	#single-page-related-items-wrapper .single-page-related-items-container h3.single-page-related-items-title {
		margin-bottom: 30px;
	}

	#single-page-related-items-wrapper .single-page-related-items-container #single-page-related-items-single-item-wrapper {
		margin-bottom: 20px;
	}
	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-image-container img {
		margin-bottom: 0;
	}

	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container {
		width: calc( 100% + 15px );
	}

	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container .single-page-category-container {
		font-size: 12px;
		line-height: 20px;
	}

	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container h4.single-page-related-items-single-item-title-content {
		font-size: 16px;
		font-weight: 600;
		line-height: 18px;
		margin: 0;
	}



	/* ---- SEARCH --> SEARCH RESULTS ---- */ 
	#page-search-results-wrapper h1.page-searcht-results-title-container {
		font-size: 24px;
		line-height: normal;
		padding-bottom: 20px;
		margin-bottom: 70px;
		border-bottom: 1px solid #e1dede;
	}

	#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content {
		margin-top: 7px;
	}


	/* ---- FOOTER --> SOCIALME EN NIEUWSBRIEF ---- */
	#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container p {
		line-height: normal;
	}

	#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper .gform_body {
		width: 100%;
	}

	#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper ul li.gfield {
		width: 100%;
	}

	#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}
	
	#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper input[type="submit"] {
		position: relative;
		display: block;
		width: auto!important;
		left: -15px;
	}


	/* ---- SINGLE-PAGE --> MOST RECENT ---- */
	#single-page-most-recent-items-wrapper {
		padding: 35px 0 15px 0;
	}

	#single-page-most-recent-items-wrapper .single-page-most-recent-items-container .single-page-most-recent-items-single-item-title-container h4.single-page-most-recent-items-single-item-title-content {
		font-size: 14px;
		font-weight: 600;
		line-height: normal;
		margin: 0;
	}



	
	/* ---- FOOTER ---- */
	#footer-wrapper div[class*='footer-position-'] {
		border-top: 1px solid #999999;
		padding: 10px 0;
	}

	

	/* ---- FOOTER --> SOCIALME ---- */
	#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper {
		border-top: 1px solid #999999;
		border-bottom: 1px solid #999999;
	}

	#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container {
		display: inline-block;
	}

	#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container h4 {
		margin-right: 5px;
		display: inline-block;
		line-height: 40px;
	}

	#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container .social-links {
		position: relative;
		display: flex;
		float: right;
		top: 3px;
		margin: 10px 0;
		height: 40px;
		align-items: center;
	}

	#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container .social-links a {
		margin: 0 5px;
	}



	/* ---- FOOTER --> COPYRIGHT ---- */
	#copyright-footer-wrapper .copyright-footer-content-container {
		text-align: center;
	}

	#copyright-footer-wrapper .copyright-footer-design-build-container {
		text-align: center;
	}




	/* ---- FORMULIER ---- */
	body .gform_wrapper input[type="submit"] {
		width: calc( 100% - 15px )!important;
	}


	
}


/* ---- CHANGE BREAKPOINT ---- */
@media (max-width: 991px) {
	.navbar-header {
		float: none;
	}

	.navbar-left,
	.navbar-right {
		float: non!important;
	}
	
	.navbar-toggle {
		display: block;
	}
	
	.navbar-collapse.collapse {
		display: none!important;
	}
	
	.navbar-nav>li {
		float: none;
	}
	
	.navbar-nav > li > a {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.collapse.in {
		display: block!important; 
	}
  }


 
@media only screen
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: portrait) {
	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		color: #000000;
	}
	
	h1 {
		font-size: 34px;
		line-height: 40px;
	}
	
	h2 {
		font-size: 32px;
		line-height: 36px;
		margin-bottom: 28px;
	}
	
	h3 {
		font-size: 22px;
		margin-bottom: 0;
	}
								
	p {
		margin-bottom: 24px;
	}
					
	a:focus {
		outline: 0 none;
	}
	
	a:hover:before,
	a:hover:after {
		text-decoration: none!important;
	}
								
	a#protocollen {
		position: relative;
		top: -100px;
	}
								
	blockquote {
		border-left: 0 none!important;
		margin-left: 0;
		padding: 15px 0!important
	}
	
	blockquote p {
		font-size: 32px!important;
		color: #009cc4!important;
		font-weight: 600!important;
		font-style: italic!important;
	}
								
	img {
		min-width: 100%;
		max-width: 100%;
		height: auto;
		margin-bottom: 24px;
	}
	
	img.image-margin-top {
		margin-top: 10px;
	}
	body .wp-block-image .alignright,
	img.alignright {
		clear: both;
		float: none;
		width: 100%;
		margin: 0 auto 10px auto;
	}
	
	body .wp-block-image .alignleft,
	img.alignleft {
		clear: both;
		float: none;
		width: 100%;
		margin: 0 auto 10px auto;
	}
	
	.wp-block-image figcaption {
		position: relative;
		top: -20px;
		color: #999999;
		font-size: 14px;
		font-style: italic;
		margin-bottom: 24px;
	}			
								
								
	/* ---- VIDEO FULL WIDTH ---- */
	.wp-block-embed__wrapper {
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 56.25%;
	}
	
	.wp-block-embed__wrapper iframe {
		position: absolute;
		top: 0;
		height: 100%;
		width: 100%;
	}



	/* ---- MOBILE SEARCH FORM ---- */
	#mobile-search-form-wrapper {
		position: fixed;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		top: 0;
		left: 100%;
		width: 100vw;
		height: 100vh;
		background: rgba( 255, 255, 255, 0.95);
		z-index: 15500;
	}

	#mobile-search-form-wrapper .mobile-search-form-introtext {
		flex-shrink: 0;
		width: 100%;
		padding: 0 30px;
		margin-bottom: 0px;
	}

	#mobile-search-form-wrapper .mobile-search-form-container {
		flex-shrink: 0;
		width: 100%;
		padding: 0 30px
	}

	#mobile-search-form-wrapper .mobile-search-form-container input[type="text"] {
		height: 50px;
		line-height: 50px;
		width: 100%;
		padding: 0 10px;
		margin-bottom: 15px;
	}

	#mobile-search-form-wrapper .mobile-search-form-container input[type="submit"] {
		position: relative;
		width: 100%;
		font-size: 20px;
		color: #ffffff;
		text-transform: uppercase;
		background-color: #F7941D;
		border: 0 none;
		padding: 5px 15px;
		transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
	}


								
					
	/* ---- HEADER ---- */
	#header-wrapper {
		position: fixed;
		width: 100%;
		background-color: #ffffff;
		z-index: 10000;
	}
								
	#header-wrapper .header-wrapper-background-container {
		align-items: top;
		top: 0;
		left: 0;
		height: 100px;
		width: 100%;
	}
								
	#header-wrapper .header-wrapper-background-container .header-wrapper-background-style {
		vertical-align: top;
	}
	
	#header-wrapper .header-container {
		height: 100px;
	}							
								
	
	/* ---- HEADER --> LOGO ---- */
	#header-wrapper .header-logo-container a {
		height: 100px;
		z-index: 15500;
	}
								
	#header-wrapper .header-logo-container a img.header-logo {
		height: 100px;
	}
								
	#header-wrapper .header-logo-container a:before {
		height: 100px;
	}
								
	#header-wrapper .header-logo-container a:after {
		height: 100px;
	}
	
	
	/* ---- HEADER --> TOP-HEADER-INSET ---- */
	#top-header-inset-wrapper {
		display: none;
	}
								
								
	/* ---- HEADER --> MAIN MENU ---- */
	#header-main-menu-wrapper-mobile {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100px;
		z-index: 15000;
	}

	#header-main-menu-wrapper-mobile .main-nav-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	
	#header-main-menu-wrapper-mobile .navbar-collapse {
		padding-left: 0;
		padding-right: 0;
	}

	#header-main-menu-wrapper-mobile .main-nav-container {
		position: relative;
		height: auto;
		padding: 0;
		background-color: darkblue!important;
	}

	#header-main-menu-wrapper-mobile .navbar-nav {
		margin-left: inherit;
		margin-right: inherit;
	}

	#header-main-menu-wrapper-mobile .mobile-menu {
		position: relative;
		z-index: 10000;
		text-align: right;
		border-bottom: 2px solid #ffdd00;
	}
						
	#header-main-menu-wrapper-mobile .navbar-toggle {
		position: relative;
		float: right;
		height: 100px;
		width: 50px;
		background-image: url(images/icons/icon_pancake_menu.png);
		background-position: center;
		background-size: 30px;
		background-repeat: no-repeat;
		margin: 0 0 0 0;
		padding-right: 0;
		background-color: transparent;
		border: 0 none;	
		z-index: 15000;		
	}

	#header-main-menu-wrapper-mobile .navbar-toggle:hover,
	#header-main-menu-wrapper-mobile .navbar-toggle:focus {
		background-color: transparent;
		color: #da7802;
		border: 0 none;	
		outline: 0;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse {
		position: absolute;
		clear: both;
		left: -15px;
		top: 0;
		width: 100vw;
		height: 100vh;
		padding: 150px 0;
		background-color: #F7941D;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse.show {
		display: inherit!important;
		
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul {
		height: 100vh;
		width: 100vw;
		z-index: 16000;
		padding: 0 15px;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li {
		height: 60px;
		line-height: 60px;
		list-style: none;
		border-bottom: 1px solid #bd6802;		
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul li:first-child {
		border-top: 1px solid #bd6802;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul li.sub-item {
		height: 40px;
		line-height: 40px;
		border-bottom: 0 none;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul .sub-item:first-child {
		padding-top: 30px;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li a {
		font-family: 'Montserrat';
    	font-size: 26px;
		font-weight: 600;
		line-height: 50px;
		padding: 0 10px;
		box-sizing: border-box;
		margin-left: 0;
		color: #ffffff;
	}

	#header-main-menu-wrapper-mobile .navbar-collapse ul li.sub-item a {
		font-size: 18px;
		font-weight: normal;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li:hover a,
	#header-main-menu-wrapper-mobile .navbar-collapse ul li a:hover,
	#header-main-menu-wrapper-mobile .navbar-collapse ul li:focus a,
	#header-main-menu-wrapper-mobile .navbar-collapse ul li a:focus {
		color: #555555; /* #ffffff */
		text-decoration: none;
	}
						
	#header-main-menu-wrapper-mobile .navbar-collapse ul li.active a, 
	#header-main-menu-wrapper-mobile .navbar-collapse ul li.current-menu-parent a, 
	#header-main-menu-wrapper-mobile .navbar-collapse ul li.current-menu-ancestor a {
		text-decoration: none;
		color: #555555; /* #ffffff */
	}
						
						








								#header-wrapper #header-main-menu-wrapper-desktop {
									position: absolute;
									display: flex;
									align-items: center;
									left: 0;
									top: 0;
									height: 150px;
									width: 100%;
									
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul {
									position: relative;
									display: table-cell;
									height: 50px;
									width: 100%;
									margin-bottom: 0;
									vertical-align: middle;
									padding-left: 250px;
									background-color: #F7941D;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li {
									display: inline-block;
									line-height: 50px;
									list-style: none;
									/* margin-right: 30px; */
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a {
									position: relative;
									display: inline-block;
									font-family: 'Montserrat';
									font-weight: 600;
									font-size: 22px;
									line-height: 50px;
									color: #ffffff;
									letter-spacing: 1px;
									padding: 0 15px;
									z-index: 100;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:hover,
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:focus {
									text-decoration: none;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:before {
									position: absolute;
									content: '';
									top: 0;
									left: 0;
									height: 100%;
									width: 100%;
									background-color: transparent;
									transform: skew( -19deg );
									z-index: -1;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:hover:before,
								#header-wrapper #header-main-menu-wrapper-desktop ul li a:focus:before {
									background-color: #da7802;
									z-index: -1;
									transform: all .2s ease-in-out;
									-webkit-transform: all .2s ease-in-out;
									-moz-transform: all .2s ease-in-out;
									-ms-transform: all .2s ease-in-out;
									-o-transform: all .2s ease-in-out;
								}
								
								#header-wrapper #header-main-menu-wrapper-desktop ul li.active a:before {
									background-color: #da7802;
								}
	
	
	/* ---- HEADER-WRAPPER --> ZOEKEN ---- */
	#header-wrapper-search-bar-wrapper {
		display: none!important;
	}							
								
								
								
								
	/* ---- START SITE ---- */
	#site-wrapper {
		padding-top: 125px;
	}
								
								
								
								
								/* ---- ALGEMENE OPMAAK ---- */
								.average-reading-time-container {
									position: relative;
									display: inline-block;
									font-size: 14px;
									font-style: italic;
									color: #999999;
									height: 50px;
									line-height: 50px;
								}
								
								
								/* ---- ALGEMENE OPMAAK --> EXCLUSIEVE ITEMS ---- */
								.fp-main-item,
								.category-main-item,
								.category-videos-main-item {
									position: relative;
								}
								
								.fp-main-item .fp-single-item-exclusive-container,
								.category-main-item .category-single-item-exclusive-container,
								.category-videos-main-item .category-single-item-exclusive-container {
									position: absolute;
									top: 0;
									left: 0;
									font-size: 14px;
									font-style: normal;
									font-weight: bold;
									letter-spacing: 1px;
									text-transform: uppercase;
									padding: 2px 20px;
									background-color: #ffa627;
									color: #000000;
								}
								
								.fp-sub-item .fp-single-item-exclusive-container,
								.category-sub-item .category-single-item-exclusive-container,
								.category-videos-sub-item .category-single-item-exclusive-container,
								#single-page-wrapper .single-page-exclusive-container {
									display: inline-block;
									font-size: 10px;
									line-height: 20px;
									font-style: normal;
									font-weight: bold;
									letter-spacing: 1px;
									text-transform: uppercase;
									padding: 0 15px;
									margin-right: 10px;
									background-color: #ffa627;
									color: #000000;
								}
								
								
								
	/* ---- FRONTPAGE ---- */	
	



	/* ---- FRONTPAGE --> ADVERTENTIES ---- */

	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> SINGLE ---- */
	#banner-ads-wrapper {
		margin-top: 40px;
	}

	#banner-ads-wrapper .banner-ads-title-container {
		width: 100%;
		max-width: 100%;
	}

	#banner-ads-wrapper img.banner-single-ad {
		min-width: 100%;
		max-width: 100%;
	}


	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> CAROUSEL ---- */
	#banner-ads-wrapper #slider,
	#banner-ads-wrapper #carousel-bounding-box,
	#banner-ads-wrapper #myCarousel,
	#banner-ads-wrapper .carousel-inner {
		position: relative;
		width: 728px;
		height: 90px;
		margin: 0 auto;
	}






	/* ---- FRONTPAGE --> ADVERTENTIES --> HORIZONTAL BANNER --> CAROUSEL ---- */
	#banner-ads-wrapper #slider,
	#banner-ads-wrapper #carousel-bounding-box,
	#banner-ads-wrapper #myCarousel,
	#banner-ads-wrapper .carousel-inner {
		width: 100%;
		height: 0;
		padding-bottom: 15.625%
	}

	#banner-ads-wrapper .carousel-inner .carousel-item img.banner-single-ad {
		height: auto;
		width: 100%;
	}	
	
	

/* ---- FRONTPAGE --> ADVERTENTIES --> SIDEBAR BANNER ---- */
#sidebar-adds-wrapper .sidebar-adds-title-container {
	max-width: inherit;
}

									#sidebar-adds-wrapper img {
										width: 100%;
										min-width: inherit;
										max-width: 300px;
										margin: 0 auto;
										margin-bottom: 30px;
									}






									/* ---- FRONTPAGE --> READ ALL LINK ---- */
									.fp-read-all-link-container .fp-read-all-link-content a {
										color: #555555;
										display: block;
										height: 50px;
										width: 100%;
										font-size: 18px;
										text-transform: uppercase;
										line-height: 50px;
										border: 1px solid#F7941D;
										border-radius: 7px;
										padding: 0 15px;
									}

									.fp-read-all-link-container .fp-read-all-link-content a:after {
										font-family: 'Fontawesome';
										content: '\f04b';
										color:#F7941D;
										margin-left: 10px;
									}

									.fp-read-all-link-container .fp-read-all-link-content a:hover,
									.fp-read-all-link-container .fp-read-all-link-content a:focus {
										text-decoration: none;
										background-color: #F7941D;
										color: #ffffff;
									}

									.fp-read-all-link-container .fp-read-all-link-content a:hover:after,
									.fp-read-all-link-container .fp-read-all-link-content a:focus:after {
										color: #ffffff;
									}





			/* ---- FRONTPAGE --> ACTUEEL ---- */
									#fp-actueel-wrapper {
										/* background-color: #f1f1f1; */
										height: auto;
										min-height: 200px;
										padding: 0 0 45px 0;
										/* margin-bottom: 30px; */
									}

									#fp-actueel-wrapper h2.fp-actueel-title {
										border-left: 7px solid #F7941D;
										padding-left: 15px;
									}

									#fp-actueel-wrapper .fp-actueel-single-item-image-container {
										height: 0;
										padding-bottom: 66.66667%; /* 62.5%; */
										background-color: #f1f1f1;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
										border-radius: 7px;
									}

									#fp-actueel-wrapper .fp-actueel-single-item-image-container.fp-main-item {
										margin-bottom: 35px;
									}

									#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container {
										position: relative;
										height: 0;
										width: 100%;
										padding-bottom: 66.66667%; /* 62.5%; */
										background: rgba( 0, 0, 0, 0.1);
										
									}

	#fp-actueel-wrapper .fp-actueel-single-item-image-container .fp-actueel-single-item-title-container h3.fp-actueel-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}


									#fp-actueel-wrapper .fp-actueel-single-item-publish-date-container {
										display: block;
										height: 50px;
										line-height: 50px;
										font-size: 12px;
										font-style: italic;
										color: #999999;
									}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container {
		margin-bottom: 15px;
	}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container .fp-actueel-single-item-date-container {
		font-size: 12px;
		line-height: 16px;
	}

	#fp-actueel-wrapper .fp-actueel-single-other-item-container h4.fp-actueel-title {
		font-size: 16px;
		margin: 0;
	}



	/* ---- FRONTPAGE --> ACHTERGROND ---- */
	#fp-background-wrapper .fp-background-single-item-image-container .fp-background-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}

									#fp-background-wrapper .fp-date-published-and-exclusive-item-container {
										font-size: 14px;
										font-style: italic;
										color: #999999;
										margin: 10px 0 15px 0;
									}

	#fp-background-wrapper .fp-background-single-other-item-container {
		margin-bottom: 15px;
	}

									#fp-background-wrapper .fp-background-single-other-item-container .fp-background-single-item-image-container {
										margin-bottom: 0;
									}

	#fp-background-wrapper .fp-background-single-other-item-container .fp-background-single-item-date-container {
		font-size: 12px;
		line-height: 16px;
	}

	#fp-background-wrapper .fp-background-single-other-item-container h4.fp-background-title {
		font-size: 16px;
		margin: 0;
	}


	/* ---- FRONTPAGE --> HIGHLIGHTED ----- */
	#fp-highlighted-wrapper .carousel-inner .carousel-item #fp-highlighted-single-item-image-wrapper { 
		position: relative;
		left: -15px;
		width: calc( 100% + 30px );
	}

	#fp-highlighted-wrapper .carousel-indicators {
		top: 95%;
		width: 100%;
	}


	/* ---- FRONTPAGE --> NIEUW! ---- */
	#fp-new-wrapper {
		position: relative;
		/* background-color: #f1f1f1; */
	}

	#fp-new-wrapper .fp-new-single-item-image-container.fp-main-item {
		margin-bottom: 15px;
	}

	#fp-new-wrapper .fp-new-single-item-title-container.mobile {
		height: auto;
		min-height: 50px;
		margin-bottom: 15px;	
	}

	#fp-new-wrapper .fp-new-single-item-title-container.mobile h4.fp-new-single-item-title {
		font-size: 16px;
		line-height: 22px;
	}

	#fp-new-wrapper .fp-new-single-item-image-container .fp-new-single-item-title-container h3.fp-new-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}


							

	#fp-new-wrapper .fp-new-single-other-item-container {
		margin-bottom: 15px;
	}

							#fp-new-wrapper .fp-new-single-other-item-container .fp-new-single-item-date-container {
								display: inline-block;
								font-size: 12px;
								line-height: 20px;
								font-style: italic;
								color: #999999;
							}

	#fp-new-wrapper .fp-new-single-other-item-container h4.fp-new-single-item-title {
		font-size: 16px;
		margin: 0;
	}

	

	/* ---- FRONTPAGE --> VIDEOS ----- */
	/* MAKE DIV SCROLLING */
	#fp-videos-wrapper .h-scrolling .scrolling {
		padding-left: 15px;
		margin-bottom: 30px;
	}

	/* VIDEO CONTENT */
	#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper{
		min-width: 47%;
	}

	/* ---- FRONTPAGE --> TRIVIA ---- */
	#fp-trivia-wrapper .fp-trivia-single-item-image-container .fp-trivia-single-item-title {
		font-size: 22px;
		line-height: 28px;
	}

	#fp-trivia-wrapper .fp-trivia-single-other-item-container {
		margin-bottom: 15px;
	}

	#fp-trivia-wrapper .fp-trivia-single-other-item-container .fp-trivia-single-item-date-container {
		line-height: 16px;
	}

	#fp-trivia-wrapper .fp-trivia-single-other-item-container h4.fp-trivia-title {
		font-size: 16px;
		/* margin: 30px; */
	}


	/* ---- FRONTPAGE --> AANBEVOLEN ---- */
	#fp-recommended-wrapper {
		position: relative;
		margin-bottom: 15px;
	}

	#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-title-container {
		height: auto;
		min-height: 75px;
	}

	#fp-recommended-wrapper #fp-recommended-single-item-wrapper .fp-recommended-single-item-title-container h4.fp-recommended-single-item-title {
		font-size: 18px;
		line-height: 24px;
	}


									




	/* ---- FRONTPAGE --> LEZERSVOORDELEN ---- */
	#fp-discounts-wrapper #fp-discounts-single-item-wrapper {
		margin-bottom: 30px;
	}

	#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-title-container {
		height: 52px;
	}

	#fp-discounts-wrapper #fp-discounts-single-item-wrapper .fp-discounts-single-item-title-container h4.fp-discounts-single-item-title {
		font-size: 16px;
		line-height: 20px;
	}


								


									




	/* ---- CATEGORIES ---- */
	#category-wrapper h1.category-title-content {
		font-size: 32px; /* 36px; */
		line-height: 36px;
		border-left: 7px solid #F7941D;
		padding-left: 15px;
		margin-bottom: 28px; /* 45px; */
	}

									#category-wrapper #category-main-item-wrapper {
										height: auto;
									}

									#category-wrapper #category-main-item-wrapper .category-main-item-image-container {
										position: relative;
										height: 0;
										padding-bottom: 66.66667%;
										background-color: #c4c4c4;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
										border-radius: 7px;
									}

									#category-wrapper #category-main-item-wrapper h3.category-main-item-title {
										position: absolute;
										font-size: 28px;
										line-height: 34px;
										color: #ffffff;
										bottom: 0;
										left: 0;
										padding: 15px 20px;
										text-shadow: 2px 2px rgba( 0, 0, 0, 0.7);
									}

									#category-wrapper .category-sub-item-image-container {
										position: relative;
										height: 0;
										padding-bottom: 66.66667%;
										background-color: #c4c4c4;
										margin-bottom: 30px;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
										border-radius: 7px;
									}


	#category-wrapper #category-sub-item-wrapper.category-sub-item {
		margin-bottom: 30px;
	}

									#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-image-container {
										margin-bottom: 0;
									}

									#category-wrapper #category-sub-item-wrapper.category-sub-item .category-sub-item-date-container {
										display: inline-block;
										font-size: 12px;
										line-height: 20px;
										font-style: italic;
										color: #999999;
									}

	#category-wrapper #category-sub-item-wrapper.category-sub-item h4.category-sub-item-title {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
		margin: 5px 0 0 0; /* 0 */
	}



	/* ---- CATEGORIES --> NIEUW ---- */
	#category-new-wrapper #category-new-sub-item-wrapper.category-new-sub-item h4.category-new-sub-item-title {
		font-size: 17px;
		padding: 5px 10px;
	}






	/* ---- CATEGORIES --> VIDEOS ---- */
	#category-videos-wrapper h1.category-videos-title-content {
		font-size: 32px; /* 36px; */
		line-height: 36px;
		border-left: 7px solid #F7941D;
		padding-left: 15px;
		margin-bottom: 28px; /* 45px; */
	}

									#category-videos-wrapper .category-videos-main-item-image-container {
										position: relative;
										height: 0;
										padding-bottom: 56.25%;
										background-size: cover;
										background-position: center;
										background-repeat: no-repeat;
									}



									/* ---- SINGLE --> PAGES ---- */
									#single-page-wrapper h1.single-page-title {
										border-left: 7px solid #F7941D; /* #F7941D; */
										padding-left: 15px;
									}

									#single-page-wrapper #single-page-content-wrapper p:first-of-type {
										font-weight: bold;
										font-size: 18px;
										color: #000000;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-container {
										padding-bottom: 45px;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content {
										display: inline-block;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content span.single-page-exclusive-devider {
										font-size: 14px;
										color: #333333;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-category-container {
										position: relative;
										display: inline-block;
										font-size: 14px;
										color: #333333;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-date-container {
										position: relative;
										display: inline-block;
										font-size: 14px;
										color: #333333;
									}

									#single-page-wrapper .single-page-exclusive-category-date-and-reading-time-content .single-page-average-reading-time-container {
										position: relative;
										display: inline-block;
										font-size: 14px;
										color: #999999;
									}

									#single-page-wrapper .single-page-average-reading-time-content span {
										position: relative;
										display: inline-block;
										font-size: 14px;
										font-style: italic;
										color: #999999;
										height: 16px;
										line-height: 16px;
										padding-left: 22px;
									}



	/* ---- SINGLE --> PREVIOUS AND NEXT LINK ---- */
	#previous-and-next-link-wrapper {
		padding: 35px 0 0 0;
	}

									#previous-and-next-link-wrapper .previous-and-next-link-container {
										position: relative;
										font-size: 14px;
										height: 50px;
										line-height: 50px;
										border-top: 1px solid #999999;
										border-bottom: 1px solid #999999;
										margin: 30px 0;
									}

									#previous-and-next-link-wrapper .previous-and-next-link-container .next-link-container {
										width: 100%;
										text-align: right;
									}

	/* ---- SINGLE --> RELATED ITEMS ---- */
	#single-page-related-items-wrapper {
		padding: 25px 0;
	}

	#single-page-related-items-wrapper .single-page-related-items-container {
		border-left: 3px solid #eaeaea;
		padding-left: 30px;
	}

	#single-page-related-items-wrapper .single-page-related-items-container h3.single-page-related-items-title {
		margin-bottom: 30px;
	}

	#single-page-related-items-wrapper .single-page-related-items-container #single-page-related-items-single-item-wrapper {
		margin-bottom: 20px;
	}
	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-image-container img {
		margin-bottom: 0;
	}

	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container {
		width: calc( 100% + 15px );
	}

	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container .single-page-category-container {
		font-size: 14px;
		line-height: 22px;
	}

	#single-page-related-items-wrapper .single-page-related-items-container .single-page-related-items-single-item-title-container h4.single-page-related-items-single-item-title-content {
		margin: 5px 0;
	}


	/* ---- SEARCH --> SEARCH RESULTS ---- */ 
	#page-search-results-wrapper h1.page-searcht-results-title-container {
		font-size: 24px;
		line-height: normal;
		padding-bottom: 20px;
		margin-bottom: 70px;
		border-bottom: 1px solid #e1dede;
	}

	#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content {
		margin-top: 7px;
	}


		
		

		/* ---- FOOTER ---- */
		#footer-wrapper div[class*='footer-position-'] {
			border-top: 1px solid #999999;
			padding: 10px 0;
		}




		/* ---- FOOTER --> SOCIALME ---- */
		#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper {
			border-top: 1px solid #999999;
			border-bottom: 1px solid #999999;
		}

		#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container {
			display: inline-block;
		}

		#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container h4 {
			margin-right: 5px;
			display: inline-block;
			line-height: 40px;
		}

		#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container .social-links {
			position: relative;
			display: flex;
			float: right;
			top: 3px;
			margin: 10px 0;
			height: 40px;
			align-items: center;
		}

		#footer-wrapper #newsletter-and-socialme-sociallinks-wrapper .newsletter-and-socialme-sociallinks-content-container .social-links a {
			margin: 0 5px;
		}
	
	
	
	/* ---- FOOTER --> COPYRIGHT ---- */
	#copyright-footer-wrapper .copyright-footer-content-container {
		text-align: center;
	}

	#copyright-footer-wrapper .copyright-footer-design-build-container {
		text-align: center;
	}



	/* ---- FORMULIER ---- */
	body .gform_wrapper input[type="submit"] {
		width: calc( 100% - 15px )!important;
	}
	
}



@media only screen
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: landscape) {
	/* ---- MAIN MENU ---- */
	#header-wrapper #header-main-menu-wrapper-desktop ul li a {
		font-size: 20px;
	}


	/* ---- FRONTPAGE --> VIDEOS ----- */
	/* MAKE DIV SCROLLING */
	#fp-videos-wrapper .h-scrolling .scrolling {
		padding-left: 30px;
		margin-bottom: 50px;
	}

	/* VIDEO CONTENT */
	#fp-videos-wrapper .h-scrolling #fp-videos-single-video-wrapper{
		min-width: 32%;
	}



	#page-search-results-wrapper h1.page-searcht-results-title-container {
		font-size: 24px;
		line-height: normal;
		padding-bottom: 20px;
		margin-bottom: 70px;
		border-bottom: 1px solid #e1dede;
	}

	#page-search-results-wrapper #page-search-results-single-result-item-wrapper .page-search-results-single-result-content-readmore-container .page-search-results-single-result-content-readmore-content {
		margin-top: 0px;
	}




	/* ---- FOOTER --> SOCIALME EN NIEUWSBRIEF ---- */
	#newsletter-and-socialme-wrapper .newsletter-and-socialme-container .newsletter-and-socialme-form-container .gform_wrapper ul.gform_fields li.gfield input[type="text"] {
		width: 300px;
	}

}

@media only screen
	and (min-width: 768px) 
	and (max-width: 1290px) {
		/* ---- TOP-MENU ---- */
		#top-header-inset-wrapper ul li a {
			font-size: 10px;
		}

		#top-header-inset-wrapper ul li:after {
			font-size: 10px;
			padding: 0 7px;
		}
 
		/* ---- MAIN MENU ---- */
		#header-wrapper #header-main-menu-wrapper-desktop ul li a {
			font-size: 15px;
			padding: 0 7px
		}

		#header-wrapper #header-main-menu-wrapper-desktop ul li.menu-search-icon a:before {
			font-size: 15px;
		}
}