


.recept-category__title {

}

.recept-category__title h1 {
    margin: 0;
    padding: 0 0 10px 0;
}

.recept-category__group {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    gap: 10px;
}

.recept-category__all {

}

.recept-category__list-group {
   display: flex;
    align-items: center;
    gap: 10px;
}

.recept-category__img {
   width: 50px;
    height: 50px;
}

.recept-category__image {
    width: 60px;
    height: 60px;
    background: #f6f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex-shrink: 0;
}


.recept-category__all,
.recept-category__list-group,
.recept-category__name-link {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: .2s;
}



.recept-category__item {
    display: flex;
    flex-direction: column;
}

.recept-category__list-group--parent {
    position: relative;
    cursor: pointer;
}



.recept-category__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
}

.recept-category__toggle svg {
    width: 18px;
    height: 18px;
    fill: #d6dbe0;
   transition: .2s;
}

.recept-category__toggle svg:hover {
      fill: #42ab44;
}


.recept-category__children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    flex-direction: column;
}


input[id^="recipe-group-"]:checked ~ .recept-category__children {
    max-height: 1000px;
}


input[id^="recipe-group-"]:checked + .recept-category__list-group--parent .recept-category__toggle svg {
    transform: rotate(45deg);
    fill: #333;
}

.recept-category__list-group--child {
   padding: 8px 0 8px 15px;
   font-size: 15px;
   transition: .2s;
}

.recept-category__list-group.recept-category__list-group--child:hover {
    background-color: #f5f7f9;
    border-radius: 8px;
     color: #42ab44;
}


.recept-category__container {
   width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recept-category__card-container {
   display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 10px;
}

.recept-category__card {
    padding: 10px;
   background: #fff;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
}

.recept-category__card:hover .recept-category__card-img {
    scale: 105% 105%;
}


.recept-category__card-grid {

}

.recept-category__card-image {
   position: relative;
   z-index: 1;
   overflow: hidden;
   border-radius: 16px;
}

.recept-category__card-sticker {
  position: absolute;
    top: 0;
    left: 0;
    background: #43ab44;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 10px;
    border-radius: 16px 0;
    letter-spacing: 0.5px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
    z-index: 1;
}

.recept-category__card-img {
   width: 100%;
    height: 100%;
    border-radius: 16px;
    transition: .5s;
}

.recept-category__detail {
   padding: 10px 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recept-category__detail h4 {
  margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
    line-height: 1.4;
}

.recept-category__detail h4 a {
      font-size: 18px;
    color: #333;
}

.recept-category__description {

}

.recept-category__muted-detail {
   display: flex;
    align-items: center;
    justify-content: space-between;
}


.recept-category__muted {
   display: flex;
    align-items: center;
    gap: 10px;
}

.recept-category__muted-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recept-category__muted-icon {
   width: 12px;
    height: 12px;
    fill: #999;
}

.recept-category__muted-info span {
   font-size: 14px;
    color: #999;
    font-weight: 500;
}

.recept-category__more {

}

.recept-category__more-btn {
     border: none;
    background: #43ab44;
    color: #fff;
    width: 100%;
    border-radius: 16px;
    font-size: 15px;
    padding: 10px;
    transition: .2s;
}

.recept-category__more-btn:hover {
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    background-color: #429f39;

}

.recept-category__rating {

}

.recept-category__rating .star-empty,
.recept-category__rating .star {
  width: 18px;
  height: 18px;
}

.recept-category__rating .star-empty {
    fill: #d6dbe0
}

.recept-category__rating .star {
    fill: #ffc100
}




.recept-category__nut-value {
     display: flex;
    align-items: center;
    background: #f6f7f9;
    border-radius: 0 0 16px 16px;
    position: relative;
    top: -10px;
    box-shadow: 0px 6px 16px -1px rgba(0, 7, 13, 0.09);
}

.recept-category__value-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    padding: 20px 10px 10px;
}

.recept-category__value {
   font-size: 13px;
    font-weight: 500;
    color: #999;
}

.recept-category__nut-name {
font-size: 13px;
font-weight: 500;
    
}


.ajax-pagination {
    width: 100%;
}


.ajax-pagination__control {
   background: #fff;
    padding: 10px;
    border-radius: 20px;
    margin: 20px 0 0;
}

.ajax-pagination__btn {
     padding: 10px 20px;
    font-size: 15px;
    border-radius: 16px;
    background: #42ab44;
    color: #fff;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    column-gap: 5px;
    position: relative;
    border: none;
}

.ajax-pagination__text {

}



.popular-recept {

}

.popular-recept h3 {
     font-weight: 700;
    font-size: 29px;
    color: #333;
    line-height: 32px;
    margin: 40px 0 20px;
}




.recept-category__empty {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
}

.recept-category__empty-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.recept-category__empty-icon {
}

.recept-category__empty-icon img {
}

.recept-category__empty-title {
    font-size: 20px;
    font-weight: 700;
}


.recept-page__card {

}

.recept-page__card h1 {
   margin: 0;
    padding: 0 0 10px 0;
}


.recept-page__card-right {
  display: flex;
    flex-direction: column;
    gap: 20px;
}

.recept-page__right-detail {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
}

.recept-page__card-left {

}

.recept-page__left-detail {

}


.recept-page__card-info {
   display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
}

.recept-page__card-pic {

}

.recept-page__card-image {
  position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
}

.recept-page__card-image img {
   width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: 1;
    position: relative;
}

.recept-page__card-sticker {
   position: absolute;
    top: 20px;
    left: 20px;
    background: #43ab44;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 15px;
    border-radius: 16px 0;
    letter-spacing: 0.5px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
    z-index: 1;
}


.recept-page__nut-value {
    display: flex;
    align-items: center;
    background: #f6f7f9;
    border-radius: 0 0 16px 16px;
    position: relative;
    top: -10px;
    box-shadow: 0px 6px 16px -1px rgba(0, 7, 13, 0.09);
}

.recept-page__value-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    padding: 20px 10px 10px;
}

