@charset "utf-8";
/* CSS Document */
/*Afegeixo classes per a la correcta visualitzaci� de les taules*/
/*TABLE*/

.table-responsive th {
    background: #666666;
    color: #fff;
	width:50%;
}

.table-responsive .table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border: 1px solid #ddd;
}

.table-responsive tr:nth-child(odd) {
    background-color: #FCFCFC;
}
.whiteBackground .table-responsive tr:nth-child(even) {
    background-color: #f5f5f5;
}

@media (min-width: 768px) {
  .table-responsive{
    overflow-x: auto;
  }
}
/*FI TABLE*/

