﻿
:root {
    /*--button-color-1: #fc4a1a;*/
    --button-color-1: gray;
    --button-color-selected: black;
    --dark-color: #242e4c;
    --light-color: #f7f9fc;
    --red-color: #fc4a1a;
    --red-light: #FFCFD2;
    --orange-color: #ffc107;
    --green-color: #28a745;
    --green-light: #B9FBC0;
    /*--button-border-color-1: #fc4a1a;*/
    --button-border-color-1: #d7d7d7;
    --button-border-color-selected: #fc4a1a;
    /*--header-background-color: #f0f3f7;*/
    --header-background-color: #242e4c;
    --header-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.preview-meal {
    font-size: 14px;
    
    color: #fff;
    /*border-radius: 0px 0px 0px 15px;*/
    text-align: left;
    letter-spacing: 0.05em;
    padding: 5px 15px;
    border-bottom: 1px solid;
    /*border: 1px solid red;*/
}
.preview-string {
    display: inline-block;
    width: 80%;
}
.preview-price {
    float: right;
    font-weight: 800;
}

#printBongContainer * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

#printBongContainer .order-text-headline * {
    font-weight: bolder;
}

#keyPadInputContainer {
    margin: 0.5rem !important;
}

#keyPadInput {

}

#paymentCartItemsContent div:last-child {
    border-bottom: 0px;
}
#paymentCartItemsContent .material-icons {
    display: none;
}
#paymentCartItemsContent .order-text {
    display: none;
}

/* General badge styling */
.badge {
    display: inline-block;
    padding: 0.5em 0em 0.5em 0em;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    color: white;
    text-align: center;
}

    /* Success badge */
    .badge.success {
        background-color: var(--green-color);
        color: white;
    }

    /* Info badge */
    .badge.info {
        background-color: #17a2b8; /* Blue */
        color: white;
    }

    /* Warning badge */
    .badge.warning {
        background-color: var(--orange-color);
        color: black;
    }

    /* Error badge */
    .badge.error {
        background-color: var(--red-color);
        color: white;
    }

.blinking {
    color: red;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    /* Fully visible */
    50% {
        opacity: 0;
    }
    /* Hidden */
}

.cart-menu-button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 0px 10px 0px;
    width: 100%;
    flex-wrap: wrap;
    gap: 2px;
}

.cart-menu-button {
    /*margin-bottom: 3px;*/
    flex: calc(20%);
    font-size: 14px;
}

@media (max-width:1400px) {
    .cart-menu-button {
        padding: 6px 10px !important;
    }
}

.cart-icon {
    font-size: 50px !important;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: absolute;
    top: 125px;
    font-size: 380px !important;
    opacity: 0.075;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: white;
}

.full-height {
    height: 100vh;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
}

.full-width {
    width: 100%;
}

.d-block {
    display:block !important;
}

.cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 50px;
    white-space: nowrap;
}

.full-height::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for WebKit-based browsers (e.g., Chrome, Safari) */
body::-webkit-scrollbar {
    display: none;
}

.sold-out {
    color: var(--red-color);
    background-color: var(--light-color);
    box-shadow: 1px 0px 5px rgba(0, 0, 0, 1);
    font-size: 12px;
    text-transform: lowercase;
    padding: 3px 5px;
    border-radius: 8px;
    position: absolute;
    top: -2px;
    left: -2px;
}

.nav-menu-container {
    background-color: var(--dark-color);
}

.nav-cart-container {
    background-color: var(--light-color);
    display: flex;
    flex-direction: column; /* stacks children vertically */
    height: 100%; 
}

#cartMain {
    flex: 1; /* takes the remaining height of the "container" div */
    overflow: auto; /* to scroll just the "main" div */
/*    padding-left: 1rem;
    padding-right: 1rem;*/
    background-color: white;
    border-radius: 12px;
    border: 1px solid;
    border-color: #d7d7d7;
}

