/* Sommige styling is overbodig, meeste styling staat nu per bestand. dit houd het overzichtelijker. */
body {
	line-height: 1.2;
	min-height: 100vh;
	position: relative;
	color: #070707;
	font-family: 'Open Sans', sans-serif !important;
	//font-family: 'Source Sans Pro', sans-serif;
	font-weight: 500 !important;
	font-size: 18px;
	background-color: #e2d8c3;
}

body.no-scroll{
	overflow-y: hidden;
}

.active{
	color: #b38a4b !important;
}

.grid_item {
	aspect-ratio: 1 / 1; 
	width: 100%;
	height: 100%
	margin: 0; 
}

.slider {
	position: relative;
	width: 100%;
}

.container {
	width: 100%;
	height: auto;
	padding: 50px 5%;
	min-height: 50dvh;
}

.home_div {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.small_line {
	width: 60px;
	margin: auto;
	border-bottom: 5px solid white;
}

.small_line_gold {
	border-bottom: 5px solid #a1853e;
}

.small_line_black {
	float: left;
	width: 30px;
	margin-right: auto;
	border-bottom: 6px solid #070707;
}

.small_line_black2 {
	float: right;
	width: 30px;
	margin-right: auto;
	border-bottom: 6px solid #070707;
}

.home_div_span {
	float: left;
	width: 100%;
	margin-top: 50px;
	text-align: center;
}

.home_div_span img {
	width: 100%;
	height: auto;
}

.brown_bg_block {
	background-color: #e2d8c3;
}
.grey_bg_block {
	background-color: #ececec;
}

.contact {
	float: left;
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

.contact input, .contact textarea {
	width: 290px;
	padding: 8px;
	margin-bottom: 10px;
	border-radius: 0;
	border: 1px solid #070707;
	color: #070707;
	background-color: #e2d8c3;
	font-size: 14px;
	text-align: center;
	-webkit-appearance: none;
}

.contact select {
	width: 310px;
	padding: 8px;
	border-radius: 0;
	border: 1px solid #070707;
	color: #070707;
	background-color: #e2d8c3 !important;
	font-size: 14px;
	background: url(/images/website/arrow_icon_white.png) no-repeat right #ffffff;
	-webkit-appearance: none;
}

.contact textarea {
	height: 80px;
}

.white_line {
	float: left;
	width: 100%;
	height: 2px;
	background-color: white;
}

/* Cookies */
#cookie_disclaimer {
	position: fixed;
	bottom: 0;
	width: 100%;
	color: white;
	text-align: center;
	background-color: #a1853e;
	box-shadow: 0px -4px 18px -6px rgba(0,0,0,0.75);
	z-index: 999;
	font-size: 18px;
	padding: 20px 5%;
}

.cookie_container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
}

.cookie_content {
	flex: 1 1 100px;
	text-align: left;
	line-height: 1.4;
}

.cookie_button {
	display: flex;
	justify-content: flex-end;
}

.cookie_button .button {
	width: 125px;
	min-width: 125px;
	height: 40px;
	border: 1px solid white;
	transition: 0.3s all;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cookie_button .button:hover {
	background-color: white;
	color: var(--gold);
}

.cookie_url {
	font-size: 12px;
	color: white;
	text-decoration: underline;
}

@media screen and (max-width: 500px) {
	#cookie_disclaimer {
		padding: 15px 5% 25px;
	}

	.cookie_container {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie_button {
		justify-content: flex-start;
	}
}

/* Other */

.tooltip {
	max-width: 200px;
	display:none;
	position:absolute;
	border:1px solid #333;
	background-color:#171717;
	border-radius:5px;
	padding:10px;
	color:#fff;
	font-size: 10px !important;
}

.bottom_message {
	bottom: 0;
	display: block;
	height: 50px;
	width: 100%;
	position: fixed;
	background-color: rgba(63,63,63,1);
	clear: both;
	opacity:0.8;
	filter:alpha(opacity=80);
	text-align: center;
	color: white;
	font-size: 20px;
	padding-top: 20px;
	z-index: 0;
	display:none;
}

@media only screen and (max-width: 1200px) {	
	body{
		-webkit-text-size-adjust: none;
	}
}

@media only screen and (max-width: 959px) {		
	.home_div_span {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

@media only screen and (max-width: 767px) {	
	.home_div img {
		max-width: 100%;
		height: auto;
	}
	
	h2 {
		font-size: 40px;
		line-height: 45px;
	}
	
	h3 {
		font-size: 16px;
	}
}

@media only screen and (max-width: 479px) {
	h3 {
		font-size: 24px;
	}
	
	.cookie_content {
		width: 60%;
	}
	
	.cookie_button {
		width: 30%;
	}
}