

.stop-scroll {
    position: fixed;
    top: 0px;
    inline-size: 100%;

    position: fixed; top: 0px; left: 0px; right: 0px; width: 100%;
 
}

.recipe-details-popup {
    background-color: #00000046;
    position: fixed;
    left:0; top:0;
    width: 100%; height: 100%;
    z-index: 100001;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    display: none;


    overflow-y: scroll;

    padding: 100px 0;

     backdrop-filter: blur(3px); 
}


.recipe-details-popup.show {
    display: flex;
}

    .recipe-details-popup__container {
        background-color: #fff;
        border-radius: 32px;
        width: 100%;
        max-width: 800px;
       
    }

    .reicpe-details-popup__wrapper {
        padding: 32px;
        min-width: 280px;
        box-sizing: border-box;
    }


    .recipe-details-popup__head {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .reicpe-details-popup__content {
        margin: 32px 0;
    }

    .reicpe-details-popup__footer {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }


    .recipe-details-popup__close-icon {
        width: 32px; height: 32px;
        
    }

        .recipe-details-popup__close-icon svg {
            width: 100%; height: 100%;
            fill:#127954;   
        }

    .recipe-details-popup__click-action {
        cursor: pointer;
    }

    .regular-button {
        padding: 10px 32px;
        border: 2px solid var(--green-color);
        border-radius: 24px;
        width: auto;
        color: var(--green-color);
        font-family: var(--header-font);
        font-weight: 600;
        text-align: left;
        background:#fff;

        display: inline-block;
        
    }

    .recipe-details-popup__recipe-head {
        display: flex;
        justify-content: space-between;

        margin: 24px 0;
        margin-top: 16px;
        border-bottom:1px solid #000;
        padding-bottom: 24px;
    }

    .recipe-details-popup__title {
        font-weight: bold;
    }

    .recipe-details-popup__recipe-details {
        display: flex;
        align-items: center;

        width: 100%;
    }

    .recipe-details-popup__recipe-details span.time {
        padding-left: 0;
    }

    .recipe-details-popup__recipe-image {
        width: 300px; height: 300px;
        min-width: 300px;
        margin-right: 32px;
        
    }

     .recipe-details-popup__recipe-image picture {
        width: 100%; height:100%;
     }

      .recipe-details-popup__recipe-image picture img {
        width: 100%; height: 100%;
        object-fit: cover;
        border-radius: 30px;
      }

    .recipe-details-popup__recipe-title {
        font-size: 36px;
        font-weight: bold;
        line-height: 1.3;
    }