.spinner {
    border: 0.2vw solid #f3f3f3; /* Light grey */
    border-top: 0.2vw solid #3498db; /* Blue */
    border-radius: 50%;
    width: 1vw;
    height: 1vw;
    animation: spin 2s linear infinite;
}

/* Keyframes for the spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

    /* custom scrollbar */
    #cartMain::-webkit-scrollbar {
        width: 20px;
    }

    #cartMain::-webkit-scrollbar-track {
        background-color: transparent;
    }

    #cartMain::-webkit-scrollbar-thumb {
        background-color: #d6dee1;
        border-radius: 20px;
        border: 6px solid transparent;
        background-clip: content-box;
    }

        #cartMain::-webkit-scrollbar-thumb:hover {
            background-color: #a8bbbf;
        }

    .position-relative {
        position: relative;
    }

    .color-background-light-blue {
        background-color: #f7f9fc;
    }

    .color-background-light-gray {
        background-color: #d3d3d3;
    }

    .color-background-dark-gray {
        background-color: darkgray;
    }

    .content-container {
        /*    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;*/
    }

    .category-hidden-style {
        display: none !important;
    }

.menu-button-container {
    /*margin-top: 0.5rem;*/
    display: flex;
    width: 100%;
}

    .responsive {
        max-width: 100%;
        height: auto;
    }

    .float-left {
        float: left;
    }

    .float-right {
        float: right;
    }

    .hidden {
        display: none !important;
    }

    @media ( max-width: 1600px) {
        .hidden-xl {
            display: none !important;
        }
    }

    @media ( max-width: 1200px) {
        .hidden-lg {
            display: none !important;
        }
    }

    @media ( max-width: 800px) {
        .hidden-sm {
            display: none !important;
        }
    }


    .overflow-hidden {
        overflow: hidden;
    }

    /*MARGIN*/

    .m-1 {
        margin: 1rem;
    }

    .m-2 {
        margin: 2rem;
    }

    .m-3 {
        margin: 3rem;
    }

    .ml-1 {
        margin-left: 1rem;
    }

    .ml-2 {
        margin-left: 2rem;
    }

    .ml-3 {
        margin-left: 3rem;
    }

    .mr-1 {
        margin-right: 1rem;
    }

    .mr-2 {
        margin-right: 2rem;
    }

    .mr-3 {
        margin-right: 3rem;
    }

    .mt-1 {
        margin-top: 1rem;
    }

    .mt-2 {
        margin-top: 2rem;
    }

    .mt-3 {
        margin-top: 3rem;
    }

    .mb-1 {
        margin-bottom: 1rem;
    }

    .mb-2 {
        margin-bottom: 2rem;
    }

    .mb-3 {
        margin-bottom: 3rem;
    }

    /*PADDING*/

    .p-1 {
        padding: 1rem;
    }

    .p-2 {
        padding: 2rem;
    }

    .p-3 {
        padding: 3rem;
    }

    /* ALIGN */

    .valign-bottom {
        vertical-align:bottom;
    }
    .valign-top {
        vertical-align: top;
    }
    .valign-middle {
        vertical-align:middle;
    }

    .text-align-left {
        text-align: left;
    }

    .text-align-center {
        text-align: center;
    }

    .text-align-right {
        text-align: right;
    }

    /* BADGE */

.badge-nr-of-items {
    /*font-family: monospace;*/
    /*padding: 0.025rem 0.25rem;*/
    width: 100%;
    background-color: black;
    color: white !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /*margin-right: 5px;*/
}

        .badge-nr-of-items span {
            color: white !important;
        }

