/*! project-name v0.0.1 | (c) 2020 YOUR NAME | MIT License | http://link-to-your-git-repo.com */

/**
 * @section Base Styles
 */

/* line 5, src/sass/components/_base.scss */
body {
	background-color: #fff;
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
	padding: 0;
}

@media print {

	/* line 5, src/sass/components/_base.scss */
	body {
		background-color: #fff;
	}
}

/* line 18, src/sass/components/_base.scss */
.print-container {
	display: none;
}

@media screen {

	/* line 18, src/sass/components/_base.scss */
	.print-container {
		display: none;
	}
}

@media print {

	/* line 18, src/sass/components/_base.scss */
	.print-container {
		display: block;
		margin: 150px auto 0;
		position: relative;
		width: 1200px;
	}
}

@media print {

	/* line 33, src/sass/components/_base.scss */
	.print-container__logo {
		bottom: 50px;
		position: absolute;
		right: 0;
		z-index: 9;
	}
}

/* line 42, src/sass/components/_base.scss */
.recipes-wrapper {
	box-sizing: border-box;
	margin-bottom: 250px;
	padding: 120px 0 15px;
	position: relative;
}

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

	/* line 42, src/sass/components/_base.scss */
	.recipes-wrapper {
		margin-bottom: 200px;
	}
}

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

	/* line 42, src/sass/components/_base.scss */
	.recipes-wrapper {
		margin-bottom: 300px;
	}
}

@media print {

	/* line 42, src/sass/components/_base.scss */
	.recipes-wrapper {
		display: none;
	}
}

/* line 62, src/sass/components/_base.scss */
.recipes-intro {
	color: #222;
	font-size: 14px;
	padding: 0 15px;
}

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

	/* line 62, src/sass/components/_base.scss */
	.recipes-intro {
		font-size: 18px;
		margin: 0 auto 2em;
		max-width: 600px;
	}
}

/* line 77, src/sass/components/_base.scss */
.recipes-inner {
	height: 100%;
	margin: 0 0 0 -15px;
	width: 100vw;
}

/* line 1, src/sass/components/_recipe.scss */
.recipe-list {
	list-style-type: none;
	margin: 0 auto;
	overflow: visible;
	padding-left: 0;
	position: relative;
	width: 324px;
}

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

	/* line 1, src/sass/components/_recipe.scss */
	.recipe-list {
		width: 464px;
	}
}

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

	/* line 1, src/sass/components/_recipe.scss */
	.recipe-list {
		width: 630px;
	}
}

/* line 18, src/sass/components/_recipe.scss */
.recipe {
	background-color: #fff;
	border: 1px solid #888;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	box-shadow: 8px 8px 8px 3px rgba(0, 0, 0, 75%);
	padding: 7px 10px;
	position: absolute;
	top: 135px;
	z-index: 5;
}

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

	/* line 18, src/sass/components/_recipe.scss */
	.recipe {
		top: 180px;
	}
}

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

	/* line 18, src/sass/components/_recipe.scss */
	.recipe {
		top: 280px;
	}
}

@media print {

	/* line 18, src/sass/components/_recipe.scss */
	.recipe {
		border: 1px solid #ccc;
		display: block;
		margin: 0 auto;
		padding-bottom: 100px;
		position: relative;
		width: 1200px;
	}
}

/* line 49, src/sass/components/_recipe.scss */
.recipe::before,
.recipe::after {
	clear: both;
	content: "";
	display: table;
}

/* line 56, src/sass/components/_recipe.scss */
.recipe.opening {
	animation-duration: 2s;
	animation-name: open-recipe;
}

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

	/* line 56, src/sass/components/_recipe.scss */
	.recipe.opening {
		animation-name: open-recipe600;
	}
}

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

	/* line 56, src/sass/components/_recipe.scss */
	.recipe.opening {
		animation-name: open-recipe768;
	}
}

/* line 69, src/sass/components/_recipe.scss */
.recipe.open {
	animation-play-state: paused;
	top: -30px;
	transform: scale(1.15);
	z-index: 8;
}

@media print {

	/* line 69, src/sass/components/_recipe.scss */
	.recipe.open {
		transform: none;
	}
}

/* line 80, src/sass/components/_recipe.scss */
.recipe.closing {
	animation-duration: 2s;
	animation-name: close-recipe;
}

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

	/* line 80, src/sass/components/_recipe.scss */
	.recipe.closing {
		animation-name: close-recipe600;
	}
}

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

	/* line 80, src/sass/components/_recipe.scss */
	.recipe.closing {
		animation-name: close-recipe768;
	}
}

