h1{
    text-align: center;
    margin-bottom: 40px;
}
table#tableresponsive {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0 auto;
}
/* Zebra striping */
#tableresponsive tr:nth-of-type(odd) {
    background: #f2f2f2;
}

/* Cambiar el fondo de los pedidos según tipo de pedido */
#tableresponsive tr.Reserva {
    background: #ebf071;
    /*background: #e1e823;*/
}
#tableresponsive tr.Pre-Venta {
    background: #86d99c;
}
/* Fin cambiar el fondo de los pedidos según tipo de pedido */


/* Modificamos los colores de fondo en la lista de pedidos */
#tableresponsive td.PedidoNuevo {
    background: #e8b2b0;
}
#tableresponsive td.PedidoRevisado {
    background: #f5f593;
}
#tableresponsive td.PedidoProcesado {
    background: #a7ed93;
}
#tableresponsive td.PedidoListo {
    background: #99bede;
}
#tableresponsive td.PedidoRetirado {
    background: #9dedd6;
}
/* Fin modificar colores según estado de pedidos */

#tableresponsive th {
    background: #367fa9;
    color: #fff;
    font-weight: 600;
}
#tableresponsive td,#tableresponsive th {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
    text-align: center
}
/*Mobile View*/
@media
only screen and
    (max-width: 760px){
    #tableresponsive td, #tableresponsive tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #tableresponsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #tableresponsive tr {
        border: 1px solid #E74C3C;
    }
    #tableresponsive tr + #tableresponsive tr{
        margin-top: 1.5em;
    }
    #tableresponsive td {
        /* make like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        background-color: #ccc;
        text-align: left;
    }

    #tableresponsive td:nth-of-type(1) {
    background: #367fa9;
    color:white;
}
    #tableresponsive td:before {
        content: attr(data-label);
        display: inline-block;
        line-height: 1.5;
        margin-left: -100%;
        width: 100%;
        white-space: nowrap;
    }
}

#listacategorias {
    float:left;
    width: 80%;
    display: block;
}


#datosmesa {
 float:left;
 width: 20%;   
}

ul#familias li {
    display: block;
}

.tamfijo { width:15%  !important; margin-left:1%; }
.tamfijocuentas { width:45%  !important; margin-left:1%; margin-bottom: 1%}


/* DivTable.com */
.divTable{
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
}
.divTableCell, .divTableHead {
    border: 1px solid #999999;
    display: table-cell;
    padding: 3px 10px;
}
.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}