.badge-meal-code {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    font-weight: bold;
    background-color: #000;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 0px 6px 0px;
    padding: 0.15rem 0.4rem;
}

    .badge-light {
        
        background-color: #d7d7d7;
        color: black;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 2px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }


    /*BUTTONS*/

    .btn {
        padding: 10px 20px;
        text-align: center;
        display: inline-block;
        border: 2px solid;
        border-color: #d7d7d7;
        border-radius: 8px;
        cursor: pointer;
        /* Do not mark text in button */
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
        transition-duration: 0.4s;
    }

        .btn:hover {
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            /*filter: brightness(95%);*/
            /*background-color: #f7f9fc;*/
            /*transform: translateY(0.1rem);*/
        }

        .btn:active {
            transform: translateY(0.2rem);
        }

    .btn-large {
        font-size: 18px !important;
        padding: 15px 20px;
    }

    .btn-medium {
        
    }

    .btn-small {
        font-size: 12px !important;
        padding: 5px 10px;
    }

    .btn-xsmall {
        padding: 2px 5px;
    }

    .btn-blue {
        background-color: #f0f3f7;
        color: #242e4c;
    }

    .btn-red {
        background-color: var(--red-color)!important;
        color: #fff;
    }

    .btn-dark {
        background-color: var(--dark-color);
        color:#fff;
    }

    .btn-orange {
        background-color: var(--orange-color);
        color: #fff;
    }

    .btn-green {
        background-color: var(--green-color);
        color: #fff;
    }

    .btn-add-extra {
        background-color: #fff;
        border-color: var(--button-border-color-1);
        color: var(--button-color-1);
    }

    .btn-select-type {
        background-color: #fff;
        border-color: var(--button-border-color-1);
        color: var(--button-color-1)!important;
    }

.btn-select-option {
    /*background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--light-color);*/
    flex: 1 1 auto;
}

.ingredient-button {
    position: relative;
    padding: 0px 12px;
}

.btn-add-corner {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    
    /*font-size: 18px;*/
    line-height: 1em;
    background-color: #fc4a1a;
    color: #fff;
    /*width: 1em;
    height: 1em;*/
    text-align: center;
    justify-content: center;
    display: inline-block;
    border: 1px solid;
    border-color: #fc4a1a;
/*    border-radius: 50%;*/
    border-radius: 10%;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
}

    .btn-add-corner {
        position: absolute;
        top: 0.4rem;
        right: 0.5rem;
    }

    /*.btn-add-to-cart {
        border: none;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-right: 8px;
    }*/

    div.menu-header > div > div > span.ft-data-column.text-center {
        flex: 4;
    }

    @media ( max-width: 800px) {
        .btn-add-to-cart {
            width: calc(100% - 20px);
            box-sizing: border-box;
        }
    }

    @media ( max-width: 800px) {
        .btn-add-extra {
            flex: 100%;
        }
    }

.selected {
    background-color: var(--green-light);
    color: var(--button-color-selected) !important;
    border: 2px solid var(--button-border-color-selected) !important;
}

#selectModalContent > .selected {
    background-color: var(--green-light) !important;
    border: 2px solid #49a349 !important;
}

.selected-light {
    box-shadow: 0px 0px 1px 1px rgba(255,255,255,1);
    -webkit-box-shadow: 0px 0px 1px 1px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 1px 1px rgba(255,255,255,1);
    color: var(--button-color-selected) !important;
}

.selected-dark {
    box-shadow: 0px 0px 1px 1px rgba(0,0,0,1);
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 1px 1px rgba(0,0,0,1);
}

.btn-not-selected {
    background-color: #fff;
    border-color: #9197a5;
    color: #9197a5;
        
    /*font-size: 18px;*/
}

.btn-included {
    /*background-color: #fff;*/
    background-color: var(--green-light) !important;
    border-color: var(--button-border-color-selected) !important;
    color: var(--button-color-1);
}

    @media ( max-width: 800px) {
        .btn-included {
            flex: 100%;
        }

        .btn-excluded {
            flex: 100%;
        }
    }

