@charset "UTF-8";
/* CSS Document */

body{
	font-family:'Poppins';
}
.tabella-test{
	width: 50%;
	border: solid thin #d1d1d1;
}
.tabella-test td{
	padding: 10px;
}
.td-test-val{
	width: 20%;
}
.bottom-header{
	position: absolute;
	bottom: 0;
	background-color: rgba(255,255,255,0.3);
	font-size: 10px;
	text-align: center;
	color: white;
	left: 0;
	padding: 10px;
	width: 250px;
}
.patina-login{
	background-color: rgba(0,0,0,0.9);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: nowrap;
}
.box-login{
	border-radius: 4px;
	padding: 20px;
	background-color: white;
	text-align: center;
	width: 50%;
}
.btn-pers{
	background-color: #333333;
	color: white;
	font-weight: 200;
	font-size: 15px;
	text-transform: uppercase;
	border: none;
	border-radius: 4px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: all ease 0.3s;
}
.btn-pers:hover{
	background-color: #666666;
}
.btn-pers-outline{
	color: #333333;
	font-weight: 200;
	font-size: 15px;
	text-transform: uppercase;
	border: solid 1px #333333;
	border-radius: 4px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: white;
	transition: all ease 0.3s;
}
.btn-pers-outline:hover{
	border-color: #666666;
	background-color: #666666;
	color: white;
}
.disc-home{
	padding: 20px;
	margin-bottom: 20px;
	border: solid thin darkred;
	color: darkred;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	box-shadow: 1px 2px 4px 2px #d1d1d1;
	background-color: white;
}
.navigatore{
	width: 250px;
	height: 100%;
	position: fixed;
	background-color: #333333;
	top: 0;
}
.header-navigatore{
	text-align: center;
	padding: 20px;
	background-color: #666666;
	font-size: 12px;
	color:white;
}
.btn-navigatore{
	padding: 20px;
	color: white;
	transition: all ease 0.3s;
	font-size: 15px;
	text-transform: uppercase;
	cursor: pointer;
}
.btn-navigatore:hover{
	background-color: rgba(255,255,255,0.3);
}
.submenu{
	background-color: rgba(255,255,255,0.3);
	display: none;
}
.pagine{
	width: calc(100% - 290px);
	margin-left: 270px;
	margin-top: 20px;
}
.btn-sm{
	display: none;
}
.titolo-pagina{
	font-weight: 700;
	text-transform: uppercase;
	font-size: 20px;
}
.box-colonne-stat{
	width: 100%;
	height: 300px;
	border: solid thin #d1d1d1;
	border-radius: 4px;
	display: flex;
	align-items: flex-end;
	align-content: center;
	justify-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 20px;
}
.colonna-stat{
	width:50px;
	height: 200px;
	border-radius: 4px;
	background-color: #f1f1f1;
	position: relative;
	text-align: center;
	font-size: 12px;
}
.linea-colonne-stat{
	width: 100%;
	font-size: 12px;
	font-weight: 200;
	padding: 10px;
	height: 50px;
	border-top: solid thin #d1d1d1;
	text-align: center;
	position: absolute;
	bottom: 0;
	background-color: #333;
	color: white;
}
@media screen and (max-width:768px){
	.box-login{
		width: 80%;
	}
	.navigatore{
		width: 100%;
		height: 50px;
		position: fixed;
		background-color: #333333;
		top: 0;
	}
	.cont-btn{
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: -100%;
		transition: all ease 0.3s;
	}
	.btn-sm{
		display: block;
	}
	.pagine{
		width: 96%;
		margin-left: 2%;
		margin-top: 70px;
	}
	.bottom-header{
		display: none;
	}
}