/*! project-name v0.0.1 | (c) 2019 YOUR NAME | MIT License | http://link-to-your-git-repo.com */
/**
 * @section Base Styles
 */
/* line 5, src/sass/components/_base.scss */
body {
  background-color: #3D4457;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* line 18, src/sass/components/_base.scss */
section.article-footer-recirc.nu__section-reverse {
  position: relative;
  z-index: 6;
}

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

@media screen {
  /* line 23, src/sass/components/_base.scss */
  .print-container {
    display: none;
  }
}

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

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

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

@media screen and (min-width: 768px) {
  /* line 47, src/sass/components/_base.scss */
  .recipes-wrapper {
    margin-bottom: 200px;
  }
}

@media screen and (min-width: 1200px) {
  /* line 47, src/sass/components/_base.scss */
  .recipes-wrapper {
    margin-bottom: 400px;
  }
}

@media print {
  /* line 47, src/sass/components/_base.scss */
  .recipes-wrapper {
    display: none;
  }
}

/* line 67, src/sass/components/_base.scss */
.recipes-intro {
  font-family: Lato-Regular;
  font-size: 14px;
  color: #FFFFFF;
  padding: 0 15px;
  line-height: 1.5em;
}

@media screen and (min-width: 768px) {
  /* line 67, src/sass/components/_base.scss */
  .recipes-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
  }
}

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

