div.package_page_container{
        width: 100vw;
        height: fit-content;
        overflow: hidden;
        position: relative;
    }

    div.package_header-container{
        width: 100vw;
        height: 40vw;
        display: flex;
        margin: 100px 0px;
        justify-content: center;
        align-items: center;

    }
    div.package_header-container > div.package_title-container{
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 40vw;
        padding: 5vw;
        gap: 5vw;
        justify-content: space-between;

    }
    div.package_title-container h1{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 7vw;
        color: darkslategray;
    }
    div.package_title-container p{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 1.5vw;
        color: darkslategray;
    }
     div.package_title-container h1::after{
        content: '';
        position: absolute;
        left: 0%;
        bottom: -10%;
        width: 5vw;
        height: 1vw;
        background-color: darkslategrey;
     }
    div.package_header-container > img.package_banner{
        width: 50vw;
        height: auto;
    }
    div.package_title-container > button.package_order{
        background: transparent;
        background-color: rgb(132, 209, 114, 1);
        border: none;
        font-family: 'Roboto';
        font-weight: 100;
        text-align: center;
        font-size: 2vw;
        color: white;
        width: fit-content;
        height: fit-content;
        padding: 10px 3vw;
        border-radius: 2px;
        white-space: nowrap;
        transition: all .15s ease-in-out;
    }
    div.package_title-container > button.package_order:hover{
        background-color: transparent;
        border: 2px solid rgb(132, 209, 114);
        color: rgb(132, 209, 114);
        transition: all .15s ease-in-out;
    }

    div.packages_container{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: fit-content;
        padding: 50px 0px;
    }

    div.package_section_title{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 7vw 0px;
        padding: 0px 20px;
    }

    div.package_section_title h1{
        font-family: 'Roboto';
        font-weight: 100;
        font-size: 6.5vw;
        text-align: left;
    }
    div.package_section_title p{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 2vw;
        color: darkslategray;
        padding: 0 6vw 2vw 6vw;
        border-bottom: 1px solid lightgrey;
    }
    div.package_options{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    /*Package items*/
    div.package_item{
        width: 250px;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid lightgrey;
        border-radius: 20px;
        margin: 10px;
    }
    div.package_item h3{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 30px;
        color: darkslategray;
    }
    div.package_item p{
        font-weight: 300;
        font-family: 'Roboto';
        font-size: 20px;
        color: grey;
    }

    div.package_ui_container{
        width: 100vw;
        height: 100vh;
        min-height: 667px;
        min-height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    div.package_main_container{
        width: 100%;
        height: 100%;
        position: relative;
        border-radius: 15px;
        border: 1px solid lightgrey;
        overflow: hidden;
    }

    div.package_main_container > div.package_header, div.package_footer{
        display: flex;
        position: absolute;
        z-index: 1;
        left: 0px;
        height: 15%;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0px 35px;
        background: white;
        gap: 10px;
    }
    div.package_header{top: 0px;border-bottom: 1px solid lightgrey;}
    div.package_footer{bottom: 0px;border-top: 1px solid lightgrey;}


   div.package_main_container > div.package_product_options{
        width: auto;
        height: 100%;
        overflow-y: scroll;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        padding: 15vh 20px;
        
    }

    div.package_footer > div.meals_selected{
        width: 50%;
        height: 80%;
        overflow-x: scroll;
        border: 1px solid lightgrey;
        border-radius: 10px;
    }
    /*Inner container holds the flex box to allow last added product to be first and to the very left. The outter container above fixes a css bug, allowing flex box scrolling*/
    div.meals_selected_inner{
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        width: fit-content;
        height: 100%;
    }

    div.meals_selected_inner img{
        width: 75px;
        height: 75px;
    }

    div.package_header h2{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 30px;
        color: darkslategray;
    }

    div.package_header h3{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 25px;
        color: grey;
    }

    div.package_footer button{
        background: transparent;
        background-color: rgb(132, 209, 114, .7);
        border: none;
        font-family: 'Roboto';
        font-weight: 100;
        text-align: center;
        font-size: 25px;
        color: white;
        width: fit-content;
        height: fit-content;
        border-radius: 2px;
        white-space: nowrap;
        padding: 10px 45px;
    }

    div.categories_container{
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        height: 100%;
        gap: 10px;
    }

    button.dietary_dropdown{
        width: fit-content;
        height: fit-content;
        padding: 10px 10px;
        border-radius: 60px;
        border: 1px solid lightgrey;
        text-align: center;
        background-color: rgba(250, 250, 250, 0.95);
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 20px;
        color: grey;
    }
    div.settingsBar{
        width: 10%;
        position: fixed;
        top: 0px;
        left: 0px;
        min-height: 50px;
        display: flex;
        gap: 15px;
        /*background-color: rgba(245, 245, 245, 0.95);
        border-bottom: 1px solid lightgrey;
        border-top: 1px solid lightgrey;*/
        padding: 30px;
        z-index: 10;
        visibility: visible; 
        opacity: 1; 
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
    .settingsBar.hidden {
        visibility: hidden;
        opacity: 0; 
      }

    /*Filter Modal*/
    div.filters_container{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 20px 0px;
    }

    h4.filters_section_title{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 25px;
    }

    div.checkmark_filter{
        width: fit-content;
        height: 35px;
        min-height: 35px;
        display: flex;
        gap: 10px;
        flex-direction: row;
        justify-content: center;
        margin: 10px;
    }

    div.checkmark_filter p, div.category_filter p{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 17px;
        text-align: center;
    }

    div.filter_checkbox{
        position: relative;
        width: 30px;
        height: 30px;
        border-radius: 5px;
        border: 1px solid lightgrey;
        cursor: pointer;
    }

    div.category_filter{
        width: fit-content;
        height: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        padding: 10px 30px;
        border: 1px solid lightgray;
        border-radius: 30px;
        margin: 10px;
        cursor: pointer;
    }

    .active_category_filter{
        background-color: rgb(118, 190, 72);
        color: white;
    }

    .active_checkbox_filter{
        background-color: rgb(118, 190, 72);
    }

    .active_checkbox_filter::after{
        content: '';
        position: absolute;
        bottom: 8px;
        right: 8px;
        width: 10px;
        height: 20px;
        border-bottom: 3px solid white;
        border-right: 3px solid white;
        transform: rotate(45deg);
    }
    button.minimal_button{
            width: fit-content;
            height: fit-content;
            border: 1px solid lightgrey;
            border-radius: 10px;
            padding: 20px 35px;
            font-weight: 300;
            font-family: 'Roboto';
            font-size: 3vw;
            margin: 15px 15px;
            background: none;
            color: black;
        }
    button.inline_redefineButton{
            width: fit-content;
            height: fit-content;
            background: transparent;
            background-color: rgb(132, 209, 114, .7);
            padding: 20px 35px;
            font-weight: 300;
            font-family: 'Roboto';
            font-size: 3vw;
            color: white;
            margin: 15px 15px;
            border:none;
    }

    .status_bar_container{
        position: fixed;
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 60px 15px 15px 15px;
        bottom: 0px;
        left: 0px;
        width: 100%;
        flex-direction: column;
        background-color: rgb(255, 255, 255, .90);
    }

    .status_bar{
        width: 60%;
        height: 15px;
        border-radius: 50px;
        position: relative;
        border: 2px solid lightgrey;
        background-color: rgba(250, 250, 250, 0.95);
    }

    .status_bar_display_text{
        position: absolute;
        top: -45px;
        font-size: 25px;
        color: grey;
        /*left is added inline programically*/
        font-weight: 600;
        font-family: 'Roboto';
        transition: font-size .5s ease;
        transition: top .5s ease;
    }
    
    .status_bar_progress{
        background-color: #84D172;
        transition: width 1s ease;
        height: 100%;
        border-radius: 50px;
    }

    .status_bar_message{
        font-family: 'Roboto';
        font-size: 20px;
        font-weight: 600;
        border: 1px solid lightgrey;
        border-radius: 50px;
        padding: 2px 20px;
        background-color: rgb(255, 255, 255, .95)
    }


    @keyframes pop {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.1);
            opacity: 1;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    @keyframes glisten {
        0% {
            text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #84D172, 0 0 30px #84D172, 0 0 40px #84D172;
        }
        50% {
            text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 25px #84D172, 0 0 35px #84D172, 0 0 50px #84D172;
        }
        100% {
            text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #84D172, 0 0 30px #84D172, 0 0 40px #84D172;
        }
    }
    
    .glistening_effect {
        color: #84D172 !important;
        font-size: 35px !important;
        top: -55px !important;
        animation: pop 0.5s ease-out forwards, glisten 1s linear infinite;
    }

    /*Mobile*/
     @media only screen and (min-width: 1px){
        div.package_header-container{
            height: fit-content;
            flex-direction: column;
            margin: 90px 0px;
        }
        div.package_header-container > div.package_title-container{
            width: 95vw;
            gap: 10vw;
        }

        div.package_title-container h1{font-size: 13vw;}

        div.package_title-container h1::after{
            width: 11vw;
            height: 2.5vw;
         }

        div.package_title-container > button.package_order{font-size: 6vw;}

        div.package_header-container > img.package_banner{width: 90vw;}

        div.package_item{
            width: 150px;
            height: 150px;
        }
        div.package_item h3{
            font-size: 22px;
        }
        div.package_item p{
            font-size: 14px;
        }
        div.package_main_container > div.package_header, div.package_footer{
            flex-direction: column;
            height: 20%;   
            justify-content: center; 
        }
        div.categories_container > button.dietary_dropdown{
            font-size: 12px;
        }
        div.package_footer > div.meals_selected{
            width: 80%;
            height: 40%;
        }
        div.package_main_container > div.package_product_options{
            padding: 20vh 20px;
        }
        div.package_footer button{
            font-size: 15px;
            padding: 10px 45px;
        }
        div.categories_container{
            height: fit-content;
            gap: 0px;
        }
        div.meals_selected_inner img{
            width: 50px;
            height: 50px;
        }
        div.package_ui_container{padding: 10px;}
        button.minimal_button, button.inline_redefineButton{
            font-size: 15px;
            width: 300px;
            
        }
        .status_bar_container{
            align-items: flex-start;
        }
     }
     /*Desktop and Tablet*/
    @media only screen and (min-width: 500px){
        div.package_header-container{
            height: fit-content;
            flex-direction: column;
            margin: 90px 0px;
        }
        div.package_header-container > div.package_title-container{
            width: 95vw;
            gap: 3vw;
        }

        div.package_title-container h1{font-size: 7vw;}

        div.package_title-container h1::after{
            width: 5vw;
            height: 1vw;
         }

        div.package_title-container > button.package_order{font-size: 2vw;}

        div.package_header-container > img.package_banner{width: 50vw;}

        div.package_item{
            width: 250px;
            height: 250px;
        }
        div.package_item h3{
            font-size: 30px;
        }
        div.package_item p{
            font-size: 20px;
        }
        div.package_main_container > div.package_header, div.package_footer{
            flex-direction: row;
            height: 15%;  
            justify-content: space-between;  
        }
        div.categories_container > button.dietary_dropdown{
            width: fit-content;
            font-size: 20px;
        }
        div.package_footer > div.meals_selected{
            width: 50%;
            height: 80%;
        }
        div.package_main_container > div.package_product_options{
            padding: 15vh 20px;
        }
        div.package_footer button{
            font-size: 25px;
            padding: 10px 45px;
        }
        div.categories_container{
            height: 100%;
            gap: 10px;
        }
        div.meals_selected_inner img{
            width: 75px;
            height: 75px;
        }
        div.package_ui_container{padding: 20px;}
        button.minimal_button, button.inline_redefineButton{
            font-size: 2vw;
            width: fit-content;
        }
        .status_bar_container{
            align-items: left;
        }
    }
    @media only screen and (min-width: 700px){
        .status_bar_container{
            align-items: center;
        }
        div.package_header-container{
            height: 40vw;
            flex-direction: row;
            margin: 100px 0px;
        }
        div.package_header-container > div.package_title-container{
            width: 40vw;
            gap: 3vw;
        }
    }