.recipes-heading {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
}

.recipes-heading span {
  color: #000000;
}

.recipes-filter svg {
  transform: rotate(90deg);
}

.recipes-filter {
  width: calc(100% - 24px);
  text-align: center;
  position: relative;
}

.recipes-filter-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-auto-rows: auto;
  grid-auto-flow: column;
  width: min(100%, 743px);
  text-align: left;
  margin: 0 auto;
}

.recipes-filter-list.bigger {
  grid-template-rows: repeat(6, auto);
}

.recipes-filter-list > a {
  padding: 16px 8px 0 8px;
}

.recipes-filter button {
  border: none;
  background: inherit;
}

.recipes-filter-list > div input {
  margin-right: 5px;
  border: 1px solid #A1A1A1;
}

.recipes-filter-list-wrap {
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
  padding: 4px 0 20px 0;
  -webkit-transform: translateY(39px);
  transform: translateY(39px);
  transition: all 0.3s linear;
  opacity: 0;
  position: absolute;
  z-index: -5;
  background: #ffffff;
  width: 100%;
}

.recipes-filter.open .recipes-filter-list-wrap {
  opacity: 1;
  -webkit-transform: unset;
  transform: unset;
  z-index: 3;
}

.recipes-filter.open button svg {
  transform: rotate(270deg);
}

.recipes-filter button svg {
  width: 10px;
  height: 10px;
}

#recipe-filter-button {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: #000000;
}

#recipe-filter-button:hover {
  color: #C12129;
}

#recipe-filter-button:hover svg path {
  fill: #C12129;
}

.recipe-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
}

.big-recipe {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.recipe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.recipe-card .recipe-description p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: min(48px, 3vw);
  margin-bottom: 40px;
}

.recipe-image:not(.big-recipe > .recipe-image) {
  padding-top: 75%;
}

.recipe-category {
  margin: 27px 0 4px 0;
}

.recipe-category,
.recipe-date {
  font-size: 16px;
  font-weight: 500;
}

h1.recipes-heading {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6);
}

h1.recipes-heading span {
  color: #000000;
}

.ingredient-section-table {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ingredients-col {
  width: 41%;
}

.description-col > p,
.col-heading h4,
.ingredients-wrap {
  margin: 8px 0;
}

.description-col {
  width: 59%;
}

.ingredients-table {
  width: 100%;
  padding: 20px;
}

.ingredients-wrap button {
  border-radius: 50%;
  background: #A8C042;
  border: 1px solid #A8C042;
  font-weight: 400;
  font-size: 17px;
  line-height: 10px;
  padding: 2px 2px;
}

.ingredients-wrap button:hover {
  background-color: white;
  color: #A8C042;
}

.ingredients-wrap p {
  position: relative;
}

.ingredients-col .col-heading h4,
.ingredients-wrap .ingredient-wrap {
  padding: 0 10px 0 36px;
}

.ingredients-wrap .add-to-cart-btn {
  position: absolute;
  left: 10px;
}

.col-heading h4,
.ingredient-section-table p a,
.ingredient-section-table p,
.ingredient-section-table .ingredient-wrap,
.ingredient-section-table .ingredient-wrap a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.ingredient-section-table .ingredient-wrap {
  position: relative;
}

.col-heading h4,
.ingredient-section-table .ingredient-wrap a {
  font-weight: 600;
}

.description-col > p {
  width: min(389px, 100%);
}

.show-more-recipes-btn,
.recipe-card a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 0 20px;
  line-height: 1.5;
  color: #999999;
}

.show-more-recipes-btn,
.recipe-card a.button {
  color: #C12129;
  border: 1px solid #C12129;
}

.recipe-inner-card a.button {
  margin-right: 10px;
}

.show-more-recipes-btn:hover,
.recipe-card a.button:hover {
  background: #C12129;
  color: #ffffff !important;
}

.big-recipe .recipe-card:not(.recipe-inner-card) h3:hover,
.recipe-list-item .recipe-card h3:hover {
  color: #C12129;
}

.links-wrap {
  margin-bottom: 29px;
}

.show-more-recipes-btn .hide,
.recipe-list-item.hide {
  display: none;
}

.show-more-recipes-btn {
  cursor: pointer;
  margin: 0;
}

.recipes-grid-section {
  width: 100%;
  padding: 30px 20px 85px 20px;
  text-align: center;
}

.recipe-image-gallery {
  width: 100%;
  padding: 20px;
}

.recipe-image-gallery .slick-slide {
  margin: 1.5vw;
}

.recipe-image-gallery .slick-list {
  margin: 0 -1.5vw;
}

.recipe-image-gallery .slick-dots li button:before {
  width: 8px;
  heigth: 8px;
  content: "";
  border: 1px solid #000000;
  border-radius: 50%;
  line-height: 8px;
  height: 8px;
  opacity: 1;
  top: 6px;
  left: 6px;
}

.recipe-image-gallery .slick-dots li.slick-active button:before {
  background: #000000;
}

.recipe-card .recipe-description p {
  text-align: center;
}

