:root{
    --largura-tabela: 100%;
    --cor-texto: red;
    --cor-fundo: #FFFF00;
    --cor-fundo-2:#e6e600;
    --altura-tabela:100%;
    --tamanho-fonte:4.3vh;
    --fonte:Arial, Helvetica, sans-serif;
    --borda:2px solid black;
    --peso-fonte:bold;
    --transforma-texto-produto:capitalize;
    --texto-cabeca:uppercase;
    --tamanho-fonte-cabeca:6vh;

}

html{

    height: 100%;
    margin:0;
    padding:0;
}



body {

    padding: 0;

    margin: 0;

    overflow: hidden;

    background-repeat: no-repeat;

    background-attachment: fixed;

    background-size: cover;

    min-height: 100%;

    

}



table{

    border-collapse: collapse !important;

}



.tabelaprodutos {

    /* position: relative; */

    /* margin-left: auto; */

    /* margin-right: auto; */

    /* width: 98%; */

   

    font-size: 4vh;   

    background-color:var(--cor-fundo); 

    color: var(--cor-texto);

    font-family: var(--fonte);

}

tr:nth-child(odd){
    background-color: var(--cor-fundo-2);
}


td,

th {

    

    border: var(--borda);

    font-weight: var(--peso-fonte);

    text-transform: var(--transforma-texto-produto);

    padding: 2px 5px 2px 5px;

}



td{

    /* overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    display: table-cell;

    max-width: 700px; */

    

}



th{

    text-transform: var(--texto-cabeca);

}



th.catnome{

    font-size: var(--tamanho-fonte-cabeca);

}



td.preco{

    

    text-align: center;

    /* width: fit-content; */

}



td.vazio{

    color: rgba(0, 0, 0, 0);

}





#tabela{

    /* position: fixed;

    width: 100%;

    display: flex;

    bottom: 15px;

    min-height: 75%; */

    padding:0 5px 0 5px;
    display: flex;
    height: var(--altura-tabela);
    /**/
    position: absolute;
    bottom:10px;
    left: 1%;
    right: 1%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-around;

}

.divnome{
    display: table;
    table-layout: fixed;
    width: 100%;
}


.spannome{
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.divpreco{
    display: table;
    table-layout: fixed;
    min-width: max-content;
    text-align: center;
}

#video{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}

#imagem{
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100vh;
    right: 0;
    bottom: 0;
}


