/* General CSS --- General CSS --- General CSS */

@font-face {
	font-family: din-condensed;
	src: url(../fonts/din-condensed.ttf);
  
	font-weight: normal;
	font-style: normal;
}

* {
	padding: 0;
	margin: 0;
}

p {
	font-family: Arial;
	font-size: 1rem;
	line-height: 1.6;
	color: #22262d;
	padding-bottom: 1rem;
}

h1 {
	font-family: Helvetica neue;
	font-weight: lighter;
	font-size: 2em;
}

h2 {
	font-family: din-condensed;
	font-style: normal;
	font-weight: 400;
	font-size: 2em;
}

h3 {
	font-family: din-condensed;
	font-style: normal;
	font-weight: 400;
	font-size: 1.5em;
}

hr {
	width: 90%;
	margin: auto;
	background-color: #1190cb;
}

a:hover {
	opacity: 50%;
}

.wrapper {
	width: 90vw;
	max-width: 1312px;
	margin: auto;
	margin-top: 50px;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	width: 100%;
	margin-bottom: 1rem;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ah-ad {
	position: relative;
	z-index: 0;
}

.ah-ad img {
	width: 100%;
	height: unset;
}

.ah-ad:before {
	content: 'Advertentie';
	font-size: .8rem;
	color: #ffffff;
	position: absolute;
	right: .2rem;
	top: .2rem;
	z-index: 3;
	font-family: Arial;
}

.ah-ad a:hover {
	opacity: 1;
}

.google-ad {
	width: 100%;
}

.inrecipe-ad {
	border: 1px solid transparent;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
}

.inrecipe-ad:hover {
	border: 1px solid #22262d;
	box-shadow: 3px 3px 8px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.16);
	outline: none;
}

.desktop-only {
	display: none;
}

.mobile-only {
	display: block;
}


/* Header & Nav CSS --- Header & Nav CSS --- Header & Nav CSS */

.branding {
	text-align: center;
	width: 100vw;
	height: 80px;
	background-color: #1190cb;
}

.branding svg {
	fill: #ffffff;
}

.navigation {
	display: none;
}

.mobilebar {
	display: flex;
	background-color: #1190cb;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 70px;
	box-shadow: 0 -4px 8px rgb(0 0 0 / 12%), 0 0 4px rgb(0 0 0 / 16%);
	justify-content: space-evenly;
	padding: 0 16px;
	z-index: 4;
}

.mobilebar > * {
	flex-basis: 100%;
	background-color: transparent;
	border: none;
	color: #ffffff;
	cursor: pointer;
}

.mobilebar i {
	font-size: 26px;
	line-height: 1.4;
}

.mobile {
	transform: translateY(100vh);
	position: fixed;
	left: 0;
	right: 0;
	bottom: 70px;
	height: 300px;
	transition: transform 0.5s ease;
	background-color: #ffffff;
	box-shadow: 0 -4px 8px rgb(0 0 0 / 12%), 0 0 4px rgb(0 0 0 / 16%);
}

nav li a {
	color: #1190cb;
	font-family: din-condensed;
	text-transform: uppercase;
	font-size: 1.5rem;
	text-decoration: none;
}

nav {
	position: relative;
	display: block;
	margin-top: 30px;
}

nav li {
	display: block;
	margin-left: 50px;
	margin-top: 20px;
}

nav .social a {
	text-transform: none;
	margin-right: 10px;
}

.fa-youtube {
	color: #ff001b;
}

.fa-facebook-f {
	color: #4169ac;
}

.fa-instagram {
	color: #bc1888;
}

.button-link {
	background-color: grey;
	border-radius: 5px;
	width: 200px;
	text-align: center;
	margin: 20px 0;
	padding: 10px;
}

.button-link a {
	color: #ffffff;
	text-decoration: none;
}

.searchbar {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}


/* Home pagina CSS --- Home pagina CSS --- Home pagina CSS */

.welcome {
	width: 800px;
	max-width: 90%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	text-align: center;
}

/* Recepten grid CSS --- Recepten grid CSS --- Recepten grid CSS */

.recipe-grid {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: 1fr;
	place-items: center;
	width: 100%;
}

.recipe-link {
	width: 100%;
	height: 100%;
	padding: 1rem;
	text-align: left;
	background-color: #ffffff;
	cursor: pointer;
	border: 1px solid transparent;
	transition: .1s ease-in;
}

.recipe-link:hover, .recipe-link:focus {
	border: 1px solid #22262d;
	box-shadow: 3px 3px 8px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.16);
	outline: none;
}

.recipe-link h1 {
	font-size: 1.8rem;
	text-align: left;
}

.recipe-link img {
	width: 100%;
	margin: 1rem 0;
}

