#content > #risultati {
	vertical-align: top;
	display: inline-block;
	overflow-x: auto;
	width: 65%;
}

table {
	max-width: 100% !important;
}

@media screen and (max-width: 990px) {
	
	#content > #risultati {
		display: block !important;
		margin-top: 25px;
		width: 100%;
	}
	
	table {
		max-width: 100% !important;
	}
}

#filters .btn-group-sm {
	text-align: center;
	margin-bottom: 15px;
}

.btn-group-sm .btn {
	background-color: #e1e8e8 !important;
	color: black !important;
	border: none;
}

.nav .nav-link.active {
	font-weight: bold;
}

#risultati > .header > div.row {
	margin-right: 10px !important;
}

table tr.even {
	background: rgba(214, 231, 232, 0.3);
}

@media (max-width: 300px) {
	#risultati table td.descrizione, #risultati table th.descrizione {
		display: none;
	}
}

/*** riepilogo scrutinio ***/

#riepilogoScrutinio {
	margin: 15px auto !important;
	width: 40%;
	border: 1px solid #dee2e6;
}

/*** bottoni relativi a uninominale ***/

#uninominaleButtons {
	display: none;
	text-align: center;
	padding: 5px;
	border-top: 1px solid #dee2e6
}

#uninominaleButtons > button {
	font-size: 11px;
}

#uninominaleButtons > button.active {
/* 	border: none; */
	box-shadow: none;
	color: white;
}

@media (max-width: 300px) {
	#uninominaleButtons {
		display: block;
	}
	
	table.maggioritario thead th:nth-child(4), table.maggioritario thead th:nth-child(5), table.maggioritario thead th:nth-child(6), table.maggioritario thead th:nth-child(7) {
		display: none;
	}
	
	table.maggioritario tbody td:not([rowspan]) {
		display: none;
	}
	
	table.proporzionale thead th:nth-child(1), table.proporzionale thead th:nth-child(2), table.proporzionale thead th:nth-child(3) {
		display: none;
	}
	
	table.proporzionale tbody td[rowspan] {
		display: none;
	}
}

/* loading */

#backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: 9999;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3b3b3b; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    
    position: relative;
	top: 50%;
	margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*** totale risultati ***/

#totaleRisultati > td {
	background-color: white !important;
    padding: 20px 10px !important;
    color: #5ba1a1;
    font-weight: bold;
    border-top: 2px solid black !important;
}

#totaleRisultati > td[align=right] {
	padding-right: .3rem;
}

#risultati .messaggio {
	font-size: 11px;
    margin: 10px;
    font-style: italic;
    float: right;
}