@font-face {
	font-family: Avenir;
	src: url("../fonts/Avenir.otf") format("opentype");
	}

@font-face {
	font-family: Avenir;
	font-weight: bold;
	src: url("../fonts/Avenir-Bold.otf") format("opentype");
	}

* {
	margin: 0;
	padding: 0;
	}

body {
	background: #fff;
	font-family: "Avenir";
	font-size: 16px;
	}

#audio {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #eee;
	z-index: 90;
	overflow: scroll;
	bottom: 0; left: -100%;
	}

#data {
	width: 100%;
	height: 50px;
	position: fixed;
	background: #fff;
	box-shadow: 0px -20px 40px rgba(0, 0, 0, 0.1);
	z-index: 99;
	bottom: 0; left: 0;
	}

#timer {
	width: 0%;
	height: 4px;
	position: absolute;
	background: #5ad8fa;
	top: -4px; left: 0;
	}

#data p {
	position: relative;
	float: left;
	margin-top: 17px;
	margin-left: 5%;
	}

.demoP {
	display: none;
	}

#header {
	width: 100%;
	height: 70px;
	position: fixed;
	background: #fff;
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
	z-index: 99;
	top: 0; left: 0;
	}

#logo {
	height: 30px;
	position: absolute;
	top: 20px; left: 4%;
	}

#hamburger {
	width: 32px;
	position: absolute;
	top: 26.5px; right: 4%;
	}

#hamburger .line {
	width: 100%;
	height: 1px;
	background: #525252;
	display: block;
	margin-bottom: 7px;
	}

#hamburger .line.three {
	margin-bottom: 0;
	}

#receipt {
	width: 92%;
	position: relative;
	display: inline-block;
	margin-top: 100px;
	left: 4%;
	}

.image {
	width: 130px;
	height: 130px;
	background-color: #5ad8fa;
	background-image: url(../img/recept-foto.png);
	background-size: cover !important;
	background-position: 32% center !important;
	border-radius: 12px;
	box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.15);
	display: inline-block;
	float: left;
	}

.info {
	font-size: 14px;
	color: #111;
	display: inline-block;
	float: left;
	margin-top: 10px;
	margin-left: 20px;
	}

.info .personen {
	height: 20px;
	background: url(https://binnenstebuiten.kro-ncrv.nl/sites/all/themes/bb/images/person.svg);
	background-size: 20px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-top: 5px;
	padding-left: 30px;
	margin-bottom: 10px;
	}

.info .ingredients {
	height: 20px;
	background: url(https://binnenstebuiten.kro-ncrv.nl/sites/all/themes/bb/images/ingredients.svg);
	background-size: 20px;
	background-position: left center;
	background-repeat: no-repeat;
	list-style: none;
	padding-top: 5px;
	padding-left: 30px;
	}

.info .ingredients li {
	display: block;
	margin-bottom: 6px;
	}

.info .ingredients li:before {
	content: "\2022";
	color: #5ad8fa;
	margin-right: 12px;
	}

h1 {
	width: 100%;
	font-family: "Avenir";
	font-size: 34px;
	font-weight: 700;
	color: #111;
	line-height: 130%;
	display: inline-block;
	margin-top: 30px;
	}

h1:after {
	content: ".";
	color: #5ad8fa;
	}

p.description {
	font-family: "Avenir";
	font-size: 11px;
	font-weight: 400;
	color: #a5a5a5;
	line-height: 180%;
	display: inline-block;
	margin-top: 12px;
	}

#start {
	width: 100%;
	height: 50px;
	background-image: url(../img/waves.png);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	margin-top: 80px;
	padding-bottom: 120px;
	margin-bottom: 120px;
	}

#circle {
	width: 180px;
	height: 180px;
	background-color: #5ad8fa;
	background-image: url(../img/mic.png);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 99px;
	box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	margin: 0 auto;
	}

#circle span {
	width: 100%;
	position: absolute;
	font-size: 12px;
	font-weight: 700;
	color: #111;
	text-align: center;
	bottom: -40px;
	}

#verhaal {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #fff;
	display: none;
	overflow-y: scroll;
	counter-reset: counter;
	top: 70px; left: 0;
	}

#verhaal .text {
	max-width: 90%;
	position: relative;
	background: #5ad8fa;
	font-size: 15px;
	color: #fff;
	line-height: 140%;
	border-radius: 4px;
	box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
	display: table;
	padding: 12px 18px;
	margin: 30px 5%;

	-webkit-transition: all .4s ease;
	}

#verhaal .text:last-child {
	background: #0cf;
	margin-bottom: 100px;
	}

#verhaal .text:before {
	width: 15px;
	height: 11px;
	position: absolute;
	background: #5ad8fa;
	font-size: 10px;
	line-height: 140%;
	text-align: center;
	border-radius: 99px;
	border: 1px solid #fff;
	content: counter(counter);
	counter-increment: counter;
	padding: 2px 0;
	left: -8px;
	}

#verhaal .text:last-child:before {
	background: #0cf;
	}