@font-face {
  font-family: "StrongBold";
  src: url("../fonts/strongbold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Impact";
  src: url("../fonts/impact.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "MyriadPro";
  src: url("../fonts/Myriad-Pro.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/Myriad-Pro.eot?#iefix") format("embedded-opentype"), url("../fonts/Myriad-Pro.woff") format("woff"), url("../fonts/Myriad-Pro.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "MyriadPro";
  src: url("../fonts/Myriad-Pro-Bold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/Myriad-Pro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Myriad-Pro-Bold.woff") format("woff"), url("../fonts/Myriad-Pro-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
html, body {
  font-family: Arial, sans-serif;
  background-color: #f3f0f0;
  color: #000;
  font-size: 16px;
}

body *,
body *::before,
body *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.caps {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.container {
  max-width: 950px;
  margin: auto;
}

.flexing-container {
  display: flex;
  justify-content: space-around;
}

img {
  width: 100%;
}

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

button,
input {
  outline: none;
}

.sub-button {
  background-color: #479f59;
  padding: 5px 15px;
  color: #fff;
  border-radius: 12px/50%;
  font-size: 0.9rem;
  cursor: pointer;
}

#smallMenu {
  display: none;
}
#smallMenu div {
  padding: 10px 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

header {
  font-size: 0.8rem;
  background-color: #fff;
}
header .logo-holder {
  width: 18%;
  padding: 10px;
}
header .search-holder {
  width: 75%;
  display: flex;
  justify-content: flex-end;
}
header .search-holder form {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}
header .search-holder input {
  border: 1px solid #dddddd;
  border-right: 2px solid #479f59;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  padding: 5px;
  position: relative;
  bottom: 3px;
  height: 30px;
}
header .search-holder button {
  padding: 2px 5px 5px 5px;
  height: 30px;
  width: 35px;
  position: relative;
  bottom: -3px;
  left: -5px;
  background-color: #479f59;
  border: 1px solid #479f59;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}
header .signin-button {
  background-color: #ea675d;
  padding: 7px 7px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  margin: auto 15px auto 5px;
}
header .nav-holder {
  background-color: #479f59;
}
header .nav-holder nav > div {
  display: inline-block;
  padding: 1em;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
}
header .nav-holder nav > div:hover {
  background-color: #1acc6d;
  cursor: pointer;
}
header .nav-holder nav #browser {
  padding-right: 1.5em;
  position: relative;
}
header .nav-holder nav #browser::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: calc(50% - 6px);
  right: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

section.home-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cooked_bg_2018-1400x700.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 1.5em;
  padding-bottom: 2em;
  color: #fff;
}
section.home-hero.big-padding {
  padding-top: 3em;
  padding-bottom: 3em;
}
section.home-hero > div {
  text-align: center;
}
section.home-hero > div > p {
  max-width: 900px;
  margin: auto;
  font-size: 1.3rem;
}
section.home-hero .title {
  font-family: StrongBold;
  font-size: 3.5rem;
}
section.home-hero .recipes {
  display: flex;
  justify-content: space-between;
  margin: 1.5em;
}
section.home-hero .recipes .recipe {
  color: #000;
  width: 30%;
  border-radius: 10px;
  background-color: #fff;
  padding-bottom: 1.5em;
  position: relative;
}
section.home-hero .recipes .recipe .fav-holder {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: white;
  padding: 7px 5px 5px 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
section.home-hero .recipes .recipe .fav-holder img {
  margin: 0;
  transition: transform 200ms ease-in;
  pointer-events: none;
}
section.home-hero .recipes .recipe .fav-holder:hover img {
  transform: scale(1.1);
}
section.home-hero .recipes .recipe img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
section.home-hero .recipes .recipe .title {
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1em 1em 1em;
}
section.home-hero .recipes .recipe .title::after {
  content: "";
  width: 40px;
  border: 2px solid #dddddd;
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
}
section.home-hero .recipes .recipe .subscribe,
section.home-hero .recipes .recipe .description {
  font-size: 0.8em;
}
section.home-hero .breadcrumbs {
  display: flex;
  font-size: 1rem;
  justify-content: center;
}
section.home-hero .breadcrumbs .next {
  position: relative;
  margin-left: 1em;
  display: inline-block;
  width: 10px;
  height: 10px;
}
section.home-hero .breadcrumbs .next::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #dddddd;
  border-top: 2px solid #dddddd;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.home-hero .page-title {
  font-weight: normal;
  font-size: 3rem;
  margin-top: 0.3em;
  margin-bottom: 0;
}

section.sub-hero {
  background-color: #0dbe60;
  color: #fff;
  padding: 0.5em 0;
  text-align: center;
  font-size: 2rem;
}
section.sub-hero h1 {
  font-size: 1.5em;
}
section.sub-hero p {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

section.recipes {
  text-align: center;
}
section.recipes > a {
  display: inline-block;
  margin: 2em auto;
  font-weight: bold;
  font-size: 0.8rem;
  text-decoration: none;
  color: #fff;
  background-color: #0dbe60;
  padding: 0.8em;
}
section.recipes .recipes-list {
  column-count: 3;
  column-gap: 0;
}
section.recipes .recipes-list article.recipe {
  max-width: 250px;
  cursor: pointer;
  break-inside: avoid;
  background-color: white;
  border-radius: 10px;
  position: relative;
  margin: 1em auto;
  margin-top: 0;
  padding-bottom: 1px;
}
section.recipes .recipes-list article.recipe .fav-holder {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: white;
  padding: 7px 5px 5px 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
section.recipes .recipes-list article.recipe img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
section.recipes .recipes-list article.recipe .title {
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
section.recipes .recipes-list article.recipe p {
  padding: 0 15px;
  font-size: 0.8rem;
}
section.recipes .recipes-list article.recipe .subscribe {
  position: relative;
  padding-bottom: 1em;
}
section.recipes .recipes-list article.recipe .subscribe::after {
  content: "";
  width: 40px;
  border: 2px solid #dddddd;
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
}

.img-holder {
  position: relative;
  margin-bottom: 1em;
  max-height: 250px;
}
.img-holder img {
  max-height: 250px;
}

.exclusive-holder {
  position: absolute;
  right: 0;
  bottom: 0;
  color: white;
  font-size: 12px;
  font-weight: bold;
  background-color: #ed3833;
  padding: 3px 5px 1px;
}

section.signup {
  font-size: 0.9rem;
  padding: 3em 0;
}
section.signup > * {
  max-width: 900px;
}
section.signup h1 {
  color: #3b4143;
  font-size: 1.5rem;
}
section.signup form > * {
  display: block;
}
section.signup form input {
  padding: 10px 15px;
  margin: 1em 0;
  width: 100%;
  max-width: 350px;
  border: 1px solid #dddddd;
}
section.signup form button {
  background-color: #0abe60;
  color: #fff;
  padding: 8px 10px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  width: 100px;
}
section.signup form .red-back {
  background-color: #ea675d;
}
section.signup #subscribeConfirm {
  background-color: #0abe60;
  color: #fff;
  padding: 8px 10px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
}

section.signin {
  font-size: 0.9rem;
  padding: 3em 0;
  min-height: 400px;
}
section.signin h1 {
  color: #3b4143;
  font-size: 1.5rem;
}
section.signin form input {
  display: block;
  padding: 10px 15px;
  margin: 1em 0;
  width: 100%;
  max-width: 350px;
  border: 1px solid #dddddd;
}
section.signin form button {
  background-color: #ea675d;
  color: #fff;
  padding: 8px 10px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  width: 100px;
}
section.signin form a {
  color: #479f59;
  font-weight: bold;
  font-size: 1rem;
  margin-left: 1em;
}
section.signin #subscribeConfirm {
  background-color: #0abe60;
  color: #fff;
  padding: 8px 10px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
}

section.recipe .general-info {
  padding: 2em 0;
}
section.recipe .general-info .insta-info {
  padding: 2em 0;
  display: flex;
  justify-content: space-around;
}
section.recipe .general-info .insta-info div {
  width: 20%;
  text-align: center;
}
section.recipe .general-info .insta-info div img {
  max-width: 50px;
}
section.recipe .general-info .description {
  padding: 2em;
  background-color: #dddddd;
  text-align: justify;
}
section.recipe .script-generated-holder {
  padding: 2em 0;
}
section.recipe .script-generated-holder h1 {
  font-weight: normal;
}
section.recipe .script-generated-holder .equipment-holder {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
section.recipe .script-generated-holder .equipment-holder > div {
  margin: 0 10px;
  text-align: center;
  background-color: #fff;
}
section.recipe .script-generated-holder .equipment-holder > div div {
  width: 100px;
  height: 100px;
  margin: auto;
}
section.recipe .script-generated-holder .equipment-holder > div div img {
  width: 100%;
  height: 100%;
}
section.recipe .script-generated-holder .equipment-holder > div p {
  margin-top: 10px;
  padding: 0 5px;
}
section.recipe .script-generated-holder .trivia {
  padding-left: 50px;
  position: relative;
}
section.recipe .script-generated-holder .trivia::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url("../img/leaf-icon-png-23.png");
  background-size: cover;
  background-position: center center;
}
section.recipe .script-generated-holder .trivia.earth::before {
  background-image: url("../img/earth.png");
}
section.recipe #spoonacular-ingredient-vis-list .spoonacular-image-wrapper {
  border: none;
}
section.recipe #spoonacular-ingredient-vis-grid .spoonacular-ingredient {
  border: none;
}
section.recipe #spoonacular-ingredient-vis-grid .spoonacular-ingredient .spoonacular-name, section.recipe #spoonacular-ingredient-vis-grid .spoonacular-ingredient .spoonacular-amount {
  color: #000;
  background-color: #fff;
}
section.recipe .instructions > div {
  padding-left: 40px;
  position: relative;
}
section.recipe .instructions > div span {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  padding: 5px;
  background-color: #e76182;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 1.3rem;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
section.recipe .instructions > div div {
  padding: 1em 0;
}

section.browse-form-holder {
  display: flex;
  justify-content: center;
  padding: 3em 0;
  position: relative;
}
section.browse-form-holder .menu-drop {
  width: 150px;
  background-color: #dddddd;
  padding: 0.6em 1em;
  border: 1px solid #adadad;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
section.browse-form-holder .menu-drop::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #adadad;
  border-right: 2px solid #adadad;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
}
section.browse-form-holder .browse-select {
  position: absolute;
  bottom: -300px;
  left: 10px;
  background-color: #fff;
  padding: 2em;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  z-index: 1;
}
section.browse-form-holder .browse-select > div {
  width: 220px;
  margin-right: 2em;
}
section.browse-form-holder .browse-select > div:last-child {
  margin-right: 0;
}
section.browse-form-holder .browse-select > div div {
  color: #479f59;
  padding: 5px 0;
}
section.browse-form-holder .browse-select > div p {
  padding-bottom: 1em;
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 1em;
  border-bottom: 1px solid #dddddd;
}
section.browse-form-holder #browseForm {
  width: 750px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
}
section.browse-form-holder #browseForm input {
  width: 90%;
  padding: 0 1em;
  border: 1px solid #adadad;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
section.browse-form-holder #browseForm button {
  width: 40px;
  height: 40px;
  background-color: #0abe60;
  border: 1px solid #0abe60;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

section.pagination {
  display: flex;
  justify-content: space-between;
  padding-top: 2em;
  color: #479f59;
  font-weight: bold;
}
section.pagination div {
  margin: 0 10px;
  cursor: pointer;
}
section.pagination div.disable {
  color: gray;
  cursor: not-allowed;
}

section.terms table, section.terms th, section.terms td {
  border: 1px solid black;
  border-collapse: collapse;
}
section.terms th, section.terms td {
  padding: 0.8em;
}
section.terms li {
  padding-bottom: 10px;
}
section.terms li:last-child {
  padding-bottom: 0;
}

footer {
  background-color: #22282b;
  color: #fff;
  line-height: 1.5em;
  font-size: 0.9rem;
  padding: 1em 0;
  margin-top: 3em;
}
footer > div:last-child {
  padding-top: 1em;
  border-top: 1px solid #3b4143;
  color: #dddddd;
}
footer > div:first-child > div {
  width: 30%;
}
footer > div:first-child > div:first-child a {
  text-decoration: underline;
}
footer > div:first-child > div:last-child img {
  height: 30px;
  width: auto;
}
footer > div:first-child > div:last-child h1 {
  font-weight: normal;
  font-size: 1.5rem;
}
footer > div:first-child .logo-holder {
  max-width: 80px;
}
footer > div:first-child .recent-recipes .recipe {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #3b4143;
}
footer > div:first-child .recent-recipes .recipe img {
  width: 50px;
  height: 50px;
}
footer > div:first-child .recent-recipes .recipe span {
  color: #479f59;
  font-weight: bold;
  width: calc(100% - 60px);
}
footer > div:first-child .recent-recipes .recipe:last-child {
  border: none;
}
footer .not-home {
  margin-bottom: 2em;
  justify-content: space-between;
}

.loader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 950px) {
  header .logo-holder {
    width: 130px;
  }

  section.signup,
section.recipe,
section.browse-form-holder,
section.signin {
    padding-left: 15px;
    padding-right: 15px;
  }

  section.home-hero {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.home-hero .recipes {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  section.home-hero .recipes .recipe {
    min-width: 250px;
    margin-top: 1em;
  }

  section.sub-hero {
    padding: 1em 15px;
    font-size: 1.5rem;
  }

  footer {
    padding: 15px;
  }
  footer > div {
    padding: 0 1em 0 1.5em;
  }
}
@media screen and (min-width: 831px) {
  .exclusive-recipe-img {
    width: 50%;
  }
}
@media screen and (max-width: 830px) {
  section.recipes .recipes-list {
    column-count: 2;
  }
}
@media screen and (max-width: 620px) {
  section.browse-form-holder .menu-drop::after {
    right: 10px;
  }

  footer > div:first-child {
    display: block;
  }
  footer > div:first-child > div {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  section.browse-form-holder .menu-drop::after {
    right: 5px;
  }

  section.browse-form-holder .browse-select {
    width: 300px;
    bottom: -430px;
  }

  section.recipes .recipes-list {
    column-count: 1;
  }
}
@media screen and (max-width: 450px) {
  section.browse-form-holder .menu-drop::after {
    border: none;
  }

  header .above-nav {
    display: block;
  }
  header .above-nav > div {
    margin-left: auto;
    margin-right: auto;
  }
  header .search-holder {
    width: 90%;
  }
}
@media screen and (max-width: 370px) {
  section.signup {
    padding-top: 1em;
  }
  section.signup h1 {
    font-size: 1rem;
    margin-top: 0;
  }

  section.home-hero.big-padding {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  section.home-hero .page-title {
    font-size: 2rem;
  }

  header .search-holder {
    /*display: block;*/
  }
  header .search-holder > * {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: block;
  }
  header .search-holder .signin-button {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@keyframes height {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
#errorMessage,
.errorMessage {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.hide {
  display: none !important;
}

div[style*="margin-top:3px;margin-right:10px;text-align:right;"] {
  display: none;
}

#load-more {
  border-radius: 5px;
  background-color: #479f59;
  color: #fff;
  font-size: 14px;
  padding: 10px;
  margin: 1em auto;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