.recept-page__value {
    font-size: 15px;
    font-weight: 500;
    color: #999;
}

.recept-page__nut-name {
    font-weight: 600;
}


.recept-page__muted {
   margin: 0 0 25px;
}

.recept-page__muted-container {
   display: flex;
    align-items: center;
    gap: 10px;
}

.recept-page__muted-info {
  display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.recept-page__muted-info:nth-last-child(n+2) {
    border-right: solid 1px #eee;
    padding: 0 20px 0 0;
}

.recept-page__muted-info span {
font-weight: 700;
    font-size: 18px;
}

.recept-page__text-info {
     border-bottom: solid 1px #eee;
    padding: 0 0 25px;
    margin: 0 0 25px;
}

.recept-page__muted-text {
   color: #999;
    font-weight: 500;
}


.recept-page__description {
   height: 75px;
    overflow: hidden;
}

.recept-page__more-info,
.recept-page__description-text,
.recept-page__more-ingredients  {
    font-size: 15px;
}

.recept-page__more-info:hover,
.recept-page__more-ingredients:hover {
    text-decoration: underline;
}


.recept-page__ingredients {


}

.recept-page__ingredients h3 {
font-weight: 600;
    font-size: 18px;
    margin: 0;

}

.recept-page__list {
 margin: 15px 0;
}

.recept-page__item {


}


.recept-page__line {
   display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 15px;
}

.recept-page__item:nth-child(odd) {
    background: #f6f7f9;
    border-radius: 10px;
}



.recept-page__name {
  font-weight: 600;
}

.recept-page__dots {

}

.recept-page__price {

}

.recept-page__buy {
   border-top: solid 1px #eee;
    padding: 25px 0 0;
    margin: 25px 0 0;
}

.recept-page__buy-btn {
   padding: 10px 20px;
    font-size: 15px;
    border-radius: 16px;
    background: #42ab44;
    color: #fff;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    border: none;
}

.recept-page__buy-btn:hover {
   box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    background-color: #429f39;

}

.recept-page__buy-btn:active {
     transform: scale(.95);
}


.recept-page__blocks {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
  margin: 40px 0 0;
}

.recept-page__blocks h3 {

}

.recept-page__blocks-item {

}

.recept-page__blocks-step-description {
    font-size: 15px;
}

.recept-page__blocks-item:nth-last-child(n+2) {
   border-bottom: solid 1px #eee;
    padding: 0 0 25px;
    margin: 0 0 25px;
}

.recept-page__blocks-step {
  margin: 0 0 15px;
}

.recept-page__blocks-step-precess {

}

.recept-page__blocks-step .recept-page__blocks-step-num {
     font-size: 20px;
    font-weight: 700;
}

.recept-page__blocks-image{

}


.recept-page__blocks-img {
border-radius: 16px;
    height: 100%;
    width: 100%;
    max-width: 400px;
}


.recept-page__blocks-recept {
   display: flex;
    gap: 20px;
}

.recept-page__blocks-description {
   display: flex;
    flex-direction: column;
    padding: 12px 8px 20px;
    flex: 1 1 0;
}

.recept-page__blocks-title {
   display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .2s;
}

.recept-page__blocks-title:hover .recept-page__title span {
  color: #42ab44;
}

.recept-page__blocks-title:hover .plus {
  fill: #42ab44;
}

.recept-page__title {
  display: flex;
    align-items: center;
    gap: 10px;
}

.recept-page__title span {
   font-weight: 600;
    font-size: 20px;
    line-height: normal;
    transition: .2s;
}

.recept-page__blocks-container {
    margin: 40px 0 0;
}

.recept-page__hat-chef-icon {
width: 45px;
    height: 45px;
    background: #f6f7f9;
    border-radius: 50px;
    border: solid 1px #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recept-page__hat-chef {
width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.recept-page__viewShow {
   width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7f9;
    border-radius: 50px;
}

.recept-page__viewShow .plus {
    width: 18px;
    height: 18px;
    transition: .2s ease-in-out;
}


.recept-page__product-item-view {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
}



.recept-page__product-view {

}

.recept-page__product-view-btn {
    background: #42ab44;
    color: #fff;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 16px;
    font-weight: 600;
    transition: .2s;
    cursor: pointer;
    white-space: nowrap;
}

.recept-page__product-view-btn:hover {
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    background-color: #429f39;
}

.recept-page__product-view-btn:active {
    transform: scale(.95);
}

.recept-page__product-item-container {
   display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.recept-page__product-item-text {
     font-weight: 600;
    font-size: 18px;
    margin: 0;
    min-width: 150px;
}

.recept-page__product {
   display: flex;
   align-items: center;
   position: relative;
}

.recept-page__product-item {
   position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
     border-radius: 50px;
}

.recept-page__product-item img {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    z-index: 1;
    mix-blend-mode: darken;
}

.recept-page__product-item:before {
    background: #f6f7f9;
    border-radius: 50px;
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.recept-page__product-more {
     font-weight: 700;
    color: #999;
    z-index: 1;
}



.recept-page__product-item:nth-child(1) {
  z-index: 1;
}

.recept-page__product-item:nth-child(2) {
  transform: translateX(-20px);
  z-index: 2;
}

.recept-page__product-item:nth-child(3) {
   transform: translateX(-40px);
   z-index: 3;

}

.recept-page__product-item:nth-child(4) {
   transform: translateX(-60px);
   z-index: 4;

}

.recept-page__product-item:nth-child(5) {
transform: translateX(-80px);
z-index: 5;

}






.recept-page__share-social .recept-page__share-icon {
    transition: .2s;
}

.recept-page__share-social .recept-page__share-icon img {
     width: 50px;
    height: 50px;
}

.recept-page__share-social-icon {
   width: 60px;
    height: 60px;
    background: #f6f7f9;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #eee;
    cursor: pointer;
    transition: .2s;
}

.recept-page__share-social-icon:hover .recept-page__icon-share {
        fill: #42ab44;
}

.recept-page__share-social-icon:hover {
        background-color: #f2f2f2;
}

.recept-page__icon-share {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    transition: .2s;
}


.recept-page__share {
  position: relative;
  margin: 20px 0 0;
}

.recept-page__share-social-icon {
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.recept-page__share.active .recept-page__share-social-icon {
  opacity: 0;
  pointer-events: none;
}

.recept-page__share-social-icon:hover {
  transform: scale(1.1);
}

.recept-page__share-social-action {
  display: flex;
  gap: 15px;
  align-items: center;
  position: absolute;
  top: 5px;
  left: 0;
  pointer-events: none;
}

.recept-page__share-close {
opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    pointer-events: none;
    position: absolute;
    right: -30px;
    z-index: 1;
    top: -25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f7f9;
    border-radius: 50px;
}

.recept-page__share.active .recept-page__share-close {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0s;
  transition: .2s;
}

.recept-page__share-close:hover .recept-page__close-icon {
  fill: #42ab44;
}

.recept-page__close-icon {
  width: 18px;
    height: 18px;
    fill: #333;
    transition: .2s;
}

.recept-page__share-social {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.recept-page__share.active .recept-page__share-social {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition: .2s;
}


.recept-page__share-social:nth-child(2) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(2) {
  transition-delay: 0.05s;
}

.recept-page__share-social:nth-child(3) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(3) {
  transition-delay: 0.1s;
}

.recept-page__share-social:nth-child(4) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(4) {
  transition-delay: 0.15s;
}

.recept-page__share-social:nth-child(5) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(5) {
  transition-delay: 0.2s;
}

.recept-page__share-social:nth-child(6) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(6) {
  transition-delay: 0.25s;
}

.recept-page__share-social:nth-child(7) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(7) {
  transition-delay: 0.3s;
}

.recept-page__share-social:nth-child(8) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(8) {
  transition-delay: 0.35s;
}

.recept-page__share-social:nth-child(9) {
  transition-delay: 0s;
}

.recept-page__share.active .recept-page__share-social:nth-child(9) {
  transition-delay: 0.4s;
}

.recept-page__share-social:hover .recept-page__share-icon {
  opacity: .8;
}


.recipe-review {
margin: 40px 0 0;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 20, 0.06) 0px 0px 8px 0px;
}

.recipe-review__title {
    display: flex;
display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 40px;
    position: relative;
    transition: .2s;
    cursor: pointer;
}

.recipe-review__title:hover h3 {
  color: #42ab44;
}

.recipe-review__title:hover .plus {
  fill: #42ab44;
}

.recipe-review__icon {
width: 45px;
    height: 45px;
    background: #f6f7f9;
    border-radius: 50px;
    border: solid 1px #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-review__captions {
width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: .2s;
}

.recipe-review__title h3 {
font-weight: 600;
    font-size: 20px;
    color: #333;
    line-height: 32px;
    margin: 0;
}

.recipe-review__title .viewShow {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7f9;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.recipe-review__title .plus {
width: 18px;
    height: 18px;
    transition: .2s ease-in-out;
}

.recipe-review__title .plus.rotate {
    transform: rotate(45deg);
}

.recipe_review-add {
    margin: 20px 0 0;
}

.recipe-review__toggle-btn {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 16px;
    background: #f6f7f9;
    color: #333;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    column-gap: 5px;
    position: relative;
    border: none;
}

.recipe-review__toggle-btn:hover {
   background-color: #f2f2f2;

}

.recipe-review__form {
    margin-top: 20px;
}

.recipe-review__input {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.recipe-review__name,
.recipe-review__entry,
.recipe-review__rating {
    display: flex;
    flex-direction: column;
}



.recipe-review__textarea {
    margin-bottom: 15px;
}

.recipe-review__rating {
    margin-bottom: 15px;
}

.recipe-review__stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-review__stars input[type="radio"] {
    display: none;
}

.recipe-review__stars label {
    cursor: pointer;
    margin: 0;
}

.recipe-review__stars .star {
    width: 24px;
    height: 24px;
    fill: #ddd;
    transition: fill 0.2s ease;
}

.recipe-review__captcha {
    margin-bottom: 15px;
}

.recipe-review__send {
    margin-top: 20px;
}

.recipe-review__btn {
padding: 10px 30px;
    font-size: 15px;
    border-radius: 16px;
    background: #42ab44;
    color: #fff;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    position: relative;
    border: none;
}

.recipe-review__btn:hover {
    background: #45a049;
}

.recipe-review__btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


.recipe_review-user {
   display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: solid 1px #eee;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.recipe_review-user-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recipe_review-user-icon {
width: 45px;
    height: 45px;
    background: #f6f7f9;
    border-radius: 50px;
    border: solid 1px #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.recipe_review-user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.recipe_review-user-name {
    font-weight: 600;
    color: #333;
}

.recipe_review-user-date {
    font-size: 15px;
    color: #999;
}

.recipe_review-rating {
    display: flex;
    gap: 2px;
    margin: 5px 0;
}

.recipe_review-rating .star {
    width: 18px;
    height: 18px;
    fill: #ffc107;
}

.recipe_review-rating .star.empty {
    fill: #ddd;
}

.recipe_review-info {
   background: #f6f7f9;
    padding: 20px;
    border-radius: 16px;
}

.recipe_review-text {
    font-size: 15px;
}

.recipe-no__review {
    padding: 20px;
    text-align: center;
    color: #999;
}

.ajax-pagination-reviews {
    margin-top: 20px;
    text-align: center;
}

.ajax-pagination-reviews__item {
    display: flex;
    justify-content: center;
}

.ajax-pagination-reviews__load-more {
   padding: 10px 20px;
    font-size: 15px;
    border-radius: 16px;
    background: #42ab44;
    color: #fff;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    column-gap: 5px;
    position: relative;
    border: none;
}

.ajax-pagination-reviews__load-more:hover {
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    background-color: #429f39;
    color: #fff;
}

.ajax-pagination-reviews__load-more:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.ajax-error {
    color: #f44336;
    padding: 10px;
}


#ingredientsModal .modal-content {
  background: #f5f7f9;
}

#ingredientsModal .modal-body {
    padding: 0;
}

#ingredientsModal .modal-header {
    min-height: 16.43px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 6px 16px -1px rgba(0, 7, 13, 0.09);
}

#ingredientsModal .ingredients-header {
display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
    background: #f6f7f9;
    padding: 10px;
    border-radius: 10px;
}

#ingredientsModal .ingredients-list {
    background: #fff;
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px;
    max-height: 600px;
}

#ingredientsModal .ingredient-item  {

}

#ingredientsModal .ingredient-select  {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f6f7f9;
    padding: 10px;
    border-radius: 10px;
}


