div.menu_background-gradient{
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    /*background: linear-gradient(88.82deg, #FFFFFF 0.84%, #CAE7CD 97.52%);*/
    }

    div.menu_container{
        margin-top: 100px;
        display: flex; 
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: center;
    }

    div.menu_header-container{
        width: 100vw;
        height: 40vw;
        display: flex;
        margin-top: 100px;
        margin-bottom: 50px;
        justify-content: space-between;
        align-items: center;
    }
    div.menu_header-container > div.menu_title-container{
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 40vw;
        padding: 50px;
        gap: 2vw;
        justify-content: center;
    }
    div.menu_title-container h1{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 7vw;
        color: darkslategray;
    }
    div.menu_title-container p{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 1.5vw;
        color: darkslategray;
    }
     div.menu_title-container h1::after{
        content: '';
        position: absolute;
        left: 0%;
        bottom: -10%;
        width: 5vw;
        height: .7vw;
        background-color: darkslategrey;
     }
    div.menu_header-container > div.menu_banner{
        width: 60vw;
        height: 100%;
        background: url("/assets/img/redesign_images/Redefine_May22-5988.jpg");
        background-size: cover;
        background-position: center;
        transform: translateX(20px);
        border-radius: 20px;
    }
    div.menu_title-container > button.menu_order, button.menu_button{
        background: transparent;
        background-color: rgb(132, 209, 114, .7);
        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;
    }
    /*Meal Card*/
    div.menu_card{
        position: relative;
        display: flex;
        flex-direction: column;
        min-width: 130px;
        min-height: 410px;
        width: 20vw;
        height: 42.5vw;
        margin: 10px;
        border-bottom: 1px solid lightgrey;
    }
   
    div.menu_card > img.meal_image{
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 13px 11px 37px -9px rgba(102,100,100,0.62);
        -webkit-box-shadow: 13px 11px 37px -9px rgba(102,100,100,0.62);
        -moz-box-shadow: 13px 11px 37px -9px rgba(102,100,100,0.62);
        border-radius: 20px;
    }
    
    div.menu_card > div.menu_card-body{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 20px 2px;
        position: relative;
        gap: 10px;
        align-items: center;
    }
    div.menu_card-body > h2{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 2vw;
        text-align: center;
        color: darkslategray;
    }
    div.meal_info > p{
        font-weight: 300;
        font-family: 'Roboto';
        font-size: 12px;
        color: grey;
    }
    div.menu_card-body > div.diet-options, div.meal_info{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        height: fit-content;
    }
    div.meal_info a{
        text-decoration: none !important;
    }
    div.diet-options p{
        font-weight: 300;
        font-family: 'Roboto';
        font-size: 8px;
        color: white;
        border-radius: 20px;
        background-color: darkslategrey;
        padding: 5px 10px;
        text-align: center;
        margin: 0px 2px;
    }
    div.meal_info > a.view_more-button{
        position: relative;
        font-weight: 300;
        font-family: 'Roboto';
        font-size: 15px;
        text-align: center;
        color: rgb(101, 181, 79);
        text-decoration: underline;
    }
    a.view_more-button::after{
        content: '';
        position: absolute;
        background-color: rgb(101, 181, 79);
        bottom: 0px;
        left: 0px;
        width: 0px;
        height: 1px;
        transition: all .15s ease-in-out;
    }
    a.view_more-button:hover::after{
        width: 100%;
    }

    button.add_to_package{
        background: transparent;
        /*background-color: rgb(132, 209, 114, .7);*/
        background-color: rgb(132, 209, 114);
        border: none;
        font-family: 'Roboto';
        font-weight: 300;
        text-align: center;
        font-size: 1.2vw;
        color: white;
        padding: 10px 0px;
        border-radius: 2px;
        white-space: nowrap;
        width: 100%;
        position: relative;
        /*
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);*/

        transition: background-color .15s ease-in-out;
    }

    button.add_to_package:hover{
        /*background-color: rgb(132, 209, 114);*/
        background-color: rgb(132, 209, 114, .7);
    }
    
    img.new_meal_banner{
        position: absolute;
        top: 0px;
        left:0px;
        width: 65%;
        height:auto;
        
    }

    div.menu_info_section{
        display: flex;
        width: 100%;
        height: fit-content;
        justify-content: center;
    }
    div.menu_info_message{
        display: flex;
        width: 80%;
        justify-content: center;
        /*border-bottom: 1px solid lightgrey;*/
    }
    div.menu_info_message p{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 15px;
        text-align: center;
        color: darkslategray;
    }
    
    div.menu_anouncement{
        /*Font styles are with the menu_info_message*/
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 25px 20px;
        margin: 35px 0px;
        border-top: 1px solid lightgrey;
        border-bottom: 1px solid lightgrey;
    }
    div.menu_anouncement p{
        position: relative;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 2vw;
        color: darkslategray;
        text-align: center;
    }

    .menu_product_addedToCart{
        animation-name: menu_product_addedToCart-animation;
        animation-duration: 1.5s;
        animation-iteration-count: 1;
        animation-direction: alternate;
    }

    @keyframes menu_product_addedToCart-animation{
        0%{
            width: 100%;
            border-radius: 2px;
            /*background-color: rgb(132, 209, 114, .7);*/
        }25%{
            width: 100px;
            border-radius: 25px;
            /*background-color: rgb(132, 209, 114);*/
        }50%{
            width: 100px;
            border-radius: 25px;
            /*background-color: rgb(132, 209, 114);*/
        }75%{
            width: 100px;
            border-radius: 25px;
            /*background-color: rgb(132, 209, 114);*/
        }
        100%{
            width: 100%;
            border-radius: 2px;
            /*background-color: rgb(132, 209, 114, .7);*/
        }
    }

    /*Menu Modal*/
    div.menu_modal{
        width: 100%;
        max-width: 100%;
        height: fit-content;
    }
    div.menu_modal_img{
        position: relative;
        width: 100%;
        max-width: 100%;
        height: fit-content;
    }

    div.menu_modal_img::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 15%;
        background-color: white;
        bottom: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
    }

    div.menu_modal_img img{
        width: 100%;
        height: auto;
    }

    div.menu_modal_row{
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: space-between;
        padding: 0px 20px;
        margin: 15px 0px;
    }
    div.menu_modal_row-noflex{
        width: 100%;
        height: fit-content;
        padding: 0px 20px;
        margin: 15px 0px;
    }
    div.menu_modal_row p, h3, p.macros, p.tags, p.tag_header{
        font-weight: 100;
        font-family: 'Roboto';
    }
    div.menu_modal_row p{
        font-size: 15px;
    }
    div.menu_modal_row h3{
        font-size: 30px;
    }

    p.calories, p.tag_header{
        font-weight: bold;
    }
    p.macros{
        border: 1px solid lightgrey;
        border-radius: 25px;
        padding: 10px;
    }

    div.description{
        width: 100%;
        height: fit-content;
        min-height: 40px;
        padding: 15px;
        border: 1px solid lightgrey;
        border-radius: 10px;
    }

    div.description p{
        color: lightgrey;
    }

    p.tag_header{
        font-weight: bold;
    }


    div.nutrition_label{
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        padding: 15px;

    }
    


    /*mobile view*/
