﻿/*
.kueche-container {
    display: flex;
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    max-height: calc(100vh - (128px));
    min-width: 300px;
    overflow-y: auto;
    background-color: #ddd;
}

.order-container {
    max-width: 100%;
    min-width: 300px;
    width: 100%;
    touch-action: none;
    display: block;
    height: calc(100vh - (128px));
    touch-action: manipulation;
    display: flex;
    flex-flow: column;
    background-color: #c2c2c2;
}

.order-box {

    flex-grow: 1;
    overflow-y: auto;
    touch-action: manipulation;
}

.kueche_order_container_HeaderMenue {
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: flex-end;
}

.kueche_btn_lastOrder {
    font-size: 1em;
    border-radius: 10px;
    border: 2px solid black;
    color: white;
    background-color: black;
    padding: 5px;

}

.kueche_order_container_title {
    font-size: 2.5em;
    padding: 5px;
    text-align: center;
    border-bottom: groove;
    border-top: groove
}

.oi-pencil-container {
    display: inline-block;
}

.oi-pencil-red-container {
    color: red;
}



.buttonsPay {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}


.kueche_orderFooterSection{
    display: flex;
    border-top: 2px solid lightgrey;
}

.kueche_item_oos {
    text-decoration: line-through;
    text-decoration-color: darkred;
    text-decoration-thickness: 3px;
}

.kueche_paymentArea {
    max-width: 200px;
    min-width: 150px;
    border-right: 2px solid lightgrey;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.kueche_buttonBarPay {
    width: 100%;
    font-size: 1.3em;
    padding: 10px;
    border: none;
    font-weight: bold;
    color: white;
    background-color: #d3c344;
}

.kueche_buttonPayPalPay {
    width: 100%;
    margin-top: 10px;
    font-size: 1.3em;
    padding: 10px;
    border: none;
    color: white;
    font-weight: bold;
    background-color: #001C64;
}

.kueche_buttonSumUpPay {
    width: 100%;
    margin-top: 10px;
    font-size: 1.3em;
    padding: 10px;
    border: none;
    font-weight: bold;
    color: white;
    background-color: #a80000;
}

.kueche_buttonIsInternOrder {
    width: 100%;
    margin-top: 10px;
    font-size: 1.3em;
    padding: 10px;
    border: none;
    font-weight: bold;
    color: white;
    background-color: black;
    margin-top: auto;
    border: 2px dotted grey;

}


.kueche_AdditionalSettings {
    flex-grow: 1;
    padding: 5px;
}




.kueche_AdditionalSettings_TableNumberSection {
    font-size: 1.8em;
}

.kueche_additionalSettings_TableNumberLabel {
    width: 100%;
    font-weight: bold;
}

.kueche_additionalSettings_TableNumberSelect{
    width: 100%;
}

.kueche_additionalSettings_FreiTextSection {
    font-size: 1.8em;
}

.kueche_additionalSettings_FreiTextSection_FreiTextLabel {
    font-weight: bold;
    margin-top: 10px;
}

.kueche_additionalSettings_FreiTextSection_FreitextTextArea{
    min-height: 120px;
    width: 100%;

}


.kueche_container_main {
    padding: 5px;
    display: grid;
    width: 100%;
    grid-template-columns: 60% 39%;
    grid-column-gap: 1%;
}



.kategorieHeader {
    border-left: 2px solid lightgrey;
}

.hoverRow:hover {
    background-color: greenyellow;
}

.headerBar{
    display: block;
}

.lastOrder {
    width: 100%;
    font-size: 1em;
    border-radius: 20px;
    margin-bottom: 5px;
}



@media (max-width: 800px){
    .kueche_container_main{
        display:block;
    }

    .order-container{
        margin-top: 10px;
    }

    .kueche-container{
        max-height:100%;

    }
}*/