.btn-excluded {
    background-color: #fff;
    color: #9197a5!important;
    /*background-color: var(--red-light)!important;*/
    /*color: #fff!important;*/
}
    .btn-excluded.selected {
        border: 2px solid #9197a5 !important;
    }

    .btn-block {
        width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .btn-margin {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    @media ( max-width: 1200px) {
        #cartSummaryHeadline {
            display: none;
        }
    }

    /* CART ITEM*/
    .cart-item-flex-head {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cart-item-head-item {
    }


    /* ORDER TYPE */
.order-type-flex-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
    margin-bottom: 0.25em;
}

    .btn-order-type {
        /*flex-grow: 1;*/
        flex: calc(25% - 1em);
        align-content:center;
    }

    @media ( max-width: 1200px) {
        .btn-order-type {
            flex: calc(100% - 1em);
        }
    }

    .general-button-container {
        display: flex;
        justify-content: space-between;
    }

    /* CART PAY */
    .cart-summary-flex-button-container {
        display: flex;
        flex-wrap: wrap;
    }


    .btn-cart-summary {
        /*flex-grow: 1;*/
        flex: calc(25% - 1em);
    }

    @media ( max-width: 1200px) {
        .btn-cart-summary {
            flex: calc(100% - 1em);
        }
    }

    .menu-extra-button-flex > * {
        /* Do not mark stuff in add/remove container */
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    }


    .add-remove-container {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin-right:35px;
    }

.btn-add, .btn-remove {
    
    line-height: 2em;
    /*background-color: var(--dark-color);*/
    background-color: var(--dark-color);
    color: #fff;
    height: 2em;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*.btn-add {
    width: 4em;
}
.btn-add > i {
    margin-right:3px;
}*/

.add-remove-input {
    background-color: unset;
}

.btn-round {
    
    font-size: 18px;
    line-height: 2em;
    background-color: #fc4a1a;
    color: #fff;
    width: 2em;
    height: 2em;
    text-align: center;
    justify-content: center;
    display: inline-block;
    border: 1px solid;
    border-color: #fc4a1a;
    border-radius: 50%;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
}

.btn-color-scheme {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 2em;
    background-color: #fff;
    color: #000;
    width: 2em;
    height: 2em;
    text-align: center;
    justify-content: center;
    border: 1px solid;
    border-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
}

    .btn-back {
        border: none;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-left: 8px;
        background-color: #f0f3f7 !important;
        color: black !important;
    }

    /*.btn-back {
    
    font-size: 18px;
    line-height: 2em;
    background-color: #fc4a1a;
    color: #fff;
    width: 2em;
    height: 2em;
    text-align: center;
    justify-content: center;
    display: inline-block;
    border: 1px solid;
    border-color: #fc4a1a;
    border-radius: 50%;
    cursor: pointer;

    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
}*/

    .add-meal-button-sm-container {
        position: sticky;
        top: 4rem;
    }

    @media ( max-width: 800px) {
        .add-meal-button-sm-container {
            display: block;
        }

        .add-meal-button-lg-container {
            display: none;
        }
    }

    @media ( min-width: 800px) {
        .add-meal-button-sm-container {
            display: none;
        }

        .add-meal-button-lg-container {
            display: block;
        }
    }


.total-items {
    
    line-height: 2em;
    background-color: none;
    color: #000;
    /*padding: 1rem 1rem;*/
    text-align: center;
    display: flex;
    border: 1px none;
    margin: 0.25em;
    padding-right: 0.25em;
}

    @media ( max-width: 800px) {
        .total-items {
            padding: 0.5rem 0.5rem;
        }
    }

.total-items input {
    padding: 0;
    
    border: 0;
    outline: 0;
    width: 1em;
    outline: none !important;
    text-align: center;
}

.text-total-items {
    margin-left: -10px;
    margin-right: 10px;
    text-align: left;
    max-width: 60%;
}

.text-price {
    
    /*margin-left: 10px;
        margin-right: 10px;*/
    margin-left: auto;
    margin-right: 30px;
    border-radius: 10px;
    padding: 5px 15px;
}

    .text-strike-through {
        text-decoration: line-through;
    }

    .code-style {
        font-family: monospace !important;
    }

    /*TEXT*/
    .text-center {
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .text-right {
        text-align: right;
    }

    .text-heavy {
        /*font-family: apexnew-heavy;*/
    }

    .tracking-nr-container {
        font-size: large;
        border: 1px solid;
        border-color: #000;
    }

    .text-medium {
        
    }

    .text-light {
        /*font-family: apexnew-light;*/
    }

    .text-color-white {
        color: white !important;
    }

    .text-color-gray {
        color: #777777 !important;
    }

    .text-color-black {
        color: black !important;
    }

    .text-discount-color {
        color: var(--orange-color);
    }

    .text-bold {
        font-weight:bold;
    }

    .headline-heavy {
        font-size: xx-large;
        display: block;
    }

    .headline-large {
        
        font-size: large;
        color: #242e4c;
        display: block;
    }

    .headline-medium {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .headline-light {
        /*font-family: apexnew-light;*/
        font-size: medium;
        color: #242e4c;
        margin-bottom: 5px;
        margin-top: 5px;
        display: block;
    }


    /*#printBongContainer {
    font-size: 14px !important;
}
#printBongContainer .order-text-headline {
    font-size: 14px !important;
}

#printBongContainer .order-text {
    font-size: 14px !important;
}*/

    /*MENU*/
    /*.menu-header {
    position: sticky;
    top: 0;
    left: 0;
    margin: 0px;
    background-color: var(--header-background-color);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    padding: 0.5rem;
    align-items: center;
    height: 3rem;
    border-bottom: 1px solid;
    border-color: #d7d7d7;*/
    /*box-shadow: var(--header-box-shadow);*/
    /*}*/
.menu-header {
    border-bottom: 2px solid;
    border-color: rgba(255,255,255,0.3);
    /*margin-bottom: 15px;*/
    /*margin-left: 20px;
    margin-right: 20px;*/
}

        .menu-header .ft-data-row {
            min-height: 78px;
        }

/*.menu-flex-button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    gap:2px;
}*/

.menu-button-container {
    gap: 0.25em;
    margin-bottom: 0.25em;
}

    .menu-button-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        /*margin: calc(0.5em - 2px);*/ /*compensate for border*/
        flex: calc(25% - 1em); /*Default 4 kolumner*/
        transition-duration: 0.4s;
        text-align:center;
    }

        .menu-button-flex:active {
            transform: translateY(0.4rem);
        }

        .menu-button-flex:hover {
            box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 1px;
        }

    /*Tre kolumner*/
    @media ( max-width: 1260px) {
        .menu-button-flex {
            flex: calc(33.33% - 1em);
        }
    }

    /*Två kolumner*/
    @media ( max-width: 1080px) {
        .menu-button-flex {
            flex: calc(50% - 1em);
        }
    }

    /*En kolumn*/
    @media ( max-width: 960px) {
        .menu-button-flex {
            flex: calc(100% - 1em);
        }

        .cart-icon {
            font-size:36px!important;
        }
    }

    /* ADD EXTRA */

.add-extra-container {
    position: relative;
    text-align: center;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px 0px 25px;
}
.add-extra-container * {
    font-size:14px!important;
}

.extra-ingredient-added > .card {
    border-color: #49a349 !important;
    background-color: var(--green-light);
    border-width: 2px;
}
/*.add-extra-container > .add-remove-container > .btn-add {
        display:none;
    }*/
@media only screen and (max-width: 1400px) {
}

    .selected-terminal {
        background-color: var(--orange-color);
        color:white;
    }

.menu-extra-button-flex {
    /*flex-basis: calc(50% - 1em);*/
    /*margin: calc(0.5em - 2px);*/ /*compensate for border*/
    flex-basis: calc(33.33% - 2px);
    display: flex;
    justify-content: left;
    align-items: center;
}
    .menu-extra-button-flex > .card {
        margin: 4px;
        padding: 6px 0px;
    }

    @media ( max-width: 1200px) {
        .menu-extra-button-flex {
            flex-basis: calc(33% - 1em);
        }
    }

    @media ( max-width: 1200px) {
        .menu-extra-button-flex {
            flex-basis: calc(50% - 1em);
        }
    }



    .menu-button {
        /*border: 1px solid;*/
        /*border-color: #d7d7d7;*/
        position:relative;
        border-radius: 12px;
        color: black;
        cursor: pointer;
        height: 3em;
    }

    .menu-button-dish {
        background-color: #fff;
    }

    .has-extra-items {
        color: #242e4c;
    }


    /* CART */

    .grid-area-list {
        padding: 1rem;
    }

    /*.cart-header {
    position: sticky;
    top: 0;
    left: 0;
    margin: 0px;
    background-color: var(--header-background-color);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    padding: 0.5rem;
    align-items: center;
    height: 3rem;
    border-bottom: 1px solid;
    border-color: #d7d7d7;*/
    /*box-shadow: var(--header-box-shadow);*/
    /*}*/

    #cartHeaderContainer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem;
    }

    #cartFlexContainer {
        display: flex;
        flex-direction: column;
        min-height: 100%; /* Full height of the viewport */
    }

    #cartRowsFlexContainer {
        padding-left: 1rem;
        padding-right: 1rem;
        background-color: white;
        border-radius: 12px;
        border: 1px solid;
        border-color: #d7d7d7;
        margin: 1rem;
        display: flex;
        flex-direction: column;
        flex: 1 1 auto; /* Allow flex-container to grow and shrink */
        overflow-y: auto; /* Enable vertical scrolling */
        min-height: 0; /* Allow container to shrink */
    }

    #cartRowsContainer {
    }

    .cart-row-container {
        border-bottom: 1px;
        border-color: #d7d7d7;
        border-bottom-style: solid;
        padding: 0.5rem;
        cursor: pointer;
        /*font-family: apexnew-light;*/
        /*font-size: 18px;*/
        /*height: 100%;*/
    }

    .order-text-bong-trackingnr {
        font-family: apexnew-heavy;
        color: #000;
        font-size: 48px;
        display: inline-flex;
    }

    .order-text-headline {
    }

        .order-text-headline > i {
            margin-left: 0.75rem;
        }

    .order-price-headline {
        
        color: darkgray;
        font-size: 18px;
    }

    .order-text {
        
        color: black;
        font-size: 14px;
        margin-left:10px;
    }

