html, body {
	height: 100%;
	line-height:1.6;
	font-family:Helvetica,verdana,sans-serif;
	background-color:#F1F1F1;
	margin:0px;
	margin-top:0px;
	font-size:14px;
	font-weight:normal;	
	}

#navigation {
	background-color: #ffffff;	/* Optional background color */
	visibility:visible;
	border-width:0px;
	width:auto;
	border-radius:0;
	margin:0px;
	color:#000000;
	padding:10px;
	text-align: center;
	text-transform: uppercase;
	font-family:'Verdana';
	display:block;
}

.navlink {
	display: inline-block;	/* Inline-block for horizontal layout (default) */
	padding: 1px 5px;
}

#menuopenclose_icon, #basket_icon {
	/*width: 200px;
	height: 100px; */
	padding:20px;
	}
	
#menuopenclose_icon {
	text-align:left;
}

#basket_icon {
	text-align:right; 
}

#logo {
	flex: 1;
	text-align:center;
	object-fit: contain;
	margin-top:10px;
	}

#menuopenclose {visibility:hidden;height:0;width:0;}
#basket {visibility:hidden;height:0;width:0;}
#subtop { display: flex;}

a {font-weight:bold; text-decoration:none; color:#000000;}
a:hover {font-weight:bold; text-decoration:underline;}
a:visited {font-weight:bold; text-decoration:none; color:#000000;}

a.navigation {
font-family: "Verdana", sans-serif; font-weight:700;
}

#main {
	/*width:50%;
	min-width:470px;*/
	max-width:800px;
	min-height:100%;
	background-color:#ffffff;
	margin:auto;
	padding:0px;
	border-width:0px;
	border-style:solid;
	border-color:#c7c1c1;
	box-shadow: 1px 4px 10px rgba(0,0,0,.4);
	overflow:hidden;
}

/*
#top {
border-width:0px;
border-style:solid;
border-color:#c0c0c0;
background-color:#ffffff;
width:auto;
border-radius:0px;
margin-left:5px;
margin-right:5px;
font-family:Helvetica;
font-size:30px;
font-weight:bold;
color:#ffffff;
padding:0px;
text-align:center;
position:relative;
height:181px;
}
*/
/* .navigation_desktop_element {
border-width:0px;
border-style:solid;
border-color:#c0c0c0;
background-color:#ffffff;
width:auto;
border-radius:0;
margin:auto;
color:#FFFFFF;
padding:10px;
margin-top:0px;
height:100%;
text-transform: uppercase;
font-family:'Roboto Condensed';
font-size:16px;
display:inline-block;
} */

#content {
	border-width:0px;
	border-style:solid;
	border-color:#c0c0c0;
	background-color:#ffffff;
	width:auto;
	border-radius:0;
	margin:auto;
	color:#000000;
	padding:0px;
	margin-top:0px;
	min-height:100%;
	clear: both;
	}

#introduction {
	width:auto;
	padding:20px;
	border-width:0px;
	border-style:solid;
	/* overflow: hidden; */
	}

#contact_box {
	width:auto;
	padding:15px;
	margin-left:20px;
	margin-bottom:15px;
	float: right;
	border-width:1px;
	border-style:solid;
	border-color:#d7d7d7;
	background-color:#FFEED7;
	max-width:40%;
	}

#categories {
	padding: 7px;
	width:auto;
	float:right;
	display: flex;
	flex-wrap:wrap;
	}

.cat_box {
	border-width: 1px;
	border-style: solid;
	border-color: #d7d7d7;
	background-color: #f1f1f1;
	position: relative; /* Set the position of the .cat_box to relative */
	flex-basis: calc(33.333% - 54px);
	min-width: 170px; /* Eksempel: Hver div er mindst 300px bred */
    flex-grow: 1; /* Tillader div'en at vokse og udfylde ledig plads */
    flex-shrink: 0; /* Tillader div'en at skrumpe */
    margin: 10px; /* Mellemrum mellem rækkerne */
    padding: 10px;
    box-sizing: border-box;
	}

.bottom_left {
	position: absolute; /* Set the position of the .bottom_left to absolute */
	bottom: 0; /* Position it at the bottom */
	left: 0; /* Position it at the left */
	width: 50%; /* Set the width to 50% */
	height: 20px; /* Set the height to 20px */
	background-color: #ffffff; /* Set the background color to white */
	}

.bottom_right {
	position: absolute; /* Set the position of the .bottom_right to absolute */
	bottom: 0; /* Position it at the bottom */
	right: 0; /* Position it at the right */
	width: 50%; /* Set the width to 50% */
	height: 20px; /* Set the height to 20px */
	background-color: #ffffff; /* Set the background color to white */
	}

.cat_header {
	font-size:20px;
	font-weight:bold;
	}

.item_container {
	display: flex; /* Make the container a flex container */
	flex-wrap: wrap; /* Allow the columns to wrap to a new line when the container is too narrow */
	margin:auto;
	/* width:600px; */
	}

.item_column {
	flex: 1; /* Each column should take up an equal amount of space */
	margin: 1px; /* Add some margin to create some space between the columns */
	/* height: 200px; /* Set a fixed height for the columns */ 
	/* background-color: #cfcfcf;	Add some background color to the columns */
	white-space: nowrap; /* Alt på 1 linje */
	}


#overlay {
	position: fixed;
	margin:auto;
	top: 0;
	left: 0;
	height: 100%; /* Make the div 100% height */ 
	width: 100%; /* Make the div 100% width */
	background-color: rgba(210, 210, 210, 0.75); /* Set the background color with an alpha value of 0.5 */
	z-index: 1; /* Set the z-index to 1 to ensure the div appears above other elements */
	}
		
#infobox {
	position: absolute;
	top: 50%;
	margin:auto;
	text-align:center;
	width: 100%; /* Make the div 100% width	*/
	background-color: rgba(255, 255, 255, 1); /* Set the background color with an alpha value of 1 */
	z-index: 2; /* Set the z-index to 1 to ensure the div appears above other elements */
	padding-top: 30px;	
	padding-bottom: 30px;	
	height:72px;
	}
		
header {
	font-family: "Verdana", "sans-serif";
	font-weight:700; 
	font-size:20px;
	font-weight:bold;
	}

.price {
	display: inline-block;
	}
	
#cookie_consent
	{ transform: scale(1.5);
	padding:15px;
	}
	
/**************************************************************************
MOBILE
**************************************************************************/

@media only screen and (max-width: 768px) {	/* Adjust breakpoint as needed */
	#navigation {
	display: none;
	 position: absolute;
	flex-direction: column;
	align-items: center;
	flex-direction: column;
	align-items: center;
	font-size:25px;
	z-index:999;
	height:100%;
	width:100%;
	opacity:95%;
	/*visibility:hidden;
	height:0;*/
	}

	.navlink {
	display: block;	/* Block for vertical layout on mobile */
	width: 100%; /* Full width for each link on mobile */
	padding: 5px 10px;
	}
	
#menuopenclose {visibility:visible;width:50px; height:50px;}
#basket {visibility:visible;height:50px;width:50px;float:right;}
}