/* ============================
	FONT
   ============================ */

@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans7pt-Regular.eot');
    src: url('../fonts/NunitoSans7pt-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NunitoSans7pt-Regular.woff2') format('woff2'),
        url('../fonts/NunitoSans7pt-Regular.woff') format('woff'),
        url('../fonts/NunitoSans7pt-Regular.ttf') format('truetype'),
        url('../fonts/NunitoSans7pt-Regular.svg#NunitoSans7pt-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans7pt-Black.eot');
    src: url('../fonts/NunitoSans7pt-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NunitoSans7pt-Black.woff2') format('woff2'),
        url('../fonts/NunitoSans7pt-Black.woff') format('woff'),
        url('../fonts/NunitoSans7pt-Black.ttf') format('truetype'),
        url('../fonts/NunitoSans7pt-Black.svg#NunitoSans7pt-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/NunitoSans7pt-Bold.eot');
	src: url('../fonts/NunitoSans7pt-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/NunitoSans7pt-Bold.woff2') format('woff2'),
		url('../fonts/NunitoSans7pt-Bold.woff') format('woff'),
		url('../fonts/NunitoSans7pt-Bold.ttf') format('truetype'),
		url('../fonts/NunitoSans7pt-Bold.svg#NunitoSans7pt-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}



/* ============================
	GENERALI 
   ============================ */

body {
	font-family: 'Nunito Sans';
	font-weight: normal;
	font-style: normal;	
	font-size: 14px;
	color: #000;
	background: #fff;
	background-position: top center;
	background-size: contain;
	background-repeat: repeat-y; 
}
.row {
	margin-left:0px;
	margin-right:0px;
}

h1, h2 {
	color: #000;
	font-family: 'Nunito Sans';
	font-weight: bold;
}

a {
	text-decoration: none;
}

.text-red {
	color:#ac182d;
}

/* ============================
	MENU
   ============================ */

   .skip-to-main-content-link {
   	position: absolute;
   	left: -9999px;
   	z-index: 999;
   	padding: 1em;
   	background-color: black;
   	color: white;
   	opacity: 0;
   }
   .skip-to-main-content-link:focus {
   	left: 50%;
   	transform: translateX(-50%);
   	opacity: 1;
   }

   #attiva_menu {
   	max-width: 30px; 
   	margin:10px 25px;
   	cursor: pointer;
   }

   #menu {
   	background-color: #ffffff;
   	/*border-bottom: 4px solid #ffffff;
   	box-shadow: 0px 5px 5px rgba(0,0,0,.2);
   	z-index: 2000;
   	position: relative;*/
   }

   #menu_list li {
   	list-style-type: none;
   	float: left;
		padding: 5px 10px;
   }

   #menu_list li a {
   	text-align: center;
   	text-decoration: none;
   	color: #000;
	font-weight: bold;   
   	font-size: 21px;
	   font-family: 'Nunito Sans';
   }


   @media (max-width: 991px) {
   	#menu_list li {
   		float: none; 		
   	}
   	#menu_list li a {
   		text-align: right;
   	}
   }


   @media (max-width: 1199px) {

   	#menu_list {
   		margin-left: 45px;	
   	}
   }

   @media (max-width:991px) {

   	#menu_list {
   		margin-left: 0px;	
   	}
   }

   #menu_list li:hover, #menu_list li.active {
   	text-decoration: none !important;
   	color: #000;
	background-color: #ffed00;
	padding: 5px 10px;
	font-family: 'Nunito Sans';
	font-weight: bold;
   }

.modal-body {
	background-color: #fff;
}

/* ============================
	FORM
   ============================ */

   .sfondo {
   	background-color: rgba(255,255,255,.8);
   	border-radius: 20px;
   	box-shadow: 0px 6px 8px rgba(0, 0, 0, .4);
   }
#errore {
	color: #ac182d;
	font-weight: bold;
	text-align: center;
	font-size: 24px;
}
   .form-control, .form-select {
   	height: 45px;
   	border-radius: 5px;
   	border: 1px solid #000;
   	color: #000000;
   }

   .form-group {
   	margin-bottom: 15px;
   }

label[for=reg], label[for=tratt_dati]  {
	display: block;
}

   label a {
   	color: inherit;
   	text-decoration: underline;
   }

   small.small {
   	font-size: 10px;
   	line-height: 9px;
   }

   
.button {
	background: #ffed00;
	color: #000;
	border: 0px solid transparent;	
  	font-weight: bold;
	font-size: 2.2rem;
	padding: .25rem 2rem;
	width: max-content;
	max-width: 300px;
	text-decoration: none;
	font-family: 'Nunito Sans';
	-webkit-box-shadow: 0px 0px 15px 5px rgba(198, 198, 198, 0.7); 
	box-shadow: 0px 0px 15px 5px rgba(198, 198, 198, 0.7);
}
.button:hover {	
	color: #000;
	background: #ffffff ;
}


@media (max-width:375px) {
	.button {
		font-size: 1rem;
	}
}

   @media (max-width: 575px) {
   	label {
   		font-size: .80rem;
   	}
   }

.modal-body {
	background-color: #4D7BBC;
}


/* ============================
	FOOTER
   ============================ */
   footer {
   	font-family: 'Nunito Sans';
   	font-size: 0.8rem;
   	background-color: #fff;
   }

   footer p {
   	color:#333333;
   	font-family: 'Nunito Sans';
   	font-weight: normal;
   	font-style: normal;
   	font-size: 0.8rem;
   	text-align: center;	
   }

   footer p a {
   	color:#333333;
   	text-decoration:underline;
   	font-weight: 700;
   }

hr {
	border: 5px solid #000;
	opacity: 1;
}


/* =========================
	COOKIE BAR
	======================= */

	.cc-window {
		font-size: .85rem !important;
		line-height: 1.2em !important;
	}

	@media (max-width:767px) {
		.cc-window {
			font-size: .75rem !important;
			line-height: 1.1em !important;
		}
	}



/* =========================
	 OCR LOADING
	======================= */

#ocr_loading, #ocr_loading > .modal-dialog, #ocr_loading > .modal-dialog > .modal-content, #ocr_loading > .modal-dialog > .modal-content > .modal-body {
	background-color: transparent !important;
} 


