/* 2024-05-23 19:03:40 */

* { box-sizing: border-box; }

:root {
	--blue: #2d88b5;
	--blue-faded: #2d88b580;
}

HTML,BODY {
	padding: 0;
	margin: 0;
	height: 100%;
}
BODY {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	padding: 1em;
}
DIV.page {
	margin-bottom: 3em;
}
DIV.msg {
	color: gray;
	text-align: center;
	margin: 2em;
	font-size: 1.5em;
}

DIV#body_bg {
    position: fixed;
	background: linear-gradient(to bottom, #ffffff 0%,#4980a150 100%);
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

A {	
	color: var(--blue);
}
A IMG {
	border: none;
} 

UL {	
	padding-left: 1em;	
}
LI {
	margin-bottom: .25em;
}
HR {
	width: 80%;
	border: none;
	margin: 3em auto;
	border-bottom: solid 1px var(--blue-faded);
}
BLOCKQUOTE {
	border-left: solid 3px var(--blue);
	font-style: italic;
	padding: .5em 0 .5em 1em;
	margin-left: .5em;
}
.small,
SMALL {
	font-size: .75em;
}

FIELDSET {
	border-color: var(--blue-faded);
}

.disabled {
	opacity: .75;	
	cursor: default;
	filter: grayscale(1);
}

.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.nowrap {
	white-space: nowrap;
}
.clear {
	clear: both;
}

.red {
	color: red;
}
.green {
	color: green;
}
.gray {
	color: gray;
}
.silver {
	color: silver;
}

.hidden {
	display: none;
}

.box {
	border: solid 2px var(--blue-faded);
	padding: 1em 2em;
	background-color: #fff4;
	max-width: 600px;
	margin: 2em auto;
}
.box.large {
	max-width: 98%;
}

#credits {
	position: fixed;
	bottom: 1em;
	right: 1em;
	width: 1em;
	height: 1em;
	background: url('https://www.techelp.it/techelp.png') transparent no-repeat center left;
	background-size: contain;
	font-size: 12px;
	text-decoration: none;
	color: black;
	overflow: hidden;	
	transition: 1s;
}
#credits:hover:after {
	content: "Realizzazione TecHelp 2023";
	margin-left: 1.5em;
	background: white;
	color: black;
}
#credits:hover {
	width: 16em;
}
@keyframes credits-fade {
	99% {
		right: 8px;
	}
	100% {
		right: -200%;
		opacity: 0;				
	}
}

@keyframes blink {
	from { opacity: 1 }
	50% { opacity: 1 }
	51% { opacity: 0 }
	to { opacity: 0 }
}


@media print {
	.no_print {
		display: none;
	}
}

