/*
	Copyright :: www.jwsdesign.nl - 2025
	
*/


/* Base ________________________________________________________________________ Base*/

* {
	margin: 0;
	padding: 0;
 	font-family: "lalezarregular",Arial, Verdana, sans-serif;
	outline: none;
}

html, body {
	margin: 0px;
	height: 100%;
}

body {
	font-size:12px;
	line-height:15px;
	/* background:url(../images/bg_filler1.png); */
	/* background-color: #498A1A; */
	background-color: #F4F4F4;
	background-repeat: repeat-x;
	text-align: center;
}

/* HEADER __________________________________________________________ */

#header	{
	position: fixed;
	height: 90px;
	top: 0;
	z-index: 99;
	display: table;
	width: 100%;
	padding-bottom: 0px;
	background-color: #E2E2E2;
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	padding: 5px;
	
}

#header_container {
	display: flex;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	height: 100%;
	align-items: center;
	  	background-image: url("../img_layout/header_background1.png");
		background-size: contain;
  		background-repeat: no-repeat;
  		background-position-x: 0px;
  		background-position-y: 0px;

}

#header_logo {
	display: block;
	float: left;
	font-size: 28px;
    margin-left: 10px;
}

#header_content {
	display: flex;
    flex-basis: max-content;
    flex-grow: 1;
}

#header_icons_1 {
	display: block;
	float: right;
	width: 120px;
    margin-right: 10px;
}

	#header_icons_1 i{
		font-size: 40px;
		color: #333;
	}

	#header_basket {
		display: block;
		height: 40px;
		float: left;
		
	}
	
	#header_basket img {
		height: 100%;
	}
	
	#header_basket .circle_basket_counter {
		display: block;
		position: relative;
		border-radius: 50%;
		width: 16px;
		height: 16px;
		padding: 3px;
		background-color: white;
		color: #707070;
		text-align: center;
		font-size: 16px;
		line-height: 20px;
		float: right;
		margin-top: -4px;
		margin-left: -12px;
		margin-right: -6px;
		z-index: 5;
	}	

	
	
	
