@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
:root {
	--themeColor: 		 #a00000;
	--themeColorDark: 	 #191919;	
	--themeColorLight: 	 #f2f2f2;
	--themeColorSelect:	 #f2f2f2;	
	--themeColorBackground: #fff;	
	--themeColorBackgroundTint: #f2f2f2;	
	
	--themeColorGrey: 	   #bebebe;	
	--themeColorGreyLight: #dadada;	
	--themeColorLightText: #7f7f7f;
	--themeColorDarkText:  #191919;	
		
	/* -- common  -- */
	--themeColor_inputs: 	#f2f1f1;	
	--themeColor_text:   	#2e2e2e;
	--themeColor_lightText: #fff;
	
	/* -- custom colors -- */	
	--themeColor_gold:   	#b06f07;
	--themeColor_goldLight: #b16e05;
	--themeColor_red:  	 	#a00000;
}
body{
	background-color:#fff;	
	/* font-family: 'Work Sans', sans-serif; */
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color:#343434;	
}
.noscroll{
	overflow:hidden;
}
h1,h2,h3,h4{
	color:var(--themeColorDarkText);
	/* font-family: Arial; */
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	line-height: 1.03em;
	margin: 0.2em 0;
}
body .h1,
body h1{
	font-size: 58px; 
	line-height: 40px;
}
body .h2, h2{
	font-size: 18px;
	font-weight: 600;
	position:Relative;
	margin-bottom: 8px;
}
body .h3, h3{
	font-size: 30px;
	font-weight: 600;
}
body .h4, h4{
    font-size: 20px;
    font-weight: 700;
}

#winkelTitel{
	font-size: 30px;
}

.titleLine:after,
.titleBar h1:not(:empty):not(.noTitleLine):after,
h2:not(:empty):not(.noTitleLine):not(.productBrand):after{
	content:'';
	position:absolute;
    bottom: -11px;
	height: 4px;
	width:50%;
	max-width: 123px;
	left:0;
	background-color: var(--themeColor_gold);
}
.titleLine:after{
	bottom: 13px;
}

.centeredHeader:after {
    left: 50% !important;
    transform: translateX(-50%);
}
.noAfterline:after{
	display:none;
}


b ~ input, 
optgroup ~ input, strong ~ input {
	margin-top:3px;
}


@media screen and (max-width: 1024px){
	body h1{
		font-size:40px !important;
	}
	body h2{
	}
	body h3{
		font-size: 20px;
	}
	body h4{
		font-size:14px !important;
	}
}
body p{
	font-size: 15px;
	line-height: 1.7em;
}

a{
	color: #343434;
	text-decoration:none;
	cursor:pointer;
}
a:not(.underline):hover{
	text-decoration:none;
}
a.underline{
	text-decoration:underline;
}

.pointer{
	cursor:pointer;
}

