body {
    max-width: none;
    font-family: 'Roboto';
    /* background-color: #000; */
    color: #fff;
    padding-top: 10px; 
    margin: 0;

    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

[x-cloak] { display: none; }

#header {
    height: min(5vh, 50px);
}

.center {
    display: flex;
    justify-content:center;
    align-items: center;
}


#zone-holder {
    display:flex;
    justify-content:center;
    height: 10vh;
    width: 100%;
    margin-bottom: 20px;
}

.zone, .section {
    background-color: #777;
    flex: 1;
    margin: 5px;

}
.table {
    background-color: #aaa;
    height: 100%;
    width: 100%;
    color: #fff;
    text-decoration: none;
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 20px;
    height: 80vh;

}


.selected {
    background-color: #7AC74F;
}

#table-details {
    height: 85vh;
    
}
#table-footer {
    height: 5vh;
    margin-top: 10px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

button {
    border-radius: 0;
}

#cart-row {
    height: 40vh;
    display: flex;
}


#cart-holder {
    flex: 0.7;
    overflow-y: auto;

}


#cart-holder::-webkit-scrollbar-thumb {
    background-color: #fff;
}

th, td {
    text-align: center
}

td {
    font-size: 1.5rem;
    font-weight: bold;
}

#right-menu {
    flex: 0.3;
    margin: 0 10px;
}



#product-row {
    height: 43vh;
    margin: 10px;
    display:flex;

}

#menu-holder {
    flex:0.7;
    display:flex;
    flex-direction: column;
}

#total-holder {
    flex:0.3;
    display:flex;
    flex-direction: column;
}

.section {
    font-weight: bold;
    /* height: 5vh; */
    padding: 5px;
    flex-grow: 1;
    flex: 1 1 12.5%;
    font-size: 0.7rem;
}

@media (min-width: 1400px) {
    .section {
        font-weight: bold;
        /* height: 5vh; */
        padding: 10px;
        flex-grow: 1;
        flex: 1 1 12.5%;
        font-size: 1rem;
    }
}



#sections {
    display:flex;
    flex-direction: row;
    justify-content:center;
    flex-wrap: wrap;
    
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    height: 100%;

}

#products {
    height: 100%;
    padding: 10px;
}

.product {
    background-color: #aaa;
    height: 100px;
    width: 100%;
    font-weight: bold;
}

#total-holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#order-total {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.hide {
    display: none;
}

.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
}
.colored-toast .swal2-title {
    color: white;
}

.colored-toast .swal2-close {
    color: white;
}

.colored-toast .swal2-html-container {
    color: white;
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
}

.selectedOrderItem {
    background-color: #7AC74F !important;
}

.addButton {
    height: 100px;
    width: 100px;
    background-color: #7AC74F;
    font-size: 2rem;
    font-weight:bold;
}

.removeButton {
    height: 100px;
    width: 100px;
    background-color: #ED254E;
    font-size: 2rem;
    font-weight:bold;
}

.deleteButton {
    height: 100px;
    width: 100px;
    background-color: #ED254E;
    font-size: 2rem;
    font-weight:bold;
}

#deschisa_de {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-top : 0;
}

#contactless-holder {
    height: 80vh;
    display: flex;
    justify-content:center;
    align-items: center;
}

#contactless {
    height: 50vh;
    width: auto;
    color: #41adff;
}






.table-auto {
    table-layout: auto !important;
}

.w-1-td {
    width: 1% !important;
    white-space: nowrap;
}

#payments-container {
    max-height: 70vh;
    overflow-y: auto;
    flex: 0.3;
    padding: 10px;
}



#form-row {
    flex-direction: column;
}


#checkout-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.checkoutButton {
    height: 15vh;
    width: 15vh;
    background-color: #7AC74F;
    font-size: 1.7rem;
    font-weight:bold;
}

.cancelButton {
    height: 15vh;
    width: 15vh;
    background-color: #ED254E;
    font-size: 1.7rem;
    font-weight:bold;
}


.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}


#statistics-row {
    display: flex;
    width: 100%
}

.px-5px {
    padding-left: 5px !important;
    padding-right: 5px !important;
}