.paginationbuttons ul{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.paginationbuttons li{
	display: block;
	padding: 10px 20px;
}

.paginationbuttons a{
	font-family: Arial;
	cursor: pointer;
}


/* Recept pagina CSS --- Recept pagina CSS --- Recept pagina CSS */

.sidebar-flex {
	margin-bottom: 2rem;
}

.recipe-content {
	margin-top: 30px;
}

.recipe-info {
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #22262d;
}

.recipe-info h1 {
	margin-bottom: 1.5rem;
}

.share-links {
	overflow: hidden;
}

.share-links li {
	float: left;
	display: block;
	list-style: none;
	margin-right: 20px;
	margin-bottom: 10px;
}

.share-links * {
	color: #808080;
	text-decoration: none;
	font-family: Times;
}

.recipe-ingredients {
	margin-bottom: 2rem;
}

.recipe-ingredients ul li{
	list-style: none;
	font-family: Arial;
	line-height: 1.8rem;
	color: #22262d;
}

.recipe-preparation ol {
	padding-left: 20px;
}

.recipe-preparation ol li{
	font-family: Arial;
}

.downloadlink {
	background-color: #808080;
	width: 200px;
	padding: .8rem;
	margin: 20px 0;
	border-radius: 5px;
	color: #ffffff;
	text-decoration: none;
	display: block;
	font-family: Arial;
	text-align: center;
}

aside {
	margin-top: 50px;
}

aside > div {
	margin-bottom: 2rem;
}

aside h2 {
	text-align: center;
	font-size: 1.8rem;
}

.aside-block {
	background-color: #d3d3d3;
    padding: 30px;
}

.aside-block > div {
	background-color: #ffffff;
	border: 1px solid #22262d;
	padding: 1rem;
}

.aside-block > h2 {
	font-size: 1.6rem;
}

/* Contact CSS --- Contact CSS --- Contact CSS */

.contactform {
	margin-top: 30px;
}

.contactform input {
	float: none;
	display: block;
	width: 600px;
	max-width: calc(100vw - 50px);
	border: 1px solid #22262D;
	padding: 8px;
	font-size: 16px;
	margin-bottom: 24px;
}

.contactform input:focus {
	box-shadow: 3px 3px 8px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.16);
	outline: none;
	border-radius: none;
}

.contactform textarea {
	font-family: arial;
	float: none;
	display: block;
	width: 600px;
	max-width: calc(100vw - 50px);
	border: 1px solid #22262D;
	padding: 8px;
	font-size: 16px;
	margin-bottom: 24px;
}

.contactform textarea:focus {
	box-shadow: 3px 3px 8px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.16);
	outline: none;
	border-radius: none;
}

.contactform button {
	display: block;
	background-color: #FFFFFF;
	width: 100px;
	max-width: calc(100vw - 50px);
	border: 1px solid #22262D;
	padding: 8px;
	font-size: 16px;
	margin-bottom: 24px;
}

.contactform button:hover {
	box-shadow: 3px 3px 8px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.16);
	outline: none;
	border-radius: none;
}

/* Footer CSS --- Footer CSS --- Footer CSS */

footer {
	background-color: #1190cb;
	padding: 30px 0;
	margin-bottom: 70px;
}

.footerwrapper {
	max-width: 1312px;
	padding: 0 16px;
	margin: auto;
}


/* Spreadshop CSS --- Spreadshop CSS --- Spreadshop CSS */


.SprdMain * {
	font-family: Arial;
}

.SprdMain li {
	float: none;
}

.sprd-link {
    font-family: Arial;
    font-size: 14px;
    text-transform: none;
}

.SprdMain a:hover {
	opacity: 1;
}

.sprd-listpage__title {
	font-family: din-condensed;
}

.sprd-header__title {
	display: none;
}

.sprd-department-filter__openmenu:nth-child(2) {
	display: none !important;
}

.SprdMain nav {
	float: none;
}

.sprd-breadcrumb__item {
	margin: 0;
}

.sprd-breadcrumb__link {
	font-size: 14px;
    font-family: Arial;
}

.sprd-footer {
	background-color: #ffffff;
}

.sprd-info-footer__heading {
	font-weight: bold;
}


/* Desktop  --  Desktop  --  Desktop  --  Desktop  --  Desktop  --  Desktop  --  Desktop */

@media screen and (min-width: 768px) {

	/* General CSS --- General CSS --- General CSS */

	h1 {
		font-size: 3rem;
	}

	.desktop-only {
		display: block;
	}

	.mobile-only {
		display: none;
	}


	/* Header & Nav CSS --- Header & Nav CSS --- Header & Nav CSS */

	.branding {
		background-color: #ffffff;
		height: 140px;
		padding: 10px 0;
	}

	.branding svg {
		fill: #1190cb;
	}

	.navigation {
		height: 40px;
		border-bottom: 3px solid #1190cb;
		display: block;
	}

	.mobilebar {
		display: none;
	}

	.mobile {
		display: none;
	}

	nav {
		float: right;
		margin-top: 0;
	}

	nav li {
		float: left;
		margin-right: 50px;
		margin-left: 0;
		margin-top: 0;
	}

	/* Recepten grid CSS --- Recepten grid CSS --- Recepten grid CSS */

	.recipe-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}


	/* Recept pagina CSS --- Recept pagina CSS --- Recept pagina CSS */

	.sidebar-flex {
		display: flex;
	}

	.recipe-content {
		flex: 1 1 65%;
		min-width: 0;
		margin-top: 50px;
	}

	aside {
		flex: 1 1 35%;
		border-left: 2px solid #1190cb;
    	padding-left: 1rem;
    	margin-left: 2rem;
    	max-width: 400px;
	}

	.recipe-ingredients {
		flex: 1 1 35%;
		display: inline-block;
	}

	.recipe-preparation {
		flex: 1 1 65%;
		padding-left: 1rem;
		border-left: 1px solid #22262d;
	}


	/* Contact CSS --- Contact CSS --- Contact CSS */

	.contactform {
		flex: 1 1 65%;
		min-width: 0;
		margin-top: 50px;
	}


	/* Footer CSS --- Footer CSS --- Footer CSS */

	footer {
		margin-bottom: 0;
	}
	
	.footerwrapper {
		display: flex;
	}

	.footerwrapper > div {
		flex-basis: 100%;
	}
}