/*tabela padrao*/
.tabela_carrinho {
    width: 100%;
    border: 2px solid #999;
    border-radius: 7px;
    border-spacing: 0;
    background-color: #FFF;
    font-size: 14px;
}
.tabela_carrinho thead tr {
    background-color: #8C6900;
    font-weight: bold;
    color: #FFF;
} 
.tabela_carrinho tbody td { 
    border-top: 1px solid #999;
} 
.tabela_carrinho td {
    padding: 5px;
    vertical-align: top;
}
.tabela_carrinho thead tr:first-child td:first-child { 
    border-top-left-radius: 5px;
}
.tabela_carrinho thead tr:first-child td:last-child {
    border-top-right-radius: 5px;
}
.tabela_carrinho tbody tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}
.tabela_carrinho tbody tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}
.tabela_carrinho tbody a {
    text-decoration: underline;
    color: #F00;
}
.tabela_carrinho tbody a:hover {
    color: #900;
}
.tabela_carrinho img {
    border: none;
}


.carrinho_alerta {
    font-size: 16px;
    color: #000;
    background-color: #FBECB7;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

.carrinho_vazio {
    text-align: center;
    margin: 20px;
    padding: 10px;
    font-size: 1.5rem;
    color: #666;
}

/*formulario para enviar orçamento*/
form[name=formulario_orcamento] {
    max-width: 1200px;
    margin: auto;
}


