/**
    #Global
**/

:root {
	--main-bg-color: #fff;
	--main-txt-color: #0a2739;

	--alt-color: #272bcd;
	--alt-dark-color: #1619a5;

	--main-font-family: 'Poppins', Candara, 'Bitstream Vera Sans', 'DejaVu Sans', 'Bitstream Vera Sans', 'Trebuchet MS',
		Verdana, 'Verdana Ref', sans-serif;
	--main-font-weight: 400;

	--container-width: 1320px;
	--container-width-larger: calc(var(--container-width) + 3rem);
	--container-padding: calc((100vw - var(--container-width)) / 2);
	--container-padding-incl-gutter: calc(var(--container-padding) + 0.75rem);
	--container-padding-larger: calc((100vw - var(--container-width-larger)) / 2);
}

html {
	overflow-x: hidden;
}

body {
	position: relative;
	background-color: var(--main-bg-color);
	color: var(--main-txt-color);
	box-sizing: border-box;
	font-family: var(--main-font-family);
	font-weight: var(--main-font-weight);
	overflow-x: hidden;
}

/**
    #Header
**/

header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 50px var(--container-padding-incl-gutter);
	color: var(--main-bg-color);
	z-index: 14;
}

#header-bar {
	background-color: var(--alt-color);
}

#header-call-link {
	position: absolute;
	top: 12px;
	right: var(--container-padding-incl-gutter);
	text-shadow: 0 0 6px #000;
	font-weight: 700;
}

.shopping-cart {
	margin-left: 10px;
}

#logo {
	margin: -20px 0 -20px 30px;
	padding: 15px 15px;
	background-color: var(--main-bg-color);
	border: solid 5px var(--alt-color);
	border-radius: 5px;
}

#logo img {
	height: 100px;
}

#banner {
	display: flex;
	height: 600px;
	padding: 0.75rem;
	background-position: center;
	background-size: cover;
	justify-content: center;
	align-items: center;
}

#banner.alt {
	height: 450px;
}

#banner-title {
	color: var(--main-bg-color);
	line-height: 1;
	text-shadow: 0 0 6px #000;
	font-size: 2.25rem;
	font-weight: 700;
}

/**
    #Content
**/

#tiles-container {
	margin: -150px auto 2rem;
	width: var(--container-width-larger);
	padding: 1.5rem;
	background-color: var(--alt-dark-color);
	color: var(--main-bg-color);
}

.tile {
	display: flex;
	height: 100%;
	padding: 10px;
	background-color: var(--alt-color);
}

.tile-image {
	position: relative;
	width: 100%;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 125px;
}

.tile-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tile-text {
	display: flex;
	padding-left: 10px;
	flex-direction: column;
	justify-content: space-between;
}

#opening-times {
	position: relative;
	margin: 4rem 0 2rem;
	padding: 1.5rem;
	background-color: var(--alt-color);
	color: var(--main-bg-color);
}

#opening-times::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	background-color: var(--alt-color);
	z-index: -1;
}

#icon-opening-times {
	height: 30px;
	vertical-align: middle;
}

.opening-time {
	display: flex;
	margin: 0 -0.5rem;
	padding: 1px 0.5rem;
	justify-content: space-between;
}

.opening-time.active {
	background-color: var(--alt-dark-color);
}

/**
    #Footer
**/

footer {
	background-color: var(--alt-color);
	color: var(--main-bg-color);
}

#footer-contact {
	padding: 2rem 3rem;
	padding-left: var(--container-padding-incl-gutter);
}

#footer-contact-icon {
	margin-right: 10px;
	height: 30px;
	vertical-align: middle;
}

#footer-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 200px;
}

#footer-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/**
    #Generic
**/

/**
    #Links
**/

a,
a:hover {
	color: inherit;
	text-decoration: none;
}

p a,
p a:hover {
	color: var(--alt-color);
	text-decoration: underline;
}

.link-button {
	display: inline-block;
	margin: 0;
	padding: 4px 8px;
	background-color: var(--main-bg-color);
	color: var(--alt-color);
	border: solid 1px var(--alt-color);
	transition-duration: 0.15s;
}

