/* schermo grande */
@media (min-width: 1025px) {
	.only_big 		{ display: block; }
	.only_small 	{ display: none !important; }
	.tabulatore 	{ padding: 10px 15px !important }
	.lockscreen-wrapper {
		max-width: 500px;
		margin: 0 auto;
		margin-top: 5%;
	}
	html { height: 100%; margin: 0px; }
	body { 
		height: 100%;
		margin: 0px; 
		background-image: url('../img/sfondo.jpg');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
}

/* schermo piccolo */
@media (max-width: 1024px) {
	.only_big 		{ display: none !important; }
	.only_small 	{ display: block; }
	.tabulatore 	{ padding: 8px 4px !important }
	.lockscreen-wrapper {
		max-width: 500px;
		margin: 0 auto;
		margin-top: 5%;
	}
	html { height: 100%; margin: 0px; }
	body { 
		height: 100%;
		margin: 0px; 
		background-image: url('../img/sfondo.jpg');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
}