/* seo friendly tables */
.rdt-table{
    width:100%;
	display:table;	/* Defines a Table */
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	border-bottom:2px solid #dddddd;
	color:#8d8d8d;
	margin:10px 0;
}
.rdt-table-edit{
    width:100%;
	display:table;	/* Defines a Table */
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	border-bottom:2px solid #dddddd;
	color:#000000;
	margin:10px 0;
}
.rdt-table-edit2{
    width:100%;
	display:table;	/* Defines a Table */
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	border-bottom:2px solid #dddddd;
	color:#000000;
	margin:10px 0;
}
.rdt-table-head{
	 display: table-header-group; /* Defines a table header group */
}
.rdt-table-head .rdt-column{ /* Column inside the table-head */
	background:#eaeaea;
	color:#444;
	border-right:1px solid #dddddd;
	border-bottom:none;
}
.rdt-row{
	display:table-row; /* Defines a table row */
    font-size:12px;
}
.rdt-row .rdt-column:nth-child(1){ /* First column in a row */
	border-left:1px solid #eeeeee;
}
.rdt-row:last-child .rdt-column{  /* column in a last row */
	border-bottom:none;
}
.rdt-column{
    line-height:1.8em;
	display:table-cell; /* Defines a table cell */
	padding:10px 10px;
	border-bottom:1px solid #eeeeee;
	border-right:1px solid #eeeeee;
}
.rdt-column-fosforo 
{
    display:none;
    visibility:hidden;
}
.rdt-row:hover{
	background:#f9f9f9;
}
/* Responsive table */
@media all and (max-width: 640px){
	.rdt-table,
	.rdt-row,
	.rdt-column,
	.rdt-column:before{
		display:block;	/* Converts a table, table row, table column and table column:before into a block element */
	}
	.rdt-table,
	.rdt-row .rdt-column:last-child{
		border-bottom:none;
	}
	.rdt-table-head{
		position:absolute;	/* Hides table head but not using display none */
		top:-1000em;
		left:-1000em;
	}
	.rdt-row{
		border:1px solid #eeeeee;
		border-top:2px solid #dddddd;
		border-bottom:2px solid #dddddd;
		margin:20px 0;
	}
	.rdt-row .rdt-column:nth-child(1){ /* first column of the row */
		border-left:none;
	}
	.rdt-row .rdt-column:last-child{ /* last column of the row */
		border-right:none;
	}
	.rdt-row:last-child .rdt-column,
	.rdt-column{ /* Column in the last row and column */
		border-bottom:1px solid #eeeeee;
	}
	.rdt-column:before{ /* prints the value of data-label attribute before the column data */
		font-weight:bold;
		padding-right:20px;
		font-size:12px;
		content:" "attr(data-label)" //";	/* call the attribute value of data-label and adds a string // */
	}

}
.rdt-columnRemito{
	
	font-size:7px;
	display:table-row; /* Defines a table row */
	border-bottom:1px solid #eeeeee;
	border-right:1px solid #eeeeee;
}