#ingredientsModal .ingredient-product  {
display: flex;
    gap: 20px;
    justify-content: space-between;
    border-bottom: solid 1px #eee;
    margin: 10px 0 20px;
    padding: 0 0 20px;
    position: relative;
}

#ingredientsModal .ingredient-product__image.not-selected,
#ingredientsModal .ingredient-product__product-name.not-selected,
#ingredientsModal .ingredient-product__product-price.not-selected {
    opacity: .2;
    pointer-events: none;
}

#ingredientsModal .ingredient-product__image  {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

#ingredientsModal .ingredient-product__image img  {
    width: 100%;
    height: 100%;
    transition: .2s;
}

#ingredientsModal .ingredient-product__image:hover img {
  opacity: .8;
}

.ingredient-product__recept {
   display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ingredient-product__shop {
  position: relative;
}

#ingredientsModal .ingredient-product__info  {
    width: 100%;
}

#ingredientsModal .ingredient-product__ingredient-name  {
   font-weight: 700;
    font-size: 17px;
}

#ingredientsModal .ingredient-product__ingredient-value  {
     font-size: 15px;
    font-weight: 500;
    color: #999;
}

#ingredientsModal .ingredient-product__product-name  {
    font-weight: 600;
    font-size: 17px;
    color: #333;
    transition: .2s;
}

