.menu_page
{
    padding: 75px 0;
}

.menu_space
{
    width: 1366px;
    max-width: 100%;
    margin: 0 auto;
    padding: 25px 50px 50px 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu_space svg 
{
    width: 40px;
    fill: pink;
    filter: drop-shadow(0 0 5px lightgray);
}

.line
{
    width: calc(50% - 40px);
    border: 1px solid pink;
}

.nav_menu
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 1366px;
    max-width: 100%;
    margin: 0 auto;
}

.nav_menu p
{
    width: calc(100% / 7);
    user-select: none;
}

.nav_catering_menu p
{
    width: calc(100% / 9);
}

.nav_menu p:hover
{
    cursor: pointer; 
    color: pink;
    text-shadow: 0 0 4px;
}

.active
{
    color: pink;
}

.menu_box
{
    display: none;
    width: 1366px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.menu_box_active
{
    display: block;
}

.menu_box header
{
    text-align: center;
    margin-bottom: 25px;
}

.menu_box header span
{
    font-weight: bold;
}

.menu_box p
{
    text-align: center;
    margin: 5px 0;
    font-style: italic;
}

.menu_box ul
{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    color: rgb(63, 63, 63);
}


.menu_box ul li span
{
    font-weight: bold;
}

.menu_box table
{
    margin: 0 auto;
    border-collapse: collapse;
}

.menu_box table td, .menu_box table th
{
    padding: 5px;
    border-bottom: 1px solid pink;
}

.menu_gallery
{
    margin: 50px 0 25px 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}

.menu_gallery img
{
    height: 200px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px -3px gray;
}


.order_button
{
    position: sticky;
    bottom: 20px;
    left: calc(50% - 100px);
    width: 200px;
    box-sizing: border-box;
    background: linear-gradient(45deg, rgba(246,156,196,1) 0%, rgb(255,184,175) 100%);
    display: block;
    text-align: center;
    box-shadow: 0 3px 10px -1px black;
    border-radius: 10px;
    border: 4px solid white;
    margin-top: 60px;
    outline: none;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    padding: 20px 0;
    text-decoration: none;
}

.order_button::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: -59px;
    border: 2px solid pink;
    width: 40px;
    box-shadow: 0 2px 10px 0px black;
    border-radius: 10px;
    height: 1px;
    background-color: white;
}

.order_button::after
{
    content: "";
    position: absolute;
    top: 50%;
    right: -59px;
    border: 2px solid pink;
    width: 40px;
    box-shadow: 0 2px 10px 0px black;
    border-radius: 10px;
    height: 1px;
    background-color: white;
}

.menu_page .button_section .button
{
    min-width: 100px;
    text-align: center;
    margin: 5px;
}

.noimportant
{
    background-color: #fccdde;
}

.menu_page img
{
    width: 1200px;
    max-width: 90%;
    margin: 10px auto;    
    display: block;
    box-shadow: 0px 5px 10px -5px gray;
}


.menu-order-online
{
    font-weight: bold;
    color: maroon !important;
}