:root {
    --firstColor: #063c8d;
    --secondColor: #082a5c;
    --thirdColor: #ffffff;
    --textColor: #4a536e;
    --titleColor: #5b6574;
    --backgroundColor: #435165;
}

* {
    box-sizing: border-box;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*transition: all .4s linear; /* vendorless fallback */
    /*-o-transition: all .4s linear; /* opera */
    /*-ms-transition: all .4s linear; /* IE 10 */ 
    /*-moz-transition: all .4s linear; /* Firefox */
    /*-webkit-transition: all .4s linear; /*safari and chrome */
}
html, body {
    height: 100%;
    margin: 0;
}
big {
    font-size: larger;
}
small {
    font-size: smaller;
}
body {
    background-color: var(--backgroundColor);
    color: var(--textColor);
}
body.page {
	background-color: #f3f4f7;
    padding: 0;
}
.tight-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
a {
    color: var(--textColor);
    text-decoration: none;
}
a:hover {
    opacity: .7;
}
table th, table td {
    text-align:left;
    padding:3px 10px;
    border: 1px solid #ddd;
}

.logo {
    padding:10px;
}
.logo-header{
    padding:5px;
    width:70px;
}
.loghi-footer img {
    padding:20px 10px 10px;
    border-radius:5px;
}
.text-center{
    text-align: center;
}
.px {
    padding-left: 15px;
    padding-right: 15px;
}
.py {
    padding-top: 15px;
    padding-bottom: 15px;
}
.container {
    margin:auto;
    text-align: center;
}
.card {
    width: 400px;
    background-color: #fff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
}
.card h1 {
    color: var(--titleColor);
    font-size: 2em;
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
}
form, form div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--firstColor);
    color: #fff;
}
form label.checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 330px;
    background-color: transparent;
    color: var(--textColor);
    text-align: left;
    padding-left: 10px;
}
form input, form select, textarea {
    height: 50px;
    border: 1px solid #eee;
    padding: 0 15px;
}
.card form input, .card form select, .card textarea {
    margin-bottom: 20px;
    width: 310px;
}
form input[type="checkbox"] {
    width:20px;
}
.form-user-page form input, .form-user-page form select, .form-user-page textarea {
    width: 230px;
    margin-right: 22px
}
textarea {
    resize: none;
    padding: 15px;
}
form input[type="submit"], .button, .export {
    padding: 15px!important;
    background-color: var(--firstColor);
    border: 0!important;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.2s;
}
.card form input[type="submit"], .button {
    width: 100%!important;
    margin: 20px 0 0!important;
}
.export {
    width: 290px!important;
    margin-right: 3px!important;
}
.form-user-page form input[type="submit"] {
    margin: 0!important;
}
form input[type="submit"]:hover {
    background-color: var(--secondColor);
    transition: background-color 0.2s;
}
form input[type="submit"]:disabled {
    background-color: #888!important;
	cursor: not-allowed!important;
}
.sub-text {
    color: #f3f4f7;
    font-size: .8em;
    text-align: center;
}
.sub-text a {
    color:#f3f4f7;
}
.navtop {
	background-color: var(--secondColor);
	height: 60px;
	width: 100%;
	border: 0;
}
.navtop div {
	display: flex;
	margin: 0 auto;
	max-width: 900px;
	height: 100%;
    width: 100%;
    padding: 0 10px;
}
.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div h1 {
	flex: 1;
	font-size: 2em;
	padding: 0;
	margin: 0;
	color: #fff;
	font-weight: normal;
}
.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}
.navtop div a i {
	padding: 2px 8px 0 0;
}
.navtop div a:hover {
	color: #eaebed;
}
.content {
    max-width: 900px;
    min-width: 420px;
    margin: 0 auto;
    min-height: calc(100% - 140px);
    width: 100%;
    padding: 0 10px;
}
.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 1.5em;
	color: var(--titleColor);
	border-bottom: 1px solid #e0e0e3;
}
.content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    margin: 5px 0;
    padding: 20px;
	background-color: #fff;
}
.content > p table td, .content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: var(--textColor);
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}
.button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.white-separator{
    border-top: 1px solid #fff;
    width: 60%;
    margin: 0 auto;
    opacity: .2;
}
footer {
    background-color: #ddd;
    height: 60px;
    margin-top: 20px;
    padding: 20px;
    font-size: 70%;
}
footer div {
	margin: 0 auto;
	width: 900px;
}
.non-disponibile{opacity:.6;}
br.break {display: none;}
.sub-text .break {display: block!important;}
.sub-text .line {display: none!important;}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

a.myBtn_multi{cursor:pointer;}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Iubenda */
#iubenda-cs-banner .iubenda-cs-brand-badge {display:none!important;}