body {
    /*background-image: url(Fondo2.png);*/
    background: url(../img/Fondo2.png);
    background-size: 100vw 90vh;
    background-attachment:fixed;
    
    font-family:inherit;
}

form{
    width: 950px;
    margin: auto;
    background: rgba(0,0,0,0.08);
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 18px;
}

form2{
    

}

h2{
    color: #A4B8A6;
    text-align: center;
    margin: 0;
    font-size: 30px;
    margin-bottom: 20px;
}

input, textarea{
    width: 49%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 17px;
}

textarea{
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
    min-width: 100%;
}

select{
    width: 49%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 17px;
    
}

#boton{
    background: #CF9F61;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 0 30px #333;
    min-height: 10px;
    max-height: 50px;
    max-width: 100%;
    min-width: 50%;
    
    
}

#boton:hover{
    cursor: pointer;
}

@media(max-width:580px){
    form{
        width: 100%;
    }
    select{
    width: 100%;
    }
    input, textarea{
    width: 100%;
    }
}

/*ESTILOS DE LA TABLA PARA MOSTRAR LOS CONSUMOS*/
.container-table{
    width: 76.7%;
    background: #FFFFFF;
    margin: 60px auto;
    box-shadow: 0 0 20px #333;
    
    display: grid;
    /*grid-template-columns:auto;*/
    /*grid-template-columns: repeat(5,1fr);*/
   grid-template-columns: 10px 900px 100px 150px 200px;
    grid-auto-rows: 60px;
    
    position: relative;
}


.table__title{
    grid-column-start:1 ;
    grid-column-end:6 ;
    
    background: #A4B8A6;
    color: #936550;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.9em;
    
}


.table__header, .table__item{
    display: flex;
    justify-content:left;
    align-items: left;
}

.table__header{
    background: #999898;
    color: #CEBEB0;
    display: flex;
    font-weight:bolder;
    font-size: 1.2em;
}

/*Se agrega clase para id tabla consumos*/

/*.table__header--id{
    background: #999898;
    color: #CEBEB0;
    display: flex;
    font-weight:bolder;
    font-size: 1.2em;
*/    
   
    
    
}

.table__item{
    padding: 11px;
    font-size: 1.1em;
    
}


/*agregar sumas de tabla*/


.table__item--input {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 16px;
    
}


.table__footer{
    grid-column-start:1 ;
    grid-column-end:6 ;
    
    background: #BDBCBC;
    color: #936550;
    display: flex;
    justify-content: left;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.table__item--input--id{
    display:;
}


/*tabla de ordenes*/
.container-table--order{
    width: 150%;
    background: #FFFFFF;
    margin: 50px auto;
    box-shadow: 0 0 30px #333;
    
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 70px;
    
    position: relative;
}
.table__title__order{
    grid-column-start:1 ;
    grid-column-end:16 ;
}

.table__item--order {
    width: 90%;
    margin-bottom: 5px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 13px;
    
}

.table__footer--order{
    grid-column-start:1 ;
    grid-column-end:16 ;
    
    background: #BDBCBC;
    color: #936550;
    display: flex;
    justify-content: left;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.table__header--order{
    background: #999898;
    color: #CEBEB0;
    display: flex;
    font-weight:bolder;
    font-size: 1.2em;
}







