.recipe .box_recipe {
  max-width: 900px;
}
.recipe .breadcrumbs {
  padding-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 720px) {
  .recipe .breadcrumbs {
    padding-top: 1.5rem;
  }
}
@media (max-width: 520px) {
  .recipe .breadcrumbs {
    padding-top: 0.875rem;
  }
}
.recipe .breadcrumbs li {
  position: relative;
  color: var(--black);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  list-style: none;
  margin-right: 1.875rem;
}
.recipe .breadcrumbs li a {
  color: var(--brand-colour);
}
.recipe .breadcrumbs li:not(:last-child) {
  /* Style the arrow inside the select element: */
}
.recipe .breadcrumbs li:not(:last-child)::after, .recipe .breadcrumbs li:not(:last-child)::before {
  content: "";
  position: absolute;
  background-color: hsla(0, 0%, 0%, 0.9);
  border-radius: 0.3125rem;
  height: 0.375rem;
  width: 0.0625rem;
  transform: rotate(45deg);
  right: -16px;
}
.recipe .breadcrumbs li:not(:last-child)::after {
  transform: rotate(45deg);
  top: 0.625rem;
}
.recipe .breadcrumbs li:not(:last-child)::before {
  transform: rotate(-45deg);
  top: 0.375rem;
}
.recipe .breadcrumbs li:last-child {
  padding-bottom: 2.5rem;
}
@media (max-width: 720px) {
  .recipe .breadcrumbs li:last-child {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 520px) {
  .recipe .breadcrumbs li:last-child {
    padding-bottom: 0.875rem;
  }
}
.recipe .box_title {
  gap: 1.875rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 678px) {
  .recipe .box_title {
    margin-bottom: 0.875rem;
  }
}
.recipe .box_title h1 {
  font-family: Montserrat;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem;
}
@media (max-width: 520px) {
  .recipe .box_title h1 {
    font-size: 20px;
    line-height: 28px;
  }
}
.recipe .box_title .status {
  width: min-content;
  border-radius: 60px;
  background: #FFEAF2;
  padding: 0.375rem 1rem;
  color: var(--brand-colour);
  font-family: Montserrat;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  white-space: nowrap;
}
.recipe img.recipe {
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.recipe .inline {
  display: flex;
  justify-content: start;
  gap: 30px;
  align-items: center;
  margin: 1.5rem 0;
}
@media (max-width: 520px) {
  .recipe .inline {
    margin: 0.875rem 0 1rem 0;
  }
}
@media (max-width: 678px) {
  .recipe .inline {
    align-items: flex-end;
  }
}
.recipe .inline .icon_info {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 678px) {
  .recipe .inline .icon_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
.recipe .inline .icon_info .icon_box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.recipe .inline .icon_info .icon_box img {
  height: 1.25rem;
}
.recipe .inline .icon_info .icon_box p {
  color: var(--black);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.recipe .desc {
  color: #000;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 2rem;
}
@media (max-width: 520px) {
  .recipe .desc {
    margin-bottom: 1.25rem;
  }
}
.recipe .ingredients {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--light-gray);
  background: var(--white, #FFF);
  width: fit-content;
}
@media (max-width: 620px) {
  .recipe .ingredients {
    width: 100%;
    padding: 1.25rem;
  }
}
.recipe .ingredients h4 {
  color: var(--black);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.375rem;
  margin: 0 0 1rem 0;
}
.recipe .ingredients ul {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-left: 16px;
}
.recipe .box_step h3 {
  color: var(--black);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  padding: 2rem 0 1.25rem 0;
  border-bottom: 1px solid #E9E9EA;
  margin-bottom: 1.25rem;
}
.recipe .box_step .steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.recipe .box_step .steps .step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E9E9EA;
}
@media (max-width: 520px) {
  .recipe .box_step .steps .step {
    flex-direction: column;
    gap: 0.5rem;
  }
}


@media only screen and (min-width: 768px) {
  .recipe .box_step .steps .step img {
    height: 10rem;
  }
}






.recipe .box_step .steps .step .box_content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 520px) {
  .recipe .box_step .steps .step .box_content {
    gap: 0.25rem;
  }
}
.recipe .box_step .steps .step .box_content h5 {
  color: var(--black);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
.recipe .box_step .steps .step .box_content p {
  color: var(--black);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.recipe .user_data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0 2.5rem 0;
}
.recipe .user_data img {
  width: 3.125rem;
  height: 3.125rem;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.recipe .user_data .box_user {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.recipe .user_data .box_user .info_user {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
}
.recipe .user_data .box_user .info_user p {
  color: var(--dark-gray);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.recipe .user_data .box_user .info_user h5 {
  color: var(--brand-colour);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
}
.recipe .user_data .statistics {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 380px) {
  .recipe .user_data .statistics {
    flex-direction: column;
    gap: 0.1rem;
  }
}
.recipe .user_data .statistics span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--dark-gray, #68686B);
}
.recipe .user_data .statistics span i {
  font-size: 0.875rem;
}
.recipe .user_data .statistics span p {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.recipe .share {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.recipe .share h5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
}
.recipe .share img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}
.recipe .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0 2.5rem 0;
}
.recipe .tags h5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
}
.recipe .tags span.tag {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  transition: 0.3s;
  white-space: nowrap;
}
.recipe .tags span.tag:hover {
  border: 1px solid var(--brand-colour);
  cursor: pointer;
}
.recipe .comments {
  margin-bottom: 0.5rem;
}
@media (max-width: 520px) {
  .recipe .comments {
    margin-bottom: 5rem;
  }
}
.recipe .comments h3 {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
}
.recipe .comments .img_user {
  width: 3.125rem;
  min-width: 3.125rem;
  height: 3.125rem;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.recipe .comments .input_comment {
  display: flex;
  gap: 1.25rem;
  margin: 1.25rem 0 2rem 0;
}
.recipe .comments .input_comment input[type=text] {
  border-radius: 0.75rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  padding: 0.875rem 1.25rem;
  width: 100%;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem;
  outline: 0;
}
.recipe .comments .input_comment input[type=text]:focus {
  border: 1px solid var(--dark-gray);
}
.recipe .comments .comment {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.recipe .comments .comment .info_user h5 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.recipe .comments .comment .info_user p {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.recipe .btn_link {
  width: 100%;
  margin-bottom: 4rem;
  padding: 1rem 1.8125rem;
  border-radius: 0.75rem;
  border: 2px solid var(--brand-colour);
  background-color: #fff;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
}
.recipe .btn_link span.title_site {
  color: var(--brand-colour);
}

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

.box_main_img {
   position: relative;
   .share{
      position: absolute;
      top: 30px;
      right: 30px;

      .like, .bookmark{
         background-color: var(--white);
         width: 3rem;
         height: 3rem;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         cursor: pointer;

         &:active i{
           transform: scale(0.9);
         }

         i{
           font-size: 1.5rem;
           padding-top: 0.2rem;
         }

         .bi-heart-fill{
           display: none;
         }
         .bi-heart{
           display: block;
         }

         .bi-bookmark-fill{
            display: none;
          }
          .bi-bookmark{
            display: block;
          }
       }

       .like.active{
         .bi-heart-fill{
           display: block;
           color: var(--brand-colour);

         }
         .bi-heart{
           display: none;
         }
      }

      .bookmark.active{
         .bi-bookmark-fill{
            display: block;
            color: var(--brand-colour);

          }
          .bi-bookmark{
            display: none;
          }
      }
   }
}