#ingredientsModal .ingredient-product__product-name:hover {
  color: #42ab44;
}

#ingredientsModal .ingredient-product__name-wrapper {
display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#ingredientsModal .ingredient-in-cart-badge {
display: flex;
    padding: 5px 10px;
    background-color: #42ab44;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 10px;
    white-space: nowrap;
}

#ingredientsModal .ingredient-product__product-price  {
    display: flex;
    align-items: center;
    gap: 10px;
}

#ingredientsModal .ingredient-product__product-price .price-new {
   color: #333;
    font-weight: 700;
    font-size: 18px;
}

#ingredientsModal .ingredient-product__product-price .price-for-weight {
   font-size: 15px;
    font-weight: 500;
    color: #999;
}

#ingredientsModal .ingredient-product__product-price .price-new.specials {
    color: red;
}

#ingredientsModal .ingredient-product__product-price .discount-percent {
    background: #ff4d47;
    color: #fff;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 4px;
}

#ingredientsModal .ingredient-product__product-price .price-old {

}


#ingredientsModal  .modal-xl {
max-width: 700px;
    width: calc(100% - 20px);
}

#ingredientsModal input.cus-checkbox[type=checkbox] {
margin: -3px;
    margin-top: 1px\9;
    line-height: normal;
    width: 27px;
    height: 30px;
}

