.cooking-recipe .description-head {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.cooking-recipe li {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.cooking-recipe .instructions ol {
  counter-reset: item;
  padding-left: 0px;
}
.cooking-recipe .instructions ol li {
  display: block;
  margin-left: 1.7em;
}
.cooking-recipe .instructions ol li:before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  margin-left: -1.7em;
}
.cooking-recipe .ingredients {
  background-color: #74A35D;
  padding: 40px;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.cooking-recipe .ingredients .description-head {
  color: white;
}
.cooking-recipe .ingredients ul {
  list-style-type: inherit !important;
}
.cooking-recipe .ingredients ul li {
  list-style-type: inherit;
  padding-left: 5px;
}
.cooking-recipe .ingredients ul li:before {
  display: none;
}
