body{  
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    font-family: verdana; 
}
a{
    text-decoration: none;
}
.menu{ 
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: black;
}
.menuItem{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: white;
    font-family: sans-serif;
    background: black;
    width: auto;
    height: 60px;
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
    transition: background-color 0.2s linear 0.2s;
    transition: color 0.2s linear 0.2s;
}
.menuItem:hover{
    background-color: white;
    color:black;
}
.menu a{
    text-decoration: none;
}
.inputIndex{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.inputIndex input{
    font-size: 30px;
    padding: 5px;
    font-weight: bold;
}
.produtosOperacaoArea{
    height: 300px;
    display: flex;
    flex-direction: column;
/*    justify-content:center ;*/
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;   
}
.produtosOperacao{
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll; 
    overflow-x: hidden;
    padding: 10px;
    width: 400px;
}
.produtosOperacao td{
   padding: 5px;
   padding-left: 10px;
   border: none;
}
.produtosOperacao tr:nth-child(even) {
    background-color: #CCC;
}
.produtosOperacao tr:nth-child(odd) {
    background-color: #FFF;
}
.areaTotal{
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.total{
    text-align: center;
    width: 250px;
    font-size: 20px;
    border: solid 3px black;
    padding: 10px;
    font-weight: bolder;
}
.finalizar{
    z-index: 999;
    position: absolute;
    bottom: 100px;
    right: 140px;
    background-color: #00a000;
    padding: 20px;
    border-radius: 20px;
    color: white;
    font-weight: bolder;
    cursor: pointer;
    font-size: 17px;
    border: none;
    text-align: center;
}
.btnLimpar{
    z-index: 999;
    position: absolute;
    bottom: 100px;
    right: 30px;
    background-color: red;
    padding: 20px;
    border-radius: 20px;
    color: white;
    font-weight: bolder;
    cursor: pointer;
    font-size: 17px;
    border: none;
    text-align: center;
}
.finalizarVenda{
    position: absolute;
    background-color: rgba( 0,0,0,0.8);
    width: 100%;
    height: 100%;
    z-index: 99999999;
    display: none;
    align-items: center;
    justify-content: center;
}
.finalizarVendaArea{
    width: 600px;
    height: 700px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.finalizarVendaTitulo{
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
.botoesFinalizar{
    display: flex;
    justify-content: flex-end;  
    margin-top: 20px;
    width: 100%;
}
.finalizarSalvar{
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: white;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
    background-color: #00a000;
    border: none;
}
.finalizarCancela{
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: white;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
    background-color: red;
}
.finalizarTotal{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    width: auto;
    background-color: #CCC;
    padding: 10px;
    border-radius: 5px;
}
.finalizarTotal input{
    font-size: 23px;
    font-weight: bold;
    text-align: left;
    background-color: #CCC;
    border: none;
    width: 100px;
}
.finalizarProdutosArea{
    margin-top: 30px;
    width: 500px;
    background-color: #ccc;
    height: 300px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.finalizarProdutosTitulo{
    font-weight: bolder;
    font-size: 20px;
    margin: 10px;
}
.finalizarProdutos{
    
    overflow: scroll;
    overflow-x: hidden;
    background-color: white;
    width: 95%;
    height: 230px;
    padding: 5px;
}
.finalizarAddCliente{
    margin-top: 20px;
    width: 500px;
    background-color: #ccc;
    height: 100px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.finalizarAddCliente option, select{
    font-size: 20px;
}
.finalizarAddClienteTitulo{
    font-weight: bolder;
    font-size: 20px;
    margin: 10px;
}