@keyframes open-recipe {

	0% {
		top: 135px;
		transform: scale(1);
		z-index: 5;
	}

	50% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	51% {
		z-index: 8;
	}

	100% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}
}

@keyframes open-recipe {

	0% {
		top: 135px;
		transform: scale(1);
		z-index: 5;
	}

	50% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	51% {
		z-index: 8;
	}

	100% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}
}

@keyframes open-recipe600 {

	0% {
		top: 180px;
		transform: scale(1);
		z-index: 5;
	}

	50% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	51% {
		z-index: 8;
	}

	100% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}
}

@keyframes open-recipe600 {

	0% {
		top: 180px;
		transform: scale(1);
		z-index: 5;
	}

	50% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	51% {
		z-index: 8;
	}

	100% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}
}

@keyframes open-recipe768 {

	0% {
		top: 280px;
		transform: scale(1);
		z-index: 5;
	}

	50% {
		top: -220px;
		transform: scale(1);
		z-index: 5;
	}

	51% {
		z-index: 8;
	}

	100% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}
}

@keyframes open-recipe768 {

	0% {
		top: 280px;
		transform: scale(1);
		z-index: 5;
	}

	50% {
		top: -220px;
		transform: scale(1);
		z-index: 5;
	}

	51% {
		z-index: 8;
	}

	100% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}
}

@keyframes close-recipe {

	0% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}

	50% {
		z-index: 8;
	}

	51% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	100% {
		top: 135px;
		transform: scale(1);
		z-index: 5;
	}
}

@keyframes close-recipe {

	0% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}

	50% {
		z-index: 8;
	}

	51% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	100% {
		top: 135px;
		transform: scale(1);
		z-index: 5;
	}
}

@keyframes close-recipe600 {

	0% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}

	50% {
		z-index: 8;
	}

	51% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	100% {
		top: 180px;
		transform: scale(1);
		z-index: 5;
	}
}

@keyframes close-recipe600 {

	0% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}

	50% {
		z-index: 8;
	}

	51% {
		top: -150px;
		transform: scale(1);
		z-index: 5;
	}

	100% {
		top: 180px;
		transform: scale(1);
		z-index: 5;
	}
}

@keyframes close-recipe768 {

	0% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}

	50% {
		z-index: 8;
	}

	51% {
		top: -220px;
		transform: scale(1);
		z-index: 5;
	}

	100% {
		top: 280px;
		transform: scale(1);
		z-index: 5;
	}
}

@keyframes close-recipe768 {

	0% {
		top: -30px;
		transform: scale(1.15);
		z-index: 8;
	}

	50% {
		z-index: 8;
	}

	51% {
		top: -220px;
		transform: scale(1);
		z-index: 5;
	}

	100% {
		top: 280px;
		transform: scale(1);
		z-index: 5;
	}
}

/* line 237, src/sass/components/_recipe.scss */
.recipe-subhead {
	clear: both;
	color: #3d4457;
	font-family: "Bilbo Swash Caps", cursive;
	font-size: 17px;
	margin: 0;
}

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

	/* line 237, src/sass/components/_recipe.scss */
	.recipe-subhead {
		font-size: 24px;
	}
}

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

	/* line 237, src/sass/components/_recipe.scss */
	.recipe-subhead {
		font-size: 30px;
	}
}

@media print {

	/* line 237, src/sass/components/_recipe.scss */
	.recipe-subhead {
		font-size: 48px;
	}
}

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

	/* line 242, src/sass/components/_recipe.scss */
	.recipe__directions .recipe-subhead {
		margin-bottom: 5px;
	}
}

@media print {

	/* line 242, src/sass/components/_recipe.scss */
	.recipe__directions .recipe-subhead {
		margin-bottom: 20px;
	}
}

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

	/* line 252, src/sass/components/_recipe.scss */
	.recipe__left .recipe-subhead {
		margin-bottom: 10px;
	}
}

/* line 259, src/sass/components/_recipe.scss */
.row0 .recipe__tab {
	height: 14px;
	top: -23px;
}

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

	/* line 259, src/sass/components/_recipe.scss */
	.row0 .recipe__tab {
		height: 18px;
		top: -27px;
	}
}

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

	/* line 259, src/sass/components/_recipe.scss */
	.row0 .recipe__tab {
		height: 24px;
		top: -39px;
	}
}

