:root {
  --default-color: #415880; 
  --link-color: #5371a4;
  --background-color: #eedc00;
  --border-color-a: #4d6999;
  --border-color-b: #dbcb00;
  --title-color: #0047bb;
}

@font-face {
	font-family: 'Open Sans Condensed', sans-serif;
	font-display: swap;
}

.testata {
	background-color: var(--background-color);
	font-size:24px;
	color: var(--title-color);
	text-align: center;
	width: 90%;
	display: inline-block;
	height: auto;
	vertical-align: middle;
	margin:auto;
}
.appname {
float:left;
text-align: center;
font-size:42px;
padding: 0.9em 0.9em;
}
#nav {    
	-moz-transition: -moz-transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	-webkit-transition: -webkit-transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	-ms-transition: -ms-transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	-webkit-overflow-scrolling: touch;
	-moz-transform: translatex(0);
	-webkit-transform: translatex(0);
	-ms-transform: translatex(0);
	transform: translatex(0);
	/* box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2); */
	visibility: visible;
	/*overflow-y: auto; */
	overflow-y:visible;
	position: relative;
	right: 0;
	top: 0;
	color: inherit;
	max-width: 80%;
	height: 100%;
	padding: 2em 2em;
	z-index: 10010;
	float: right;
}
ul#navigation {
    margin:0px auto;
    position:relative;
    float:right;
}
ul#navigation li {
    display:inline;
    font-size:12px;
    font-weight:bold;
    margin:0;
    padding:0;
    float:left;
    position:relative;
}
ul#navigation li a {
    padding:0px 25px;
    color: var(--link-color);
	font-size: 24px;
    display:inline-block;
    -webkit-transition:color 0.2s linear, background 0.2s linear;
    -moz-transition:color 0.2s linear, background 0.2s linear;
    -o-transition:color 0.2s linear, background 0.2s linear;
    transition:color 0.2s linear, background 0.2s linear;
}
ul#navigation li a:hover {
	color: var(--title-color);
	font-weight: 700;
	font-size: 24px;
	text-decoration: none;
}
ul#navigation li a.first {
    border-left: 0 none;
}
ul#navigation li a.last {
    border-right: 0 none;
}
ul#navigation li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
}
ul#navigation ul, ul#navigation ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999;
    width:190px;
    background: var(-background-color);
/* css3 transitions for smooth hover effect */
    -webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear;
    -o-transition:opacity 0.2s linear, visibility 0.2s linear;
    transition:opacity 0.2s linear, visibility 0.2s linear;
}
ul#navigation ul {
    top: 43px;
    left: 1px;
}
ul#navigation ul li ul {
    top: 0;
    left: 191px; /* strong related to width:180px; from above */
}
ul#navigation ul li {
    clear:both;
    width:100%;
    border:0 none;
}
ul#navigation ul li a {
    background:none;
    padding:0px 15px;
    color: var(--link-color);
	font-size: 24px;
    text-decoration:none;
	text-align: left;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:160px;
}
/* Drop-Down Navigation */
ul#navigation li:hover > ul {
    visibility:visible;
    opacity:1;
}
.sottotitolo {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	padding-top: 2em;
}
h1 {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	padding-top: 2em;
}
h2 {
	font-size: 2em;
	font-weight: 500;
}
h3 {
	font-size: 1.3em;
	font-weight: 300;
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
color: var(--link-color);
font-weight: 700;
text-decoration: none;
}
.float {
float:left;
text-align: center;
}
.f30 {
	float:left;
	width: 30%;
	text-align: center;
}
.logo {
float:left;
width:150px;
}
.clear {
clear: both;
}
.schermata {
width: 100%;
text-align: center;
display: block;
padding-top: 2em;
padding-bottom: 2em;
}
.immagine2 {
	float:left;
	width: auto;
	margin-left: 7.5%;
	height: 200px;
}
.immagine {
width: auto;
height: 400px;
}
.button {
padding-top: 2em;
padding-bottom: 2em;
}
.button1 {
border: 2px solid var(--border-color-a);
color: var(--background-color);
background-color: var(--link-color);
padding: 32px 32px;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 32px;
font-weight: 700;
border-radius: 4px;
}
.button1:hover {
background-color: var(--background-color);
color: var(--link-color);
border: 2px solid var(--border-color-b);
}
#footer {
padding: 4em 4em;
text-align: center;
font-size: 20px;
font-family: 'Open Sans Condensed', sans-serif;
color: var(--default-color);;
margin:auto;
width: 60%;
}
.radioval {
text-align: left;
width: 200px;
margin:auto;
}
#main{
width:100%;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 24px;
color: var(--default-color);
text-align: center;
padding-top: 3em;
}
#title{
background-color: var(--background-color);
color: var(--title-color);
text-align: center;
width: 90%;
margin:auto;
}
#rinnovi, #corpo {
padding-bottom: 2em;
}
#top {
width:80%;
text-align: left;
margin: auto;
padding-top: 2em;
padding-bottom: 2em;
}
#download {
padding-bottom: 3em;
}
#licenza-attuale {
padding-top: 2em;
}
#licenza, #uso, #supporto {
width:80%;
text-align: left;
margin: auto;
}
#topBtn {
	border: 2px solid var(--border-color-a);
	color: var(--background-color);
	background-color: var(--link-color);
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  outline: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#topBtn:hover {
	background-color: var(--background-color);
	color: var(--link-color);
	border: 2px solid var(--border-color-b);
}
#cform {
	width: 60%;
	margin: auto;
}

* {
  box-sizing: border-box;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
.error {
	color: red;
	text-align: center;
}
.success {
	color: var(--title-color);
	font-weight: 400;
	text-align: center;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

label {
	font-weight: 700;
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
font-family: Arial;
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid var(--border-color-a);
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
	border: 2px solid var(--border-color-a);
	color: var(--background-color);
	background-color: var(--link-color);
	padding: 12px 20px;
	border-radius: 4px;
	cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
	background-color: var(--background-color);
	color: var(--link-color);
	border: 2px solid var(--border-color-b);
}
.text-center {
  text-align: center;
}
.subtitle {
  margin-top: -1em;
  margin-bottom: 2em;
}
.undo {
  margin-top: 1em;
}