#ingredientsModal .cus-checkbox+span {
    display: flex;
    align-items: center;
    user-select: none;
    width: 100%;
    gap: 5px;
}


#ingredientsModal label {
    margin: 0;
    font-weight: 700;
    font-size: 17px;
}

#ingredientsModal .selected-count {
    font-weight: 500;
    color: #999;
}


#ingredientsModal .modal-footer {
   padding: 20px;
    background: #fff;
    border-radius: 20px;
}




#ingredientsModal .add-product__recept-cart {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 16px;
    background: #42ab44;
    color: #fff;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    border: none;
}

#ingredientsModal .add-product__recept-cart:hover {
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    background-color: #429f39;

}

#ingredientsModal .add-product__recept-cart:active {
   transform: scale(.95);

}

#ingredientsModal .add-product__recept-cart:disabled{
  opacity: .5;
    pointer-events: none;
}


.recept-page__buy-btn.disabled {
      opacity: .5;
    pointer-events: none;
}


#recipeProductsModal .recipe-products-list {
    margin: 0 0 20px;
    padding: 20px;
   max-height: 600px;
}

#recipeProductsModal .ecipe-category-group {
    
}

#recipeProductsModal .recipe-category-title {
    margin: 0 0 20px;
}

#recipeProductsModal .recipe-category-title a {
     color: #333;
    font-size: 18px;
    font-weight: 600;
    transition: .2s;
}