/* line 274, src/sass/components/_recipe.scss */
.row1 .recipe__tab {
	height: 14px;
	top: -43px;
}

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

	/* line 274, src/sass/components/_recipe.scss */
	.row1 .recipe__tab {
		height: 36px;
		top: -47px;
	}
}

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

	/* line 274, src/sass/components/_recipe.scss */
	.row1 .recipe__tab {
		height: 42px;
		top: -59px;
	}
}

/* line 289, src/sass/components/_recipe.scss */
.row2 .recipe__tab {
	height: 14px;
	top: -63px;
}

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

	/* line 289, src/sass/components/_recipe.scss */
	.row2 .recipe__tab {
		height: 36px;
		top: -67px;
	}
}

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

	/* line 289, src/sass/components/_recipe.scss */
	.row2 .recipe__tab {
		height: 42px;
		top: -79px;
	}
}

.recipe__tab {
	background-color: #eee;
	background-position: left 3px center;
	background-repeat: no-repeat;
	background-size: 17px;
	border: 1px solid #888;
	border-bottom: 1px solid #ccc;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	box-shadow: -5px -2px 2px 0 rgba(0, 0, 0, 50%);
	box-sizing: content-box;
	color: #3d4457;
	cursor: pointer;
	font-size: 10px;
	left: auto;
	line-height: 8px;
	padding: 8px 15px 0;
	position: absolute;
	right: 5px;
	z-index: 9;
}

/* line 328, src/sass/components/_recipe.scss */
.open .recipe__tab {
	box-shadow: none;
}

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

	/* line 304, src/sass/components/_recipe.scss */
	.recipe__tab {
		background-size: 22px;
		font-size: 12px;
		padding: 8px 18px 0;
	}

	/* line 339, src/sass/components/_recipe.scss */
	.open .recipe__tab,
	.opening .recipe__tab,
	.closing .recipe__tab {
		top: -26px;
	}
}

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

	/* line 304, src/sass/components/_recipe.scss */
	.recipe__tab {
		background-position: left 6px center;
		background-size: 26px;
		font-size: 14px;
		padding: 14px 20px 0;
	}

	/* line 352, src/sass/components/_recipe.scss */
	.open .recipe__tab,
	.opening .recipe__tab,
	.closing .recipe__tab {
		top: -38px;
	}
}

@media print {

	/* line 304, src/sass/components/_recipe.scss */
	.recipe__tab {
		display: none;
	}
}

/* line 363, src/sass/components/_recipe.scss */
.active .recipe__tab,
.open .recipe__tab,
.opening .recipe__tab,
.closing .recipe__tab {
	border-bottom: 1px solid #fff;
}

/* line 370, src/sass/components/_recipe.scss */
.tab0 .recipe__tab {
	left: auto;
	right: 0;
}

/* line 375, src/sass/components/_recipe.scss */
.tab1 .recipe__tab {
	right: 20px;
}

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

	/* line 375, src/sass/components/_recipe.scss */
	.tab1 .recipe__tab {
		right: 50px;
	}
}

/* line 382, src/sass/components/_recipe.scss */
.tab2 .recipe__tab {
	right: 40px;
}

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

	/* line 382, src/sass/components/_recipe.scss */
	.tab2 .recipe__tab {
		right: 100px;
	}
}

/* line 389, src/sass/components/_recipe.scss */
.tab3 .recipe__tab {
	right: 60px;
}

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

	/* line 389, src/sass/components/_recipe.scss */
	.tab3 .recipe__tab {
		right: 150px;
	}
}

/* line 396, src/sass/components/_recipe.scss */
.tab4 .recipe__tab {
	right: 80px;
}

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

	/* line 396, src/sass/components/_recipe.scss */
	.tab4 .recipe__tab {
		right: 200px;
	}
}

/* line 403, src/sass/components/_recipe.scss */
.tab5 .recipe__tab {
	right: 100px;
}

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

	/* line 403, src/sass/components/_recipe.scss */
	.tab5 .recipe__tab {
		right: 250px;
	}
}

/* line 410, src/sass/components/_recipe.scss */
.tab6 .recipe__tab {
	right: 120px;
}

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

	/* line 410, src/sass/components/_recipe.scss */
	.tab6 .recipe__tab {
		right: 300px;
	}
}

/* line 417, src/sass/components/_recipe.scss */
.tab7 .recipe__tab {
	right: 140px;
}

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

	/* line 417, src/sass/components/_recipe.scss */
	.tab7 .recipe__tab {
		right: 350px;
	}
}

