/* CSS Document */
table{
	border-spacing: 0;
	width: 100%;
}


th {
    background-color: #d8d8d8;
    height: 35px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
th:first-of-type {
    padding-left: 5px;
}

th:nth-child(2){
	width: 90px;
}

td{
    height: 40px;
    padding-right: 5px;
    /* vertical-align: text-bottom; */
    border-bottom: 1px solid rgba(0,0,0,0.5);
}

td a { 
	color: #000;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

td:last-of-type{
	padding-right: 0;
	width: 50px;
	text-align: center;
  	vertical-align: middle;
}

.filtro:first-child:nth-last-child(1) .filtro-delete{
/* -or- li:only-child { */
    /* display: none; */
}

tr:last-of-type td, tr:first-child:nth-last-child(1) td{
	border-bottom: none;
}

#elenco-select {
	width: 100%;
	margin-top: 40px;
}

#filtri{
	margin: 20px 0;
}

#risultati{
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

@media screen and (max-width: 400px) {
	td a {
		height: auto;
		margin: 4px 0;
	}
}