#recipeProductsModal .recipe-category-title a:hover {
    color: #42ab44;
}

#recipeProductsModal .recipe-category-products {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
}

#recipeProductsModal .modal-header {

}

#recipeProductsModal .modal-body {
    padding: 0;
}

#recipeProductsModal .recipe-product-item {
    max-width: 120px;
    position: relative;
}

#recipeProductsModal .recipe-product-item__image {
     position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    
#recipeProductsModal .recipe-product-item__image img {
      transition: .2s;
}



#recipeProductsModal .recipe-product-item__image:before {
    background: #3956730d;
    border-radius: 16px;
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

#recipeProductsModal .recipe-product-item__image:hover img{
  opacity: .8;
}


#recipeProductsModal .recipe-product-item__price {

}

#recipeProductsModal .recipe-product-item__info {
     padding: 10px 5px 0;
}

#recipeProductsModal .recipe-product-item__name {
    color: #333;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
    line-height: 1.3;
    transition: .2s;
    font-weight: 600;
}

#recipeProductsModal .recipe-product-item__name:hover {
    color: #42ab44;
}

#recipeProductsModal .price-new.specials {
    
}

#recipeProductsModal .price-new,
#recipeProductsModal .price-for-weight {
    color: #999;
    font-size: 14px;
}

#recipeProductsModal .discount-percent {
background: red;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
    border-radius: 0 16px;
    padding: 3px 7px;
    position: absolute;
    top: 0;
    right: 0;
}