@media screen and (min-width: 768px) {
  /* line 82, src/sass/components/_base.scss */
  .recipes-headline {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 60px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 82, src/sass/components/_base.scss */
  .recipes-headline {
    font-size: 64px;
    line-height: 64px;
  }
}

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

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

@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 {
  z-index: 5;
  position: absolute;
  top: 135px;
  background-color: #fff;
  padding: 7px 10px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

@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 {
    position: relative;
    display: block;
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
    border: 1px solid #ccc;
  }
}

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

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

@media screen and (min-width: 600px) {
  /* line 51, src/sass/components/_recipe.scss */
  .recipe.opening {
    -webkit-animation-name: openRecipe600;
            animation-name: openRecipe600;
  }
}

@media screen and (min-width: 768px) {
  /* line 51, src/sass/components/_recipe.scss */
  .recipe.opening {
    -webkit-animation-name: openRecipe768;
            animation-name: openRecipe768;
  }
}

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

@media print {
  /* line 64, src/sass/components/_recipe.scss */
  .recipe.open {
    -webkit-transform: none;
            transform: none;
  }
}

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

@media screen and (min-width: 600px) {
  /* line 75, src/sass/components/_recipe.scss */
  .recipe.closing {
    -webkit-animation-name: closeRecipe600;
            animation-name: closeRecipe600;
  }
}

@media screen and (min-width: 768px) {
  /* line 75, src/sass/components/_recipe.scss */
  .recipe.closing {
    -webkit-animation-name: closeRecipe768;
            animation-name: closeRecipe768;
  }
}

@-webkit-keyframes openRecipe {
  0% {
    z-index: 5;
    top: 135px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
  50% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  51% {
    z-index: 8;
  }
  100% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes openRecipe {
  0% {
    z-index: 5;
    top: 135px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
  50% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  51% {
    z-index: 8;
  }
  100% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@-webkit-keyframes openRecipe600 {
  0% {
    z-index: 5;
    top: 180px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
  50% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  51% {
    z-index: 8;
  }
  100% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes openRecipe600 {
  0% {
    z-index: 5;
    top: 180px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
  50% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  51% {
    z-index: 8;
  }
  100% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@-webkit-keyframes openRecipe768 {
  0% {
    z-index: 5;
    top: 280px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
  50% {
    z-index: 5;
    top: -220px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  51% {
    z-index: 8;
  }
  100% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes openRecipe768 {
  0% {
    z-index: 5;
    top: 280px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
  50% {
    z-index: 5;
    top: -220px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  51% {
    z-index: 8;
  }
  100% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@-webkit-keyframes closeRecipe {
  0% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    z-index: 8;
  }
  51% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    z-index: 5;
    top: 135px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
}

@keyframes closeRecipe {
  0% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    z-index: 8;
  }
  51% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    z-index: 5;
    top: 135px;
    -webkit-transform: scale(1);
            transform: scale(1);
    @media screen and (min-width: 600px) {
      top: 180px;
    }
  }
}

@-webkit-keyframes closeRecipe600 {
  0% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    z-index: 8;
  }
  51% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    z-index: 5;
    top: 180px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes closeRecipe600 {
  0% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    z-index: 8;
  }
  51% {
    z-index: 5;
    top: -150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    z-index: 5;
    top: 180px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes closeRecipe768 {
  0% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    z-index: 8;
  }
  51% {
    z-index: 5;
    top: -220px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    z-index: 5;
    top: 280px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes closeRecipe768 {
  0% {
    z-index: 8;
    top: -30px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    z-index: 8;
  }
  51% {
    z-index: 5;
    top: -220px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    z-index: 5;
    top: 280px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

@media screen and (min-width: 600px) {
  /* line 232, src/sass/components/_recipe.scss */
  .recipe-subhead {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  /* line 232, src/sass/components/_recipe.scss */
  .recipe-subhead {
    font-size: 30px;
  }
}

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

@media screen and (min-width: 600px) {
  /* line 237, src/sass/components/_recipe.scss */
  .recipe__directions .recipe-subhead {
    margin-bottom: 5px;
  }
}

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

@media screen and (min-width: 768px) {
  /* line 247, src/sass/components/_recipe.scss */
  .recipe__left .recipe-subhead {
    margin-bottom: 10px;
  }
}

/* line 254, src/sass/components/_recipe.scss */
.recipe__tab {
  position: absolute;
  z-index: 9;
  top: -23px;
  right: 5px;
  left: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 14px;
  padding: 8px 6px 0 22px;
  border-bottom: 1px solid #ccc;
  font-family: Lato-Regular;
  font-size: 10px;
  line-height: 8px;
  color: #3D4457;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
  background-image: url("/interactive/2019/12/recipes/images/pumpkin-tab.png");
  background-repeat: no-repeat;
  background-position: left 3px center;
  background-color: #fff;
  background-size: 17px;
  -webkit-box-shadow: -2px -3px 3px rgba(0, 0, 0, 0.5);
          box-shadow: -2px -3px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 600px) {
  /* line 254, src/sass/components/_recipe.scss */
  .recipe__tab {
    top: -27px;
    font-size: 12px;
    height: 18px;
    background-size: 22px;
    padding: 8px 10px 0 28px;
  }
  /* line 285, src/sass/components/_recipe.scss */
  .open .recipe__tab,
  .opening .recipe__tab,
  .closing .recipe__tab {
    top: -26px;
  }
}

@media screen and (min-width: 768px) {
  /* line 254, src/sass/components/_recipe.scss */
  .recipe__tab {
    top: -39px;
    font-size: 14px;
    height: 24px;
    background-size: 26px;
    padding: 14px 14px 0 36px;
    background-position: left 6px center;
  }
  /* line 300, src/sass/components/_recipe.scss */
  .open .recipe__tab,
  .opening .recipe__tab,
  .closing .recipe__tab {
    top: -38px;
  }
}

@media print {
  /* line 254, src/sass/components/_recipe.scss */
  .recipe__tab {
    display: none;
  }
}

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

/* line 318, src/sass/components/_recipe.scss */
.champurrado .recipe__tab {
  right: 10px;
  left: auto;
  background-image: url("/interactive/2019/12/recipes/images/champurrado-tab.png");
}

/* line 324, src/sass/components/_recipe.scss */
.cookies .recipe__tab {
  right: 40px;
  background-image: url("/interactive/2019/12/recipes/images/cookies-tab.png");
}

@media screen and (min-width: 600px) {
  /* line 324, src/sass/components/_recipe.scss */
  .cookies .recipe__tab {
    right: 55px;
  }
}

@media screen and (min-width: 768px) {
  /* line 324, src/sass/components/_recipe.scss */
  .cookies .recipe__tab {
    right: 80px;
  }
}

/* line 337, src/sass/components/_recipe.scss */
.curried-cashews .recipe__tab {
  right: 75px;
  background-image: url("/interactive/2019/12/recipes/images/cashews-tab.png");
}

@media screen and (min-width: 600px) {
  /* line 337, src/sass/components/_recipe.scss */
  .curried-cashews .recipe__tab {
    right: 105px;
  }
}

@media screen and (min-width: 768px) {
  /* line 337, src/sass/components/_recipe.scss */
  .curried-cashews .recipe__tab {
    right: 145px;
  }
}

/* line 350, src/sass/components/_recipe.scss */
.fried-rice .recipe__tab {
  right: 135px;
  background-image: url("/interactive/2019/12/recipes/images/fried-rice-tab.png");
}

@media screen and (min-width: 600px) {
  /* line 350, src/sass/components/_recipe.scss */
  .fried-rice .recipe__tab {
    right: 200px;
  }
}

@media screen and (min-width: 768px) {
  /* line 350, src/sass/components/_recipe.scss */
  .fried-rice .recipe__tab {
    right: 265px;
  }
}

/* line 363, src/sass/components/_recipe.scss */
.meat-pie .recipe__tab {
  right: 145px;
  background-image: url("/interactive/2019/12/recipes/images/meat-pie-tab.png");
}

@media screen and (min-width: 600px) {
  /* line 363, src/sass/components/_recipe.scss */
  .meat-pie .recipe__tab {
    right: 225px;
  }
}

@media screen and (min-width: 768px) {
  /* line 363, src/sass/components/_recipe.scss */
  .meat-pie .recipe__tab {
    right: 305px;
  }
}

/* line 376, src/sass/components/_recipe.scss */
.jollof-rice .recipe__tab {
  right: 205px;
  background-image: url("/interactive/2019/12/recipes/images/jollof-rice-tab.png");
}

@media screen and (min-width: 600px) {
  /* line 376, src/sass/components/_recipe.scss */
  .jollof-rice .recipe__tab {
    right: 310px;
  }
}

@media screen and (min-width: 768px) {
  /* line 376, src/sass/components/_recipe.scss */
  .jollof-rice .recipe__tab {
    right: 425px;
  }
}

/* line 389, src/sass/components/_recipe.scss */
.shrimp-scampi .recipe__tab {
  right: 220px;
  background-image: url("/interactive/2019/12/recipes/images/shrimp-scampi-tab.png");
}

@media screen and (min-width: 600px) {
  /* line 389, src/sass/components/_recipe.scss */
  .shrimp-scampi .recipe__tab {
    right: 340px;
  }
}

@media screen and (min-width: 768px) {
  /* line 389, src/sass/components/_recipe.scss */
  .shrimp-scampi .recipe__tab {
    right: 480px;
  }
}

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

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

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

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

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

@media print {
  /* line 429, src/sass/components/_recipe.scss */
  img.recipe__portrait {
    opacity: 0;
  }
}

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

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

@media screen and (min-width: 600px) {
  /* line 446, src/sass/components/_recipe.scss */
  .recipe__ingredients li {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* line 446, src/sass/components/_recipe.scss */
  .recipe__ingredients li {
    font-size: 17px;
  }
}

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

/* line 452, src/sass/components/_recipe.scss */
.recipe-note {
  font-family: 'Kalam', cursive;
  font-size: 10px;
  color: #777;
  line-height: 1.25em;
}

@media screen and (min-width: 600px) {
  /* line 452, src/sass/components/_recipe.scss */
  .recipe-note {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* line 452, src/sass/components/_recipe.scss */
  .recipe-note {
    font-size: 12px;
  }
}

@media print {
  /* line 452, src/sass/components/_recipe.scss */
  .recipe-note {
    font-size: 32px;
  }
}

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

@media screen and (min-width: 600px) {
  /* line 456, src/sass/components/_recipe.scss */
  .recipe__name {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  /* line 456, src/sass/components/_recipe.scss */
  .recipe__name {
    font-size: 34px;
  }
}

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

/* line 460, src/sass/components/_recipe.scss */
.recipe__byline {
  font-family: 'Kalam', cursive;
  font-size: 8px;
  color: #777;
  line-height: 1.25em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  /* line 460, src/sass/components/_recipe.scss */
  .recipe__byline {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* line 460, src/sass/components/_recipe.scss */
  .recipe__byline {
    font-size: 16px;
  }
}

@media print {
  /* line 460, src/sass/components/_recipe.scss */
  .recipe__byline {
    font-size: 32px;
  }
}

/* line 464, src/sass/components/_recipe.scss */
.recipe__byline a {
  color: inherit;
  font-weight: bold;
}

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

@media screen and (min-width: 768px) {
  /* line 470, src/sass/components/_recipe.scss */
  .recipe__details {
    margin-bottom: 20px;
  }
}

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

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

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

@media screen and (min-width: 600px) {
  /* line 489, src/sass/components/_recipe.scss */
  .recipe__directions {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* line 489, src/sass/components/_recipe.scss */
  .recipe__directions {
    font-size: 17px;
  }
}

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

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

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

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

@media screen and (min-width: 600px) {
  /* line 506, src/sass/components/_recipe.scss */
  .recipe__servings {
    margin-right: 25px;
  }
}

@media screen and (min-width: 768px) {
  /* line 506, src/sass/components/_recipe.scss */
  .recipe__servings {
    margin-right: 40px;
  }
}

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

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

@media screen and (min-width: 600px) {
  /* line 521, src/sass/components/_recipe.scss */
  .recipe__servings p {
    width: 50px;
  }
}

@media print {
  /* line 521, src/sass/components/_recipe.scss */
  .recipe__servings p {
    width: 80px;
  }
}

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

@media screen and (min-width: 600px) {
  /* line 535, src/sass/components/_recipe.scss */
  .recipe__servings,
  .recipe__time {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* line 535, src/sass/components/_recipe.scss */
  .recipe__servings,
  .recipe__time {
    font-size: 17px;
  }
}

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

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

@media screen and (min-width: 600px) {
  /* line 542, src/sass/components/_recipe.scss */
  .recipe__servings p,
  .recipe__time p {
    padding-top: 6px;
  }
}

@media screen and (min-width: 768px) {
  /* line 542, src/sass/components/_recipe.scss */
  .recipe__servings p,
  .recipe__time p {
    padding-top: 8px;
  }
}

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

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

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

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

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

@media screen and (min-width: 600px) {
  /* line 583, src/sass/components/_recipe.scss */
  .recipe__decor-right {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    height: auto;
    width: 40px;
  }
}

@media screen and (min-width: 768px) {
  /* line 583, src/sass/components/_recipe.scss */
  .recipe__decor-right {
    width: 50px;
  }
}

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

@media screen and (min-width: 600px) {
  /* line 600, src/sass/components/_recipe.scss */
  .printBtn {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* line 600, src/sass/components/_recipe.scss */
  .printBtn {
    font-size: 17px;
  }
}

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

@media screen and (min-width: 768px) {
  /* line 600, src/sass/components/_recipe.scss */
  .printBtn {
    height: 30px;
    background-size: 25px;
  }
}

@media print {
  /* line 600, src/sass/components/_recipe.scss */
  .printBtn {
    display: none;
  }
}

/* line 626, src/sass/components/_recipe.scss */
.recipe-menu {
  text-decoration: underline;
  cursor: pointer;
}

/* line 630, src/sass/components/_recipe.scss */
.recipe-menu li {
  display: table;
}

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

@media screen and (min-width: 600px) {
  /* line 1, src/sass/components/_recipe-box.scss */
  .recipe-box {
    width: 500px;
    height: 489px;
  }
}

@media screen and (min-width: 768px) {
  /* line 1, src/sass/components/_recipe-box.scss */
  .recipe-box {
    width: 700px;
    height: 685px;
  }
}

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

@media screen and (min-width: 600px) {
  /* line 20, src/sass/components/_recipe-box.scss */
  .recipe-box__foreground {
    top: 240px;
    width: 499px;
    height: 246px;
    margin-left: 1px;
  }
}

@media screen and (min-width: 768px) {
  /* line 20, src/sass/components/_recipe-box.scss */
  .recipe-box__foreground {
    top: 338px;
    width: 699px;
    height: 345px;
    margin-left: 1px;
  }
}

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

@media screen and (min-width: 768px) {
  /* line 44, src/sass/components/_recipe-box.scss */
  .recipe-box__color-block {
    bottom: -600px;
    height: 700px;
  }
}

@media screen and (min-width: 1200px) {
  /* line 44, src/sass/components/_recipe-box.scss */
  .recipe-box__color-block {
    bottom: -700px;
    height: 800px;
  }
}

/* line 63, src/sass/components/_recipe-box.scss */
.recipe-box__food {
  position: absolute;
  z-index: 7;
  left: calc(50% - 208px);
  bottom: 0;
  width: 417px;
  height: 225px;
  background: url("/interactive/2019/12/recipes/images/food.png") no-repeat bottom center;
  background-size: cover;
}

@media screen and (min-width: 600px) {
  /* line 63, src/sass/components/_recipe-box.scss */
  .recipe-box__food {
    left: calc(50% - 345px);
    width: 658px;
    height: 355px;
    bottom: -48px;
  }
}

@media screen and (min-width: 768px) {
  /* line 63, src/sass/components/_recipe-box.scss */
  .recipe-box__food {
    left: calc(50% - 460px);
    width: 900px;
    height: 486px;
    bottom: -110px;
  }
}
