.brk-recipe-wrap {
  margin-bottom: 25px;
}
.brk-recipe-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid;
  border-color: var(--brk-border-color);
  padding: 20px 20px;
}
.brk-recipe-header {
  display: flex;

  gap: 30px;

  align-items: center;
}

.brk-recipe-ingredients {
  padding: 20px 25px;
  border: 1px solid;
  border-color: var(--brk-border-color);
}
.brk-recipe-sec-title {
  margin-bottom: 10px !important;
  font-size: 19px;
  text-transform: uppercase;
}

.brk-recipe-ingredients-list {
  list-style: none;
  padding: 0px;
  margin: 0px !important;
  /* font-size: 14px; */
  font-weight: 500;
}

.brk-recipe-ingredients-list li {
  cursor: pointer;
}

.brk-recipe-ingredients-list li:last-child {
  margin-bottom: 0px;
}

.brk-recipe-ingredients-list li.active {
  text-decoration: line-through;
  font-style: oblique;
  opacity: 0.6;
}

.brk-recipe-ingredients-list li .brk-check-ingredient {
  display: inline-block;
  margin-right: 7px;
  color: #a0a0a0;
  font-style: normal;
}

.brk-recipe-ingredients-list li .brk-check-ingredient::before {
  content: "\f096";
  font-family: "Font Awesome 6 Free";
}

.brk-recipe-ingredients-list li.active .brk-check-ingredient::before {
  content: "\f046";
  color: #28a745;
}
.brk-recipe-content {
}

.brk-recipe-content ol {
  margin-bottom: 0px !important;
}

.brk-recipe-header-left {
  width: 20%;
  flex: 1 0 auto;
}

.brk-recipe-wrap .entry-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  /* border-radius: 50%; */
}

.brk-recipe-wrap .entry-thumb img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.brk-recipe-header-right {
  width: 100%;
}

.brk-recipe-title {
  margin-bottom: 15px !important;
  font-size: 27px;
}

.brk-recipe-info {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.brk-recipe-info-item {
  font-size: 14px;
  opacity: 0.7;
  display: flex;
  gap: 5px;
  align-items: center;
}

.brk-recipe-info-item .key {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media only screen and (max-width: 640px) {
  .brk-recipe-header {
    flex-direction: column;

    gap: 20px;
  }
  .brk-recipe-header-left {
    width: 50%;
  }
  .brk-recipe-info {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