#recipeProductsModal .price-new {
    
}

#recipeProductsModal .price-for-weight {
    
}

#recipeProductsModal .recipe-category-group:nth-last-child(n+2) {
    border-bottom: solid 1px #eee;
    padding: 0 0 20px;
    margin: 0 0 20px;
}














@media(min-width: 1200px) {
       .recept-category {
    flex: 0 0 25%;
    max-width: 25%;
}
.recept-page {
   display: flex;
    gap: 20px;
}
.fixed-recept__category,
.recept-category__top {
    display: none;
}
}



@media(max-width: 1199px) {
      .recept-category {
   position: fixed;
        height: 100%;
        width: 400px;
        z-index: 1020;
        top: 0;
        background: #fff;
        transform: translateX(-103%);
        transition: .2s ease-in-out;
   }
   .recept-category.active {
    transform: translateX(0);
        left: 0;
   }
   .fixed-recept__category {
    position: absolute;
        right: -52px;
        transition: .2s ease-in-out;
        transform: translateY(200%);
   }
   .recept-category.active .fixed-recept__category {
        transform: translateY(30%);
        right: -50px;
    }
    .recept-category-overlay.active {
    opacity: .5;
    visibility: visible;
}
.recept-category-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .15s linear;
    z-index: 500;
}

.recept-category__top {
   background: #f5f7f9;
        padding: 15px 20px;
        z-index: 1;
        position: relative;
        border-radius: 16px;
        margin: 10px;
}

.recept-category__top-title {
    font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
}
.recept-category__top-icon {
   width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 8px;
}

.recept-category__top-xmark {
    width: 15px;
    height: 15px;
}
.recept-page__card-image {
    padding: 10px;
}
.recept-page__right-detail,
.recept-page__product-item-view,
.recept-page__blocks,
.recipe-review {
    padding: 20px;
}
.recept-page__card-sticker {
    top: 10px;
    left: 10px;
}
.recept-page__card-info,
.recept-page__card-right {
    gap: 10px;
}
}




@media(min-width: 992px) {

}

@media(max-width: 991px) {
  .recept-page__card-info {
    grid-template-columns: repeat(1, 1fr);
}
}

@media(max-width: 767px) {
      .recept-category__card-container {
    grid-template-columns: repeat(2, 2fr);
}
.recept-page__product-item-text {
    display: none;
}
.recept-page__blocks-recept {
    flex-direction: column;
}
.recept-page__blocks-image {
    margin: 0 auto;
}
}


@media(max-width: 550px) {
     .recept-category__card-container {
    grid-template-columns: repeat(2, 2fr);
}

.recept-category__top-title {
    font-size: 17px;
}
.recept-category__all,
.recept-category__list-group,
.recept-category__name-link,
.recept-category__list-group--child,
.recept-category__more-btn,
.ajax-pagination__btn {
    font-size: 14px;
}
.recept-category__img {
    width: 45px;
    height: 45px;
}
.recept-category__image {
    width: 50px;
    height: 50px;
}
.recept-category__detail h4 a {
    font-size: 16px;
}
.recept-category__muted-info span {
    font-size: 13px;
}
.recept-page__blocks,
.recipe-review {
    margin: 10px 0 0;
}
.recept-page__blocks-img {
    max-width: 100%;
}
.recept-page__blocks-image {
        width: 100%;
        height: 100%;
    }
    .recept-page__share-social-icon {
    width: 45px;
    height: 45px;
}
.recept-page__icon-share {
    width: 20px;
    height: 20px;
}
.recept-page__share-social .recept-page__share-icon img {
    width: 35px;
    height: 35px;
}
.recept-page__share-social-action {
    gap: 10px;
}
}

