    /**
    * MyGroceryPlan Plugin - Sticky Styles
    * 
    * This file contains the CSS styles for the MyGroceryPlan WordPress plugin for stickies.  
    * This is the persistent list that pinned to the bottom of the Weekly Meals
    *
    * @package   MyGroceryPlan
    * @version   1.0.0
    * @author    Shawn Pick
    * @license   GPL-2.0+
    * @link      https://mygroceryplan.ca
    * @since     1.0.0
    */


    #sticky-lists {
        margin-bottom: 40px;
    }

    #sticky-lists .button_holder {
        display: flex;
        justify-content: stretch;
        margin-bottom: 0px;
    }

    #sticky-lists .button_holder p {
        margin: 0;
        font-size: 20px;
    }

    #sticky-lists .button_holder .sticky-btn {
        background-color: #f56407;
        color: #fff;
        border: 1 px solid #f56407;
        box-shadow: none;

        display: inline-flex;
        align-items: center;
        color: white;
        border: none;
        padding: 10px 10px 10px 15px;
        cursor: pointer;
        text-align: left;
        font-size: 16px;
        border-radius: 20px 0 0 20px !important;
        transition: background-color 0.3s ease-in-out;
        flex-grow: 1;
        max-width: calc(100% - 70px);
        white-space: wrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #sticky-lists .list-holder {
        text-align: center;
    }

    #sticky-lists .list-holder ul {
        display: inline-block;
        list-style: none;
        margin: 0;
        padding: 0;
        background-color: transparent;
        width: 90%;
    }

    #sticky-lists ul li {
        text-align: left;
        background-color: #e4e4e4;
        border-bottom: 1px solid #ccc;

        position: relative;
        padding: 10px 15px 10px 0;
        word-wrap: break-word;
        word-break: break-word;
    }

    body.elementor-kit-6 .mgp-recipes #sticky-lists ul li select {
        display: inline-block;
        padding: 5px;
        margin: 0 0 5px 0;
        width: 100%;
        background-color: transparent;
        border-radius: 20px;
        line-height: 20px;
        background-color: #fff;
        font-size: 20px;
    }

    body.elementor-kit-6 .mgp-recipes #sticky-lists ul li span {
        padding-left: 8px;
    }

    body.elementor-kit-6 .mgp-recipes #sticky-lists ul li.span {
        padding-left: 10px;
    }

    body.elementor-kit-6 .mgp-recipes #sticky-lists ul li.needError .need {
        padding-right: 10px;
    }


    #sticky-lists  ul li:last-child {
        border:none;
        border-radius: 0 0 20px 20px;
    }

    #sticky-lists  ul li span {
        font-size: 20px;
    }



    #sticky-lists .button_holder .sticky-add {
    border-radius: 0 20px 20px 0 !important;
        background-color: #fff;
        border: 1px solid #01a800;
        color: #01a800;
        padding: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
        flex-shrink: 0;
        width: 70px;
        font-size: 40px;
        line-height: 20px;
        box-shadow: none;

    }

    #sticky-lists .list-holder .need {
        padding: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        float: right;
        color: #292929;
        font-size: 20px;
    }


    #sticky-lists .list-holder .ingredentInput div {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;

        text-align: left;
        background-color: #e4e4e4;
        padding: 10px;
        /* border-bottom: 1px solid #ccc; */

    }

    #sticky-lists .list-holder .ingredentInput div select {
        display: inline-block;
        padding: 5px;
        margin: 0 0 5px 0;
        width: 100%;
        background-color: transparent;
        border-radius: 20px;
        line-height: 20px;
        background-color: #fff;
        flex: 0 1 48%;
        margin-bottom: 10px;
        font-size: 20px;
    }

    #sticky-lists .list-holder button.stickyEdit-btn {
        display: inline-block !important;
        background-color: transparent !important;
        padding: 0;
        margin: 0;
        color: #888;
        border: none !important;
        box-shadow: none;
        vertical-align: middle;
    }

    #listitem_name{
        display: inline-block;
        padding: 0 0 0 10px;
        margin: 0;
        flex: 1 1 0;
        border-radius: 20px 0 0 20px;
        border: none;
    }

    .customizeList {
        display: none;
        position: fixed;
        top: 1%;
        left: 50%;
        width: 50%;
        transform: translate(-50%);
        background-color: #f1f1f1;
        border-radius: 10px;
    }


    /* VIBE STARTED */
    #stickyCustomPanel {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 9999 !important;
        display: none;
        background-color: #ebeaea;
        border-radius: 20px;
        padding: 15px;
        border: 1px #999 solid;
        max-width: 350px;
    }



    #stickyCustomPanel .recipe-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
    }

    #stickyCustomPanel .recipe-header a {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #007bff;
    white-space: nowrap;
    }

    #stickyCustomPanel .recipe-header h4 {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    }






    .colors {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    }


    .color-option {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    }


    .color-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    margin: 0;
    cursor: pointer;
    }


    .color-option.selected::after {
    content: "\2713";
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 23px;
    color: white;
    }


    .upgrade {
    background: #eaf3ff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    }


    .upgrade button {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 8px;
    }


    .upgrade button:hover {
    background: #005fcc;
    }


.recipeFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.recipeLeft {
  flex: 1 1 40%;
}

.recipeRight {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.full-height {
  height: 100%;
}

.recipeSection,
.recipe-title-section {
  margin-bottom: 24px;
}

.recipeSection i,
.recipe-title-section i {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 6px;
  color: #555;
}

.recipeSection label,
.recipe-title-section label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  clear: both;
}

.recipeLeft .recipeDisplay div label,
.recipeLeft .recipeDisplay div label {
    clear: both;
}

.recipeDisplay div div   {
    display: flex
;
    flex-direction: column;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -ms-flex-item-align: center;
}

.recipeSection p,
.recipe-title-section p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6em;
  white-space: pre-wrap;
}

@media screen and (max-width: 768px) {
  .recipeFlex {
    flex-direction: column;
  }

  .recipeLeft,
  .recipeRight {
    flex: 1 1 100%;
  }
}

.recipeLeft::-webkit-scrollbar,
.recipeRight::-webkit-scrollbar {
  width: 6px;
}
.recipeLeft::-webkit-scrollbar-thumb,
.recipeRight::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}






@media screen and (max-width: 768px) {
  .recipeFlex {
    flex-direction: column;
  }

  .recipeLeft, .recipeRight {
    flex: 1 1 100%;
  }
}

    /* VIBE ENDED */





    @media screen and (max-width: 1024px) {
        #sticky-lists .list-holder .ingredentInput div select,
        #sticky-lists .list-holder .need,
        #sticky-lists  ul li span,
        #sticky-lists .button_holder .sticky-btn,
        #sticky-lists .button_holder p {
            font-size: 16px;
        }



    }
    