/* 2026-04-02 */

:root {
    --menu-border: #ccc;
    --menu-bg: #eee;
	--button-txt-color: #fff;
    --button-border: #88f;
    --button-bg: #02429e;
}

* {
	box-sizing: border-box;
}

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;
	margin: 2em;
}
DIV.msg P {
	font-size: 1.25em;
	text-align: center;
}
	

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);
}

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);
}

.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);
	padding: 1em 2em;
	background-color: var(--blue-bg);
	max-width: 600px;
	margin: 2em auto;
}
.box.center {
	margin: auto;
}

.button {
	border: solid 1px var(--button-border);
	color: var(--button-txt-color);
	background-color: var(--button-bg);
	font-size: 14px;
	text-decoration: none;
	padding: .5em 1em;
}

.box.large {
	max-width: 98%;
}

/* HTML: <div class="loader"></div> */
.loader {
	margin: auto;
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat,
		conic-gradient(#0000 30%, #ffa516);
	-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
	animation: l13 1s infinite linear;
}

@keyframes l13 {
	100% {
		transform: rotate(1turn)
	}
}

#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;
	}
}