@media only screen and (min-width: 1px){
    div.menu_card > img.meal_image{border-radius: 7px;}

    div.menu_card-body > h2{font-size: 4vw;}

    div.meal_info{flex-direction: column-reverse;}

    div.menu_header-container > div.menu_title-container{width: 50vw;}

    div.menu_header-container > div.menu_banner{width: 50vw;}

    div.menu_header-container{height: 60vw;}

    div.menu_header-container > div.menu_title-container{padding: 20px;}

    div.menu_header-container > div.menu_title-container h1{font-size: 10vw;}

    div.menu_header-container > div.menu_title-container p{font-size: 2vw;}

    div.menu_title-container > button.menu_order, button.menu_button{font-size: 3.5vw;}

    button.add_to_package{font-size: 2.5vw;}

    div.menu_modal_row p{font-size: 15px;}
    
    div.menu_modal_row h3{font-size: 30px;}
    
    div.menu_anouncement p{font-size: 20px;}
    
    div.menu_info_message p{font-size: 15px;}
}


/*Desktop and tablet view*/
@media only screen and (min-width: 600px){
    div.menu_card > img.meal_image{border-radius: 10px;}

    div.menu_card-body > h2{font-size: 2vw;}

    div.meal_info{flex-direction: row;}

    div.menu_header-container > div.menu_title-container{width: 40vw;}

    div.menu_header-container > div.menu_banner{width: 60vw;}

    div.menu_header-container{height: 40vw;}   

    div.menu_header-container > div.menu_title-container{padding: 50px;}

    div.menu_header-container > div.menu_title-container h1{font-size: 7vw;}

    div.menu_header-container > div.menu_title-container p{font-size: 1.5vw;}

    div.menu_title-container > button.menu_order, button.menu_button{font-size: 2.5vw;}

    button.add_to_package{font-size: 1.2vw;}

    div.menu_modal_row p{font-size: 20px;}

    div.menu_modal_row h3{font-size: 35px;}
    
    div.menu_info_message p{font-size: 2vw;}
    
    div.menu_anouncement p{font-size: 2.7vw;}
}