/* line 424, src/sass/components/_recipe.scss */
.tab8 .recipe__tab {
	right: 160px;
}

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

	/* line 424, src/sass/components/_recipe.scss */
	.tab8 .recipe__tab {
		right: 400px;
	}
}

/* line 431, src/sass/components/_recipe.scss */
.tab9 .recipe__tab {
	right: 180px;
}

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

	/* line 431, src/sass/components/_recipe.scss */
	.tab9 .recipe__tab {
		right: 450px;
	}
}

/* line 439, src/sass/components/_recipe.scss */
.recipe__left {
	box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	position: relative;
	width: 34%;
}

@media print {

	/* line 439, src/sass/components/_recipe.scss */
	.recipe__left {
		padding-left: 20px;
	}
}

/* line 450, src/sass/components/_recipe.scss */
.recipe__right {
	box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	padding-left: 10px;
	padding-top: 7px;
	position: relative;
	width: 66%;
}

@media print {

	/* line 450, src/sass/components/_recipe.scss */
	.recipe__right {
		padding-left: 60px;
		padding-top: 40px;
	}
}

/* line 465, src/sass/components/_recipe.scss */
img.recipe__portrait {
	border: 2px solid #3c4356;
	box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	margin: 0 0 10px;
	padding: 0;
	width: 100%;
}

@media print {

	/* line 465, src/sass/components/_recipe.scss */
	img.recipe__portrait {
		opacity: 0;
	}
}

/* line 478, src/sass/components/_recipe.scss */
.recipe__ingredients {
	list-style-type: none;
	padding-left: 0;
}

/* line 482, src/sass/components/_recipe.scss */
.recipe__ingredients li {
	border-bottom: 1px solid #3d4457;
	color: #777;
	font-family: Kalam, cursive;
	font-size: 10px;
	line-height: 1.25em;
}

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

	/* line 482, src/sass/components/_recipe.scss */
	.recipe__ingredients li {
		font-size: 12px;
	}
}

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

	/* line 482, src/sass/components/_recipe.scss */
	.recipe__ingredients li {
		font-size: 17px;
	}
}

@media print {

	/* line 482, src/sass/components/_recipe.scss */
	.recipe__ingredients li {
		font-size: 32px;
	}
}

/* line 488, src/sass/components/_recipe.scss */
.recipe__name {
	color: #3d4457;
	font-family: "Bilbo Swash Caps", cursive;
	font-size: 19px;
	margin: 0 0 10px -20px;
	text-align: center;
}

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

	/* line 488, src/sass/components/_recipe.scss */
	.recipe__name {
		font-size: 24px;
	}
}

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

	/* line 488, src/sass/components/_recipe.scss */
	.recipe__name {
		font-size: 34px;
	}
}

@media print {

	/* line 488, src/sass/components/_recipe.scss */
	.recipe__name {
		font-size: 68px;
		margin-bottom: 40px;
	}
}

/* line 492, src/sass/components/_recipe.scss */
.recipe__details {
	margin-bottom: 10px;
}

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

	/* line 492, src/sass/components/_recipe.scss */
	.recipe__details {
		margin-bottom: 20px;
	}
}

@media print {

	/* line 492, src/sass/components/_recipe.scss */
	.recipe__details {
		margin-bottom: 40px;
	}
}

/* line 503, src/sass/components/_recipe.scss */
.recipe__details::before,
.recipe__details::after {
	clear: both;
	content: "";
	display: table;
}

/* line 511, src/sass/components/_recipe.scss */
.recipe__directions {
	color: #777;
	font-family: Kalam, cursive;
	font-size: 10px;
	line-height: 1.25em;
	position: relative;
}

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

	/* line 511, src/sass/components/_recipe.scss */
	.recipe__directions {
		font-size: 12px;
	}
}

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

	/* line 511, src/sass/components/_recipe.scss */
	.recipe__directions {
		font-size: 17px;
	}
}

@media print {

	/* line 511, src/sass/components/_recipe.scss */
	.recipe__directions {
		font-size: 32px;
	}
}

/* line 519, src/sass/components/_recipe.scss */
.recipe__directions p {
	margin: 0 0 10px;
}

@media print {

	/* line 519, src/sass/components/_recipe.scss */
	.recipe__directions p {
		line-height: 1.5em;
	}
}