.order-text-exclude {
    font-size: 14px;
    font-weight: lighter;
    font-style: italic;
    color: var(--button-color-1);
}

.order-total {
    position: absolute;
    bottom: 0;
    border-top: 1px;
    border-color: #d7d7d7;
    border-top-style: solid;
    padding: 20px;
    z-index: 1;
    width: calc(100% - 40px);
}

    .cart-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        padding: 10px 16px;
        margin: 0px;
    }

.menu-add-button-container {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 1;
    width: calc(100% - 40px);
}

    /*NAVIGATION*/

    .nav-item {
        padding-bottom: 1rem;
    }

        .nav-item img {
            max-width: 50px;
        }

    .nav-item-text {
        /*font-family: apexnew-book;*/
        font-size: 20px;
    }

    .nav-inactive-item > img {
        filter: grayscale(100%);
    }


    /* SPINNER */
    .lds-ripple {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
    }

        .lds-ripple div {
            position: absolute;
            border: 4px solid #fff;
            opacity: 1;
            border-radius: 50%;
            animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        }

            .lds-ripple div:nth-child(2) {
                animation-delay: -0.5s;
            }

    @keyframes lds-ripple {
        0% {
            top: 36px;
            left: 36px;
            width: 0;
            height: 0;
            opacity: 0;
        }

        4.9% {
            top: 36px;
            left: 36px;
            width: 0;
            height: 0;
            opacity: 0;
        }

        5% {
            top: 36px;
            left: 36px;
            width: 0;
            height: 0;
            opacity: 1;
        }

        100% {
            top: 0px;
            left: 0px;
            width: 72px;
            height: 72px;
            opacity: 0;
        }
    }

    /* SELECT */

    /* The container must be positioned relative: */
    span.custom-select-container {
        background-color: #fff;
        padding: 4px;
        border-radius: 8px;
        border: 1px solid var(--button-border-color-1);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    label.custom-select {
        position: relative;
        display: inline-block;
    }

    .custom-select select {
        display: inline-block;
        padding: 4px 3px 3px 5px;
        margin: 0;
        outline: none; /* remove focus ring from Webkit */
        line-height: 1.2;
        background: #fff;
        color: var(--button-color-1);
        
        font-size: 18px;
        border: none;
    }

    @media ( max-width: 800px) {
        span.custom-select-container {
            flex: 100%;
        }

        label.custom-select {
            width: 100%;
        }

        .custom-select select {
            width: 100%;
        }
    }
    /* Select arrow styling */
    .custom-select:after {
        content: "▼";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        font-size: 18px;
        line-height: 30px;
        padding: 0 6px;
        background: #fff;
        color: var(--button-color-1);
        
        pointer-events: none;
        border: none;
    }

    .no-pointer-events .custom-select:after {
        content: none;
    }

    /* INPUT */

    /* The container must be positioned relative: */
    .custom-input-container {
        background-color: #fff;
        padding: 4px;
        border-radius: 8px;
        border: 1px solid #fc4a1a;
        /*    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;*/
    }

    input.custom-input {
        width: 100%;
        display: inline-block;
        padding: 4px 3px 3px 5px;
        margin: 0;
        font: inherit;
        outline: none; /* remove focus ring from Webkit */
        line-height: 1.2;
        background: #fff;
        color: black;
        /*font-family: apexnew-light;*/
        border: none;
        box-sizing: border-box;
    }

    .card {
        border-radius: 12px;
        border: 2px solid;
        border-color: #d7d7d7;
        transition: 0.3s;
        padding: 2px;
        width: 100%;
        background-color: white;
    }

        .card:hover {
        }

    /* ORDER LIST */
    /*.order-list-container {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}

.order-list-container > span {
    display: flex;
    justify-content: center;
    align-items: center;
}*/


    /* END CUSTOMER DATA */

    /*.endcustomer-data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    margin: 0.5rem;
}*/

    /*.endcustomer-data > div {
    
    display: flex;
    justify-content: center;
    align-items: center;
}*/

    /*.endcustomer-data > .headline-medium {
    display: flex;
    flex-direction: column;
    flex-basis: 30%;
    flex: 1;
}

.endcustomer-data > .custom-input-container {
    display: flex;
    flex-direction: column;
    flex-basis: 70%;
    flex: 1;
}*/


    .ft-table-header {
        background-color: var(--dark-color) !important;
        color: white !important;
    }


    /* Flex Container for Columns */
    .menu-columns-container {
        display: flex;
        flex-direction: row; /* Always display in a row */
        justify-content: space-between;
        align-items: flex-start; /* Align columns to the top */
        gap: 0.2rem; /* Space between columns */
        width: 100%; /* Ensure container takes full width */
        margin: 0 auto; /* Center the container if max-width is set */
    }

    .menu-column {
        flex: 1; /* Distribute space equally */
        box-sizing: border-box;
        padding:0.2rem;
        display: flex;
        flex-direction: column;
    }

    .left-column {
        text-align: left; 
        align-items: flex-start; 
    }

    .center-column {
        text-align: center; 
        align-items: center; 
    }

    .right-column {
        text-align: right; 
        align-items: flex-end; 
    }