form {
	margin:0;
}
::selection {
    background: #3d4f58;
    color: #fff;
    text-shadow: none;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.grecaptcha-badge{
	/* right:-300px !important; */
	display:none;
}
.hidden{
	display:none;
}
.relative{
	position:relative;
}
.fixed{
	position:fixed;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

select{
	-moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -webkit-appearance: none;	
}select::-ms-expand {
    display: none;
}
select,
textarea,
input:not([type=radio]):not([type=checkbox]){
    height: 40px;
    line-height: 1.8em;
    padding: 0 20px;
    border-width: 0;
    width: 100%;
    background-color: rgb(255 255 255 / 28%);
    border: 1px solid #ddd;
    border-radius: 4px;
}
textarea{
    padding: 10px;	
}
input[type=radio]{
    margin: 3px;	
}

input[readonly]{
	background-color: rgb(221 221 221 / 24%) !important;
}

/* -- theme colors -- */
.themeColor			{background-color:var(--themeColor);}
.themeColorText		{color:var(--themeColor); text-decoration-color:var(--themeColor);}

.themeColorDark		{background-color:var(--themeColorDark);}
.themeColorDarkText	{color:var(--themeColorDark); text-decoration-color:var(--themeColorDark);}

.themeColorLight	{background-color:var(--themeColorLight);}
.themeColorLightText{color:var(--themeColorLight); text-decoration-color:var(--themeColorLight);}

.themeColorGold		{background-color:var(--themeColor_gold);}
.themeColorGoldText {color:var(--themeColor_gold); text-decoration-color:var(--themeColor_gold);}
.themeColorGoldSvgText svg path{fill:var(--themeColor_gold);}

.themeColorSelect	{background-color:var(--themeColorSelect);}
.themeColorSelectText{color:var(--themeColorSelect); text-decoration-color:var(--themeColorSelect);}

.backgroundTint	{background-color:var(--themeColorBackgroundTint);}

.greyLight 		{background-color:var(--themeColorGreyLight);}
.greyLightText 	{color:var(--themeColorGreyLight) !important;}

.grey 			{background-color:var(--themeColorGrey);}
.greyText 		{color:var(--themeColorGrey) !important;}

.greyDark	 	{background-color:var(--themeColorDark) !important; }
.greyDarkText   {color:var(--themeColorDark) !important;}

.red	        {background-color:var(--themeColor_red) !important; }
.redText        {color:var(--themeColor_red) !important;}

.gold	        {background-color:var(--themeColor_goldLight) !important; }
.goldText       {color:var(--themeColor_goldLight) !important;}

.white			{background-color:#fff;}
.whiteText		{color:#fff !important;}

.transparent    {background-color:transparent;}

.jumbotron{
	margin-bottom:0px;
	z-index:2;
}
/* .jumbotron:not(.hasOverflow):not(.jumbo-menu):not(.jumboslider):not(.windowContact){
    overflow-x: hidden;	
} */
.jumbotron::-webkit-scrollbar {
	width: 0px;
	background-color: rgba(152, 126, 102, 0.08);
}
.jumbotron::-webkit-scrollbar-thumb {
	width: 0px;
	background-color: #7f6a51;
}

.jumbotron:not(:first-of-type){
    margin:  0px 0;	
}

.backgroundSlider {
    position: fixed !important;
    height: 250vh;
    width: 100vw;
    top: 0;
}
.backgroundSlider::before {
position: absolute;
    content: '';
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255,255,255);
    background: -moz-radial-gradient(ellipse at center, rgba(255,255,255,0.798477) 0%, rgba(255,255,255,1) 68%);
    background: -webkit-radial-gradient(ellipse at center, rgba(255,255,255,0.798477) 0%, rgba(255,255,255,1) 68%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.87) 0%, rgba(255,255,255,1) 68%);
    z-index: 1;
}
.backgroundSlider::after {
    position: absolute;
    content: '';
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1.0);
    z-index: 1 !important;
}

.bigpadding{
	padding:80px 0;
}

.nopadding{
	padding:0px;
}
body .nopadding_i{
	padding:0px !important;	
}
.nopadding_l{
	padding-left:0px;
}
.nopadding_r{
	padding-right:0px;	
}
.nomargin{
	margin:0;
}
.nobackground{
	background-color:inherit !important;
}
.container_white{
	background-color:#FFF;
}
.transbackground{
	background-color:rgba(0,0,0,0.0);
}

.small_container{
	max-width: 1280px !important;
}
.mini_container{
	max-width: 960px !important;	
}

body .htmlblok p{	
    /* font-size: 15px; */
}

.left_align{
	text-align:left;
}
.right_align{
	text-align:right;
}

.center_align{
	text-align:center;
}

.right{
	float:right;	
}
.left{
	float:left;
}
.centerFlex{
	display:flex;
	flex-direction:column;
	align-items:center;
}
.centerFlexV{
	display:flex;
	flex-direction:row;
	align-items:center;
}

a.buster {position:Absolute;top:0;left:0;width:10px;height:10px;}
a.buster img{opacity:0.01; width:10px; height:10px;}

.jumbotron p{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8em;
    color: #1c1a19;
}


.jumbotron.default{
	margin:80px 0;
}
.lightbox{
	display:none;
}
.button{display: inline-block;padding: 8px 10px;line-height: 25px;font-size: 14px;background-color: #a00000;color: #FFF;cursor: pointer;box-sizing: border-box;border-radius: 3px;font-weight: 500;text-align: center;position: relative;transition: all .2s ease-in-out;}
@media screen and (max-width: 350px){
	a.button, button.button {
		padding: 3px 10px;
	}
}

.button:not(.mini) i {
    margin-left:5px;
	transform: translateY(1px);
}

.button.small {
    padding: 5px 10px;
    margin: 9px 11px;
}

.button.mini{
    display: inline-block;
    height: 32px;
    min-width: 32px;

    font-size: 11px;
	line-height: 11px;
    text-align: center;
    
	padding: 9px 0px 0px;
    margin: 0px 7px 0;
    border-radius: 100px;	
}
.button.big {
    padding: 20px 70px;
    font-size: 15px;
    border-radius: 3px;
}

blockquote {
	display: inline-block;
    background-color: #f9f9fb;
    /* background-image: url(../images/icons/icon-quote.svg); */
    background-repeat: no-repeat;
    background-position: 30px 20px;
    padding: 44px 30px 20px;
    margin-left: 0;
    margin-right: 0;
}
blockquote p{
	font-size: 20px !important;
    font-style: italic;
    font-weight: 600 !important;
}

.background{
	position:absolute;
	z-index:0;
	height:100%;
}

body .big_container{
	max-width:1920px !important;
}

div.container.textField a{
	/* color:#6d820d; */
}
div.container.textField h4 ~ h2{
	margin-top:0;
}

div.container.info{
	text-align:center;
	padding:20px 20px;
    border-width: 2px;
    border-style: solid;
    font-size: 16px;
}

div.container.info a{
	color:white;	
	text-decoration:underline;	
}

div.imageHolder{
	position:relative;
	width:100%;
	min-height:0px;
	overflow:hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
div.imageHolder img{
	position:absolute;
	display:block;
	top:50%;
	left:50%;
	width:100%;
	height:auto;
	border-radius: 25px;
	transform: translateX(-50%) translateY(-50%);
}

div.imageHolder.vertical img{
	height:100%;
	width:auto;
}
div.imageHolder.incr img{
	transform: translateX(-50%) translateY(-50%) scale(1.01);
}


body .pageContent{
	padding-top:20px;
	padding-bottom:60px;
}


div.sideBox{
	padding:0;
	margin-bottom:20px;
	float: left;
}
div.sideBox div.sideTitle{	
    padding: 20px 20px 0px;
	font-weight:600;
	font-size:20px;
}
div.sideBox h1,
div.sideBox h2,
div.sideBox h3,
div.sideBox h4{
	margin:0 0 5px;	
}
div.sideBox div.sideContent{
	padding:0px 20px 20px;
}
div.sideBox div.sideContent table{
	width:100%;
}
div.sideBox div.sideContent table td{
	padding: 4px;
    border-bottom: 1px solid #e9e7e7;
}

div.sideBox.filter .counter {
    display: inline-block;
    float: right;
    padding: 0 5px;
}

div.sideBox div.sideContent ul{
	margin:0;
	padding:0;
}
div.topNavigator{
	padding-bottom:20px;
}
div.topText {
    max-width: 80%;
    text-align: Center;
    margin: auto;
}
div.topText p{
	text-align:center;
}

.sideContent ul{
	list-style:none;
	padding:0;
	margin:0;
}
.sideContent ul a{
	text-decoration:none; 
	width:100%;
    display: inline-block;
}
.sideContent ul li{
	min-height:50px;
	font-size:15px !important;
	padding:10px 0;
	transition: background-color .2s ease-in-out;
}
.sideContent ul a:first-of-type li{
	padding-top:0;
}

.sideContent ul a:not(:last-of-type) li{
	border-bottom: 2px solid #e1e1e1;
}

.sideContent ul li p{
	line-height:1.5em;
}
.sideContent ul li p.date,
.sideContent ul li p.title{
	width:100%;
	display:inline-block;
	font-weight:600;
	box-sizing:border-box;
}
.sideContent ul li p.date{
	color:#222a39;	
	margin-bottom:0;
	margin-top:-5px;
    font-size: 13px;
}
.sideContent ul li p.title{
	margin:0;
    color: #7f6a51;
    font-size: 15px;
}

.sideContent.snelnaar{	
    padding: 18px 30px !important;
}
.sideContent.snelnaar li{
	min-height:30px;	
}
.sideContent.snelnaar li a{	
    font-weight: bold;
    font-size: 16px;
}
.sideContent.snelnaar li i.fas{	
	float:right;
	color:#000;
}


.sideContent.snelnaar li p.endPiece{
	float:right;
	margin-top:0;
	transition: transform .2s ease-in-out;
}
.sideContent.snelnaar li:hover p.endPiece{
	transform: translateX(-5px);
}


.logoBackground{
	background-image: url(../images/logo_background.png);
	background-size:auto 100%;
	background-position:center right;
	background-repeat:no-repeat;
}

div.universal_navigator,
div.nieuws_navigator{
	text-align:center;
}

div.universal_navigator span{
    display: inline-block;
    margin-right: 3px;
    width: 40px;
    height: 40px;
    line-height: 1em;
    border: 2px solid #ddd;
    border-radius: 2px;
    text-align: center;
    font-weight: bold;
    padding: 11px 0;
	transition: background .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out;
}
div.universal_navigator span.selected,
div.universal_navigator span:hover{
	background-color: #ce0039;
    border-color: #ce0039;
    color: #fff;
}

div.loader{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:9999;
	background-color: rgba(255,255,255,0.8);
	opacity: 0.0;
	transition: opacity .1s ease-in-out;
}
div.loader img{
    position: absolute;
    /* width: 10%; */
    /* min-width: 80px; */
    /* max-width: 140px; */
    height: auto;
    top: 50%;
    left: 50%;
    width: 80px;
    transform: translateX(-50%) translateY(-50%);
}
div.loader.show{
	opacity:1.0;
}
div.rightbox {
    padding: 30px 40px;
    color: white !important;
}
div.rightbox h3{
	margin:0;
}
div.rightbox h1,
div.rightbox h2,
div.rightbox h3{	
	/* text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.19); */
}

.greenUl ul,
ul.greenUl{
	list-style: url("../images/icons/icon-check-circle.svg") !important;
	padding-left:20px !important;
}

.redUl ul,
ul.redUl{
	list-style: url("../images/icons/icon-check-red.svg") !important;
	padding-left:20px !important;
}

.redUl ul li,
ul.redUl  li,
.greenUl ul li,
ul.greenUl  li{
    padding-left: 7px !important;
    /* padding-bottom: 0px; */
    min-height: inherit;
}


ol.custom li, ul.custom li, div.textField ol li, div.textField ul li {
    font-size: 17px;
    padding: 3px 0;
}
ol.custom li span,
ul.custom li span,
div.textField ol li span,
div.textField ul li span{
	//font-size: initial;
	font-size: 16px;
    color: #1c1a19;
    display: inline-block;
    padding-bottom: 8px;
    line-height: 1.6em;
}
ol.custom li span,
div.textField ol li span{	
    vertical-align: bottom;
    padding: 11px 5px;
}

#map{
	width:100%;
	height:400px;
}

select.wrong,
textarea.wrong,
label.fileInput.wrong,
label.checkbox.wrong,
input.wrong{
	background-color: rgba(205, 0, 57, 0.06) !important;
    border-color: rgba(205, 0, 57, 0.18) !important;
}

div.viewer_error,
div.viewer_message{
    background-color: rgba(60, 79, 155, 0.43);
    padding: 15px;
    margin-bottom: 10px;
}
div.viewer_error{
	background-color:#fcb6b6;	
	color: #000;
}


label.fileInput {
    display: block;
    min-height: 55px;
    height: auto;
    float: left;
    width: 100%;
    padding: 5px;
    margin-bottom: 20px;
    border-radius: 2px;
    box-sizing: border-box;
    border: 2px solid transparent;
}
label.fileInput span{	
    width: 100%;
    line-height: 37px;
    height: 37px;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 12px;
}
label.fileInput a{	    
    padding: 0 10px;
}

@media (max-width: 800px){
	label.fileInput{		
		text-align: center;
	}
}
@media (min-width: 801px){
	label.fileInput a{	    
		float:right;
	}
}

label.fileInput input{
	display:none;
}

label.checkbox{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px 20px 7px;
    background-color: #eee;
    margin-bottom: 8px;
	cursor:pointer;
}
label.checkbox input{
    display: block;
    position: Absolute !important;
    width: 15px !important;
    height: 15px !important;
    top: 12px;
    right: 10px;
}

p.error {
    color: #99b226;
    margin: -12px 0 10px 0 !important;
    font-weight: 600;
    font-size: 15px;
}
.categorieBox {
	height: 130px;
    line-height: 100px;
    padding: 20px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
	cursor:pointer;
}
.categorieBox .catTitle{
	margin:0;
}

/* -- menu webshop -- */
.webshop_search{
	width:calc(100% - 200px);
	height: 100%;
	float:left;
	display: flex;
	align-items: center;
	flex-direction: row;
}
.webshop_search label{
	font-style: italic;
	font-size: 11px;
	font-weight: 600;
	width: 100%;
    max-width: 500px;
}
.webshop_search input{
	width: calc(100% - 60px) !important;
	max-width:500px;
	float:
	left;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.webshop_search input ~ .button{
	width: 60px;
	height: 40px;
	float:
	right;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}
.webshop_search input ~ .button i{
	line-height:23px;
}
/* -- webshop cart -- */
div.webshop_icons{
	width:200px;
	height:100%;
	float:right;		
}
div.webshop_icons i{
	font-size:25px;
	padding: 9px;
}
div.webshop_cart {
    position: relative;
    height: auto;
    transition: width .2s ease-in-out;
    z-index: 12;
    float: right;
}
div.webshop_cart div.cart_top{
    width: auto;
    min-width: 80px;
    line-height: 20px;
    padding: 5px 0px;
    transition: width .2s ease-in-out, background .2s ease-in-out, color .2s ease-in-out;
    cursor: pointer;
    color: var(--themeColorDarkText);
    overflow:hidden;
}
div.webshop_cart div.cart_top .text{
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: block;
	position: absolute;
	top: 0;
	left: 32px;
	background-color: var(--themeColorBackgroundTint);
	text-align: center;
    padding: 0 6.5px;
	z-index: 0;
}
div.webshop_cart div.cart_top span.price{
	display:none;
}
div.webshop_cart div.cart_top i.fas.cartSwitch{
	display:none;
    transition: transform .2s ease-in-out;
}
div.webshop_cart div.cart_top i.fas{
	margin: 2px 9px 0 0;
	position: relative;
	color:var(--themeColor_red);
	z-index: 1;
}
div.webshop_cart div.cart_top i.fas div.cart_num{
	position: absolute;
    top: -10px;
    right: -11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #3c4f9b;
    color: #fff;
    font-family: monospace;
    font-size: 10px;
    text-align: center;
    padding: 4px 4px;
	transition: background .2s ease-in-out;
}
div.webshop_cart div.cart_content{	
	width: 80vw;
    max-width: 430px;
    position: absolute;
    padding: 20px;
    right: 0;
    top: 100%;
    transition: width .2s ease-in-out, background .2s ease-in-out;
    border-radius: 0px 0px 15px 15px;
}
div.webshop_cart div.cart_content table{	
	width:100%;
}
div.webshop_cart div.cart_content table td {
    padding: 5px 5px;
}
div.webshop_cart div.cart_content table tr.total td{
	border-top: 1px solid #ddd;
	font-weight:bold;
}	
div.webshop_cart div.cart_content table td.price{	
	text-align:right;
    padding-left: 12px;
}
div.webshop_cart div.cart_content * {
    font-size: 14px;
    line-height: 1.7em;
}
div.webshop_cart div.cart_content .cart img{	
	max-width:40px;
}
div.webshop_cart a.button {
    width: 100%;
    max-width: 150px;
    margin-top: 10px;
}

div.webshop_cart:not(.shown) div.cart_content{	
	display:none;
	background-color: #fff;
}
div.webshop_cart.shown div.cart_content {
    animation-name: sweepScale;
    animation-duration: .3s;
    background-color: #fff;
    box-shadow: 0px 5px 7px 0 rgb(0 0 0 / 16%);
    z-index: 1;
}
div.webshop_cart.shown div.cart_top{
	background-color: #fff;
    color: #7f6a51;
}
div.webshop_cart.shown div.cart_top i.fas.cartSwitch{
	transform:rotateZ(180deg);
}

.navigator {
    margin: 20px 0;
    padding: 0px 15px;
    z-index: 0;
    position: relative;
}

@keyframes sweepScale {
    0%   {transform: scale(0.8);}
    25%  {transform: scale(1.01);}
    50%  {transform: scale(1.08);}
    100% {transform: scale(1.0);}
}
.messageHolder{
	position:relative;
	width:100%;	
    float: left;
}
.messageHolder:empty{
	display:none;
}

.success, .warning, .attention, .information {
    width: 100%;
    z-index: 10;
    padding: 10px 10px 10px 33px;
    margin-bottom: 10px;
    color: #555555;
}
.success {
    background: #EAF7D9 url(../image/success.png) 10px center no-repeat;
}
.warning {
    background: #FFD1D1 url(../image/warning.png) 10px center no-repeat;
}
.attention {
    background: #FFF5CC url(../image/attention.png) 10px center no-repeat;
}
.information {
    background: #f7f3ec;
}
.success .close, .warning .close, .attention .close, .information .close {
    float: right;
    padding-top: 4px;
    padding-right: 4px;
    cursor: pointer;
}

/* -- cookie bar -- */
.cookieBar {
    position: fixed;
    z-index: 70;
    width: 100vw;
    bottom: 0;
    left: 0;
    background-color: var(--themeColorDark);
}
.cookieBar .row{
	display: flex;
	justify-content: space-evenly;
	align-content: center;
	align-items: center;
	flex-direction: column;
}
.cookieBar .col:last-of-type{
	text-align:right;
}
.cookieBar p{
    color: white;
}
.cookieBar a.button{margin-left:5px;}
.cookieBar a:not(.button){
    color: white;
    text-decoration: underline;
}
.cookieBar a.button.rejectCookie {
    background-color: #303030;
    margin-bottom: 20px;
}
.cookieBar .cookieList{
	list-style:none;
	padding:0;
	display:flex;
	gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.cookieBar .cookieList li{
    display: flex;
    gap: 3px;
    align-items: center;
}
.cookieBar .cookieList li label{
    color: #bdbdbd;
}
.cookieBar .cookieList li input{
    background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 769px){
	.cookieBar .row {
	    display: flex;
	    justify-content: space-evenly;
	    align-content: center;
	}

	.cookieBar .cookieList {
	    display: flex;
	    gap: 10px;
	    flex-wrap: wrap;
		margin-bottom:20px;
	}
	.cookieBar a.button {
	    margin-bottom: 20px;
	}
}

/* -- custom checkbox -- */
/* The container */
.customCheckbox {
	display: block;
	position: relative;
	padding-left: 24px;
	margin-bottom: 0;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.customCheckbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	left:0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.0em;
	width: 1.0em;
	background-color: transparent;
	border: 1px solid #73604a;
	border-radius: 4px;
	transform: translateY(3px);
}

.customCheckbox.radio .checkmark{
	border-radius:50%;
}
.customCheckbox input[disabled] ~ .checkmark {
	background-color: rgba(205, 0, 57, 0.13);
}

/* On mouse-over, add a grey background color */
.customCheckbox:hover input ~ .checkmark {
	background-color: hsl(0deg 100% 31% / 15%);
}

/* When the checkbox is checked, add a blue background */
.customCheckbox input:checked ~ .checkmark {
    background-color: #f0f1f7;
    box-sizing: border-box;
    border: 1px solid #191919;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.customCheckbox input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.customCheckbox .checkmark:after {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #a00000;
	border-radius: 2px;
}

body.zakelijk .particulier_only,
body:not(.zakelijk) .zakelijk_only{
	display:none;
}


/* -- floating icon -- */
div.floatingIcon{
	position:fixed;
	bottom: 1.1vw;
	right: 1.1vw;
	font-size: 54px;
	filter: drop-shadow(0 0 4px rgba(0,0,0,0.2));
	z-index:10;
	color:white;
	width: 55px;
	height: 55px;
	transition: all .2s ease-in-out;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	align-items: center;
}
div.floatingIcon.whatsapp svg{
    width: 100%;
    height: 100%;
}
div.floatingIcon:hover{
	transform:translateY(-2px) translateX(-2px) scale(1.03);
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));	
}
.socialLink{
	width: max-content;
	height: max-content;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5em;
}
.socialLink figure{
	
    height: 1.0em;
    width: 1.0em;
    display: flex;
    align-items: center;
    justify-content: center;
}


.screen-reader-only {
	clip: rect(0 0 0 0);
	border: 0;
	-webkit-clip-path: inset(100%);
	clip-path: inset(100%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

@media (min-width: 1200px){
	*::-webkit-scrollbar {
		width: 7px;
		background-color: rgb(242 242 242);
	}
	*::-webkit-scrollbar-thumb {
		width: 7px;
		background-color: #a00000;
	}
}
@media (min-width: 2000px){
	.small_container{
		max-width:1400px !important;
	}
	.jumbotron .container{
		max-width:100%;
	}
}
@media (max-width: 1500px){
	div.menuMax div.fslide img{
		min-height:100%;
		height:100% !important;
		width:auto !important;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);		
		-moz-transform: translateX(-50%) translateY(-50%);		
		-ms-transform: translateX(-50%) translateY(-50%);		
		-o-transform: translateX(-50%) translateY(-50%);		
		transform: translateX(-50%) translateY(-50%);		
	}
}

@media (max-width: 1200px){
	.not_tablet{
		display:none;
	}
	.tablet_nomargin{
		margin:0 !important;
	}
	.tablet_nopadding{
		padding:0;
	}
	.tablet_container_customWidth{
		width: 670px;
	}	
	.jumbotron .container {
		max-width: 100% !important;
	}
	.container {
		max-width: 100%;
	}
	.tablet_fullwidth{
		width: 100%;
	}
	.small_container{
		max-width: 100% !important;
	}
	
	.infoBoxes div.col {
		min-height: 362px;
	}
	
	div.webshop_cart div.cart_top font.text span{
		display:none;
	}	
	div.webshop_cart div.cart_top i.fas.cartSwitch{
		/* display:inline-block; */
		margin-right:-5px;
	}
}
@media (min-width: 1200px){
	.not_tablet_nopadding{
		padding:0;
	}	
	.only_tablet{
		display:none;
	}		
}

@media (max-width: 1080px){	

}


@media (min-width: 1024px){
	body .mobile_only{
		display:none;
	}
}
@media (min-width: 1024px){
	.not_mobile_nopadding{
		padding:0;
	}
	.not_mobile_nomargin{
		margin:0;
	}	
	.only_mobile{
		display:none;
	}
	.mobile_only_i{
		display:none !important;
	}
}
@media (max-width: 1023px){

	.not_mobile{
		display:none;
	}
	.not_mobile_i{
		display:none !important;
	}
	.mobile_nomargin{
		margin:0;
	}
	.mobile_nopadding{
		padding:0;
	}

	.mobile_fullwidth{
		width:100%;
	}
	
	input.callme,
	a.callme{
		width:100% !important;
		margin-bottom:3px;
	}
	div.callme{
		padding:0 !important;
	}
	div.callBackHolder {
		height: inherit !important;
	}
	div.callBackHolder img{
		top:0;
		left:0;
		transform:none;
		position:relative;
	}
	div.callBackHolder div.imageHolder{
		height:inherit;
	}
	div.titleBar.mobile_padding{
		padding: 10px 33px 0;
	}
	div.titleBar a{
		float:left;
		margin-top:0;
	}
	div.titleBar h1, div.titleBar h2, div.titleBar h3 {
		line-height: 31px;
		position: relative;
	}
	
	.infoBoxes div.col {
		padding: 50px 30px;
	}
	div.callBack {
		padding: 54px 32px;
	}
	div.liniaal{
		background-size: 29px;
		padding-left: 30px;
	}
	div.liniaal div.refCol{
		padding-left:0 !important;
		padding-right:0 !important;
	}
	div.referentieHeader {
		height: 110px !important;
	}
	div.webshop_cart div.cart_content {
		width: 100vw;
	}
	div.webshop_cart div.cart_top {
		padding: 0;
	}
		
	body div.sideBox div.sideContent{
		padding: 20px 0;
	}
	div.webshop_icons {
		height: 43px;
	}
	div.webshop_icons a{
		display:block;
		height:max-content;
		float: left;
	}
	
	body div.webshop_cart {
		position: relative;
		right: 0px;
		border-top-right-radius: 0;
		height: 43px;
	}
	.webshop_search {
		width: 100%;
	}
	.sidevak .webshop_search{
		height:50px;		
		position: relative;
		padding:0 15px;
	}
	
	div.universal_navigator,
	div.nieuws_navigator{
		text-align:center;
		display: none;
	}	
/* 	
}
@media (max-width: 769px){	 */
	div.background{
		display:none;
	}
	div.webshop_icons{
		width:auto;
		margin-top: 10px;	
	}
	body .webshop_cart{
		right: 0px !important;
		top: 0 !important;
		z-index: 12;
	}
	div.webshop_cart div.cart_top{
		padding: 0;
		height: 40px;
		min-width: 60px;
		margin: 0;
	}
	div.webshop_cart div.cart_top i.fas{
		margin-right:2px;
	}
	body .webshop_cart .cart_content {
		right: 10px !important;
		width: calc(100vw - 20px) !important;
	}
	div.webshop_cart div.cart_content {
	    position: fixed;
	    top: 60px;
	}
}