@media (min-width: 768px) {
  .recipes-grid-section > .recipes-heading,
.big-recipe .recipes-heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
  }

  .recipes-grid-section > p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
  }

  .big-recipe .recipe-image {
    width: 100%;
    height: 100%;
  }

  .big-recipe > .recipe-image,
.big-recipe > a {
    height: inherit;
    width: 60%;
  }

  .big-recipe .recipe-card {
    width: 40%;
    padding: 100px 0;
    min-height: 576px;
  }

  .big-recipe .recipe-card .recipe-date,
.big-recipe .recipe-card h3 {
    color: #000000;
  }

  .big-recipe {
    gap: 20px;
    padding: 20px;
  }

  .recipes-grid {
    width: calc(100% - 40px);
    margin-top: 56px;
  }

  .recipe-image-gallery.recipes-grid {
    margin-bottom: 90px;
  }

  .recipes-grid-section .recipes-grid {
    width: 100%;
  }

  .recipe-list-item .recipe-description {
    display: none;
  }

  .ingredients-col .col-heading h4,
.ingredients-wrap {
    margin-right: 65px;
    border-right: 1px solid #000000;
  }

  .ingredient-section-table .col-heading {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }

  .ingredients-table-section .section-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    padding-left: 10px;
  }

  .recipe-image-gallery .slick-dots {
    width: calc(100% - 40px);
  }

  .recipe-card .recipe-description p {
    font-weight: 500;
  }

  .recipes-filter-list > a {
    font-size: 18px;
  }

  .big-recipe > .links-wrap {
    display: none;
  }

  .links-wrap.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .big-recipe {
    flex-direction: column-reverse;
    margin-bottom: min(48px, 3vw);
  }

  #content .big-recipe > .recipe-image,
#content .recipe-image {
    padding-top: 55%;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .recipes-filter {
    width: 100%;
  }

  .recipe-category,
.big-recipe .recipe-date {
    display: none;
  }

  .recipe-card {
    padding: 25px 10px;
  }

  .recipe-inner-card {
    align-items: flex-start;
    padding: 25px 0 0 0;
  }

  .recipe-card .recipe-description p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .recipe-card .recipe-description {
    margin-bottom: 40px;
  }

  #recipe-filter-button {
    font-size: 14px;
  }

  h1.recipes-heading {
    font-size: 24px;
  }

  .recipes-filter-list {
    grid-template-columns: 1fr;
    grid-auto-flow: unset;
    grid-template-rows: unset;
  }

  .recipes-filter-list.bigger {
    grid-template-rows: unset;
  }

  .recipes-filter-list-wrap {
    padding: 10px 16px;
  }

  .recipes-filter-list > a {
    padding: 11px 0 0 0;
    font-size: 14px;
  }

  .description-col,
.ingredients-col {
    width: 100%;
  }

  .description-col .col-heading {
    display: none;
  }

  .ingredient-section-table {
    border-bottom: 1px solid #000000;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }

  .ingredients-col .col-heading h4 {
    padding-left: 0;
    font-size: 14px;
  }

  .recipe-inner-card .category-link {
    display: none;
  }

  .back-to-category,
.recipe-inner-card a.button {
    color: rgba(0, 0, 0, 0.7);
    border: none;
    padding: 0;
    text-decoration: underline !important;
    font-size: 12px;
  }

  .back-to-category:hover,
.recipe-inner-card a.button:hover {
    background: transparent;
    color: #C12129 !important;
  }

  .back-to-category:hover svg path {
    fill: #C12129;
  }

  .back-to-category svg {
    height: 8px;
  }

  h1.recipes-heading {
    display: none;
  }

  .links-wrap {
    margin-bottom: 10px;
  }

  .recipe-inner-card .recipes-heading {
    margin-bottom: 12px;
  }

  .recipe-inner-card > p {
    font-size: 16px;
    line-height: 24px;
  }

  .recipe-inner .big-recipe {
    margin-bottom: 0;
  }

  .ingredients-table {
    padding: 0 0 20px 0;
  }

  .ingredients-table-section .section-heading {
    font-weight: 500;
    font-size: 16px;
  }

  .ingredients-col .col-heading {
    margin-bottom: 20px;
  }

  .ingredient-section-table p a,
.ingredient-section-table p {
    margin-bottom: 3px;
  }

  .recipes-grid-section .recipes-grid {
    margin-bottom: 15px;
  }

  #module-ws_recipes-recipe #wrapper .container {
    margin-top: 0;
  }

  .recipes-grid-section > h2 {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .recipes-grid-section > p {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .ingredients-wrap p {
    padding-left: 25px;
  }

  .ingredients-wrap .add-to-cart-btn {
    left: 0;
  }

  .recipe-image-gallery {
    padding: 0;
  }

  .recipes-grid-section {
    padding: 30px 0 85px 0;
  }

  .big-recipe .recipe-inner-card .recipe-description p {
    text-align: left;
  }

  .links-wrap.desktop {
    display: none;
  }
}
.recipe-author {
  font-weight: 600;
  margin-top: 20px;
}

/*# sourceMappingURL=style.min.css.map */