.link-button:hover {
	background-color: var(--alt-color);
	color: var(--main-bg-color);
}

.link-button.alt {
	background-color: transparent;
	color: var(--main-bg-color);
	border-color: var(--main-bg-color);
}

.link-button.alt:hover {
	background-color: var(--main-bg-color);
	color: var(--alt-color);
}

/**
    #Headings
**/

h1 {
	margin-bottom: 0.25rem;
	color: var(--alt-color);
	text-transform: uppercase;
	font-size: 1.45rem;
	font-weight: 300;
}

h2 {
	margin-bottom: 0.75rem;
	font-size: 1.75rem;
	font-weight: 700;
}

h3 {
	margin-bottom: 0.75rem;
	font-size: 1.35rem;
	font-weight: 700;
}

h4 {
	font-size: 1.25rem;
	font-weight: 700;
}

/**
    #Text
**/

/**
    #Navigation
**/

#nav {
	position: relative;
	padding: 0 10px 0 0;
	text-align: right;
	z-index: 14;
}

#nav > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav > ul > li {
	display: inline-block;
}

#nav > ul > li > a {
	display: block;
	padding: 0 10px;
	line-height: 50px;
	transition-duration: 0.25s;
}

#nav > ul > li > a.active,
#nav > ul > li > a:hover {
	background-color: var(--alt-dark-color);
}

#button-nav {
	display: inline-block;
	margin: 10px 30px 10px 0;
	width: 35px;
	height: 35px;
	background-color: transparent;
	background-image: url(../assets/images/icon-menu.svg);
	background-position: center;
	background-size: cover;
	border: none;
}

@media only screen and (max-width: 1399px) {
	:root {
		--container-width: 1140px;
	}
}
@media only screen and (max-width: 1199px) {
	:root {
		--container-width: 960px;
	}

	#nav > ul > li > a {
		padding: 0 4px;
		font-size: 0.9rem;
	}

	.tile {
		display: block;
	}

	.tile-image {
		width: 100%;
		padding-bottom: 33%;
	}

	.tile-text {
		padding-top: 10px;
		padding-left: 0;
	}
}
@media only screen and (max-width: 991px) {
	:root {
		--container-width: 720px;
	}

	header {
		position: fixed;
		padding: 0;
	}

	#header-bar {
		padding: 10px 0;
	}

	#header-call-link {
		display: none;
	}

	#logo {
		margin: 0 0 0 30px;
		padding: 10px;
		border: none;
	}

	#logo img {
		height: 35px;
	}

	#nav {
		padding: 0;
		text-align: center;
	}

	#nav > ul {
		height: 0;
		overflow: hidden;
		transition-duration: 0.5s;
	}

	#nav > ul > li {
		display: list-item;
		padding: 4px 0;
	}

	#nav > ul > li > a {
		display: inline;
		padding: 0;
		line-height: normal;
		font-size: 1rem;
	}

	#nav > ul > li > a.active,
	#nav > ul > li > a:hover {
		background-color: transparent;
	}

	#banner,
	#banner.alt {
		height: 400px;
	}

	#tiles-container {
		margin-top: -100px;
	}

	#opening-times {
		margin: 2rem 0;
	}

	#opening-times::after {
		left: -50vw;
		width: 200vw;
	}
}
@media only screen and (max-width: 767px) {
	:root {
		--container-width: 540px;
	}
}
@media only screen and (max-width: 575px) {
	:root {
		--container-width: 100vw;
	}

	#banner,
	#banner.alt {
		margin-top: 65px;
		height: 250px;
	}

	#banner-title {
		font-size: 1.75rem;
	}

	#tiles-container {
		margin: 0 0 2rem;
		width: 100%;
	}
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.more-info { position: relative; float: left; margin-top: 50px; padding: 20px; width: 100%; max-width: 100%; border-radius: 20px; background: #e3e4ef; line-height: 2.0rem; }
.more-info h2 { color: #1c2ec0; }
h3 { margin-top: 30px; font-size: 1.1rem; color: #1c2ec0; border-bottom: 2px solid #1c2ec0; }

#hoek-velden input { margin: 10px 0 10px 10px; border-radius: 10px; }