/* line 528, src/sass/components/_recipe.scss */
.recipe__servings {
	margin-right: 10px;
}

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

	/* line 528, src/sass/components/_recipe.scss */
	.recipe__servings {
		margin-right: 25px;
	}
}

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

	/* line 528, src/sass/components/_recipe.scss */
	.recipe__servings {
		margin-right: 40px;
	}
}

@media print {

	/* line 528, src/sass/components/_recipe.scss */
	.recipe__servings {
		margin-right: 80px;
	}
}

/* line 543, src/sass/components/_recipe.scss */
.recipe__servings p {
	text-align: center;
	width: 20px;
}

@media print {

	/* line 543, src/sass/components/_recipe.scss */
	.recipe__servings p {
		width: 80px;
	}
}

/* line 553, src/sass/components/_recipe.scss */
.recipe__servings,
.recipe__time {
	color: #777;
	display: block;
	float: left;
	font-family: Kalam, cursive;
	font-size: 10px;
	line-height: 1.25em;
	line-height: 1em;
}

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

	/* line 553, src/sass/components/_recipe.scss */
	.recipe__servings,
	.recipe__time {
		font-size: 12px;
	}
}

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

	/* line 553, src/sass/components/_recipe.scss */
	.recipe__servings,
	.recipe__time {
		font-size: 17px;
	}
}

@media print {

	/* line 553, src/sass/components/_recipe.scss */
	.recipe__servings,
	.recipe__time {
		font-size: 32px;
	}
}

/* line 560, src/sass/components/_recipe.scss */
.recipe__servings p,
.recipe__time p {
	border-bottom: 1px solid #3d4457;
	display: inline-block;
	float: left;
	margin: 0;
	padding-top: 4px;
}

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

	/* line 560, src/sass/components/_recipe.scss */
	.recipe__servings p,
	.recipe__time p {
		padding-top: 6px;
	}
}

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

	/* line 560, src/sass/components/_recipe.scss */
	.recipe__servings p,
	.recipe__time p {
		padding-top: 8px;
	}
}

@media print {

	/* line 560, src/sass/components/_recipe.scss */
	.recipe__servings p,
	.recipe__time p {
		padding-top: 16px;
	}
}

/* line 580, src/sass/components/_recipe.scss */
.recipe__servings .recipe-subhead,
.recipe__time .recipe-subhead {
	float: left;
	line-height: 1em;
	padding-right: 5px;
}

/* line 587, src/sass/components/_recipe.scss */
.recipe__decor-left {
	display: block;
	margin: 20px auto;
	width: 80%;
}

@media print {

	/* line 587, src/sass/components/_recipe.scss */
	.recipe__decor-left {
		height: 280px;
		left: 60px;
		position: absolute;
		top: 20px;
		width: auto;
	}
}

/* line 601, src/sass/components/_recipe.scss */
.recipe__decor-right {
	display: none;
}

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

	/* line 601, src/sass/components/_recipe.scss */
	.recipe__decor-right {
		display: block;
		height: auto;
		position: absolute;
		right: 0;
		top: 0;
		width: 40px;
	}
}

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

	/* line 601, src/sass/components/_recipe.scss */
	.recipe__decor-right {
		width: 50px;
	}
}

/* line 618, src/sass/components/_recipe.scss */
.printBtn {
	background: url("/interactive/2020/03/recipes/images/print.png") no-repeat left 5px center;
	background-size: 25px;
	border: none;
	color: #777;
	cursor: pointer;
	font-family: Kalam, cursive;
	font-size: 10px;
	height: 30px;
	line-height: 1.25em;
	outline: none;
	overflow: hidden;
	padding: 5px 5px 5px 35px;
	position: absolute;
	right: 0;
	text-indent: -9999px;
	top: -8px;
}

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

	/* line 618, src/sass/components/_recipe.scss */
	.printBtn {
		font-size: 12px;
	}
}

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

	/* line 618, src/sass/components/_recipe.scss */
	.printBtn {
		font-size: 17px;
	}
}

@media print {

	/* line 618, src/sass/components/_recipe.scss */
	.printBtn {
		font-size: 32px;
	}
}

@media print {

	/* line 618, src/sass/components/_recipe.scss */
	.printBtn {
		display: none;
	}
}

/* line 1, src/sass/components/_recipe-box.scss */
.recipe-box {
	background: url("/interactive/2020/03/recipes/images/box-full-mobile.png") no-repeat bottom center;
	background-size: contain;
	height: 342px;
	margin: 150px auto 70px;
	position: relative;
	width: 350px;
}

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

	/* line 1, src/sass/components/_recipe-box.scss */
	.recipe-box {
		height: 489px;
		width: 500px;
	}
}

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

	/* line 1, src/sass/components/_recipe-box.scss */
	.recipe-box {
		height: 685px;
		width: 700px;
	}
}