@media(max-width: 480px) {
     .recept-category__title h1,
     .popular-recept h3,
     .recept-page__card h1 {
    font-size: 20px;
}
#ingredientsModal .ingredient-product__product-price .discount-percent {
    font-size: 12px;
}   
.recept-category__card-sticker,
.recept-page__card-sticker,
.recept-page__value,
.recipe_review-user-date,
#recipeProductsModal .price-new,
#recipeProductsModal .price-for-weight {
    font-size: 13px;
}
.recept-page__nut-name,
.recept-page__muted-text,
.recept-page__name,
#ingredientsModal .ingredient-product__product-name,
#ingredientsModal .ingredient-product__product-price .price-new {
    font-size: 15px;
}
.recept-page__more-info,
.recept-page__description-text,
.recept-page__more-ingredients,
.recept-page__buy-btn,
.recept-page__product-view-btn,
.recept-page__blocks-step-description,
.recipe_review-text,
.ajax-pagination-reviews__load-more,
.recipe-review__toggle-btn,
.recipe-review__btn,
#ingredientsModal .selected-count,
#ingredientsModal .ingredient-product__ingredient-value,
#ingredientsModal .ingredient-product__product-price .price-for-weight,
#ingredientsModal .add-product__recept-cart,
#ingredientsModal label,
#ingredientsModal .ingredient-product__ingredient-name,
#recipeProductsModal .recipe-product-item__name   {
    font-size: 14px;
}
.recipe_review-user-name,
.recipe-review__name label,
.recipe-review__entry label,
.recipe-review__rating label{
    font-size: 15px;
}
.recept-page__muted-info span {
    font-weight: 600;
    font-size: 17px;
}
.recept-page__ingredients h3,
.recipe-review__title h3 {
    font-size: 17px;
}
.recept-page__product-item {
    width: 45px;
    height: 45px;
}
.recept-page__product-item img {
    width: 35px;
    height: 35px;
}
.recept-page__product-view {
    position: absolute;
    right: 0;
}
.recept-page__title span {
    font-size: 17px;
}
.recept-page__blocks-step .recept-page__blocks-step-num {
    font-size: 18px;
}
.recept-page__viewShow .plus,
.recipe-review__title .plus,
.recipe_review-rating .star {
    width: 15px;
    height: 15px;
}
.recept-page__viewShow,
.viewShow,
.recipe-review__title .viewShow {
    width: 30px;
    height: 30px;
}

.recept-page__blocks-step {
    margin: 0 0 10px;
}
.recept-page__blocks-recept {
    gap: 10px;
}
.recipe_review-add {
    margin: 10px 0 0;
}
.recipe_review-info,
#ingredientsModal .modal-header,
#ingredientsModal .ingredients-list {
    padding: 15px;
}
#ingredientsModal .modal-title,
#recipeProductsModal .modal-title {
    font-size: 20px;
    text-align: left;
}
#ingredientsModal .modal-close,
#recipeProductsModal .modal-close {
    width: 30px;
    height: 30px;
}
#ingredientsModal .xmark,
#recipeProductsModal .xmark {
    width: 15px;
    height: 15px;
}
#ingredientsModal .ingredient-product__image {
    width: 70px;
    height: 70px;
}
#ingredientsModal .ingredients-list {
    max-height: 350px;
}
#ingredientsModal .modal-footer {
    padding: 10px;
}

}


@media(max-width: 450px) {
      .recept-category__card-container {
    grid-template-columns: repeat(1, 1fr);
}
.recept-category {
    width: 100%;
}
}


















/*//// New Style Recept :: end ////*/