/* line 20, src/sass/components/_recipe-box.scss */
.recipe-box__foreground {
	background: url("/interactive/2020/03/recipes/images/box-front.png") no-repeat bottom center;
	background-size: contain;
	height: 173px;
	position: absolute;
	top: 171px;
	width: 350px;
	z-index: 6;
}

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

	/* line 20, src/sass/components/_recipe-box.scss */
	.recipe-box__foreground {
		height: 246px;
		margin-left: 1px;
		top: 240px;
		width: 499px;
	}
}

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

	/* line 20, src/sass/components/_recipe-box.scss */
	.recipe-box__foreground {
		height: 345px;
		margin-left: 1px;
		top: 338px;
		width: 699px;
	}
}

/* line 44, src/sass/components/_recipe-box.scss */
.recipe-box__color-block {
	background-color: #fff;
	bottom: -250px;
	height: 350px;
	position: absolute;
	width: 100%;
	z-index: 5;
}

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

	/* line 44, src/sass/components/_recipe-box.scss */
	.recipe-box__color-block {
		bottom: -320px;
		height: 420px;
	}
}

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

	/* line 44, src/sass/components/_recipe-box.scss */
	.recipe-box__color-block {
		bottom: -520px;
		height: 620px;
	}
}

/* line 63, src/sass/components/_recipe-box.scss */
.recipe-box__food {
	background: url("/interactive/2020/03/recipes/images/countertop.png") no-repeat bottom center;
	background-size: cover;
	bottom: 0;
	height: 189px;
	left: calc(50% - 175px);
	position: absolute;
	width: 350px;
	z-index: 7;
}

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

	/* line 63, src/sass/components/_recipe-box.scss */
	.recipe-box__food {
		bottom: -48px;
		height: 270px;
		left: calc(50% - 250px);
		width: 500px;
	}
}

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

	/* line 63, src/sass/components/_recipe-box.scss */
	.recipe-box__food {
		bottom: -20px;
		height: 367px;
		left: calc(50% - 400px);
		width: 679px;
	}
}

/* line 88, src/sass/components/_recipe-box.scss */
ul.recipe-menu {
	display: grid;
	grid-gap: 2%;
	grid-template-columns: 32% 32% 32%;
	margin: 0 auto;
	max-width: 1100px;
	padding: 0 10px;
}

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

	/* line 88, src/sass/components/_recipe-box.scss */
	ul.recipe-menu {
		grid-gap: 3.5%;
		grid-template-columns: 17% 17% 18% 17% 17%;
		padding: 0 40px;
	}
}

/* line 102, src/sass/components/_recipe-box.scss */
ul.recipe-menu li {
	background-color: #eee;
	border-radius: 5px;
	box-shadow: 3px 3px 3px 0 #969696;
	box-shadow: 3px 3px 3px 0 #969696;
	cursor: pointer;
	font-family: Kalam, sans-serif;
	font-size: 0.8rem;
	line-height: 1rem;
	list-style-type: none;
	padding: 0.5rem;
	text-decoration: none;
}

/* line 116, src/sass/components/_recipe-box.scss */
ul.recipe-menu li:hover {
	background-color: #3d4457;
	color: #eee;
}

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

	/* line 102, src/sass/components/_recipe-box.scss */
	ul.recipe-menu li {
		font-size: 1rem;
		line-height: 1.2rem;
	}
}

/* line 129, src/sass/components/_recipe-box.scss */
.recipes-headline {
	color: #222;
	font-family: TrimPoster-Slender, trim-poster, sans-serif;
	font-size: 34px;
	line-height: 34px;
	padding: 0 15px;
	text-align: center;
	text-transform: uppercase;
}

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

	/* line 129, src/sass/components/_recipe-box.scss */
	.recipes-headline {
		font-size: 60px;
		line-height: 60px;
		margin: 0 auto 40px;
		max-width: 800px;
	}
}

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

	/* line 129, src/sass/components/_recipe-box.scss */
	.recipes-headline {
		font-size: 64px;
		line-height: 64px;
	}
}

/* line 151, src/sass/components/_recipe-box.scss */
.wufoo-form {
	background-color: white;
	margin: 0 auto;
	max-width: 900px;
	position: relative;
	z-index: 99;
}
