@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'impact';
    src: url('../font/impact.ttf');
}

@font-face {
    font-family: 'nexa';
    src: url('../font/NexaLight.otf');
}

/* --- FORM --- */
/* Contenitore principale */
.form-horizontal {
    max-width: 1178px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: "Inter", Sans-serif;
	margin-right: 94px;
}

/* Titolo pannello */
.panel-heading {
    background: linear-gradient(135deg, #1d1d1d, #000000);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin: -30px -40px 20px -40px;
    box-shadow: 0 4px 10px rgba(187, 159, 0, 0.2);
}
.panel-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Etichette */
.control-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Input e select */
.form-control {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #dbd9d1;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}
.form-control:focus {
    border-color: #d4d4d4;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 217, 1, 0.103);
    outline: none;
}

/* Gruppi */
.form-group {
    margin-bottom: 20px;
}

/* Checkbox privacy */
#u_privacy {
    margin-right: 8px;
}
.form-group strong {
    font-size: 14px;
    color: #444;
}

/* Bottoni */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #1d1d1d, #000000);
    border: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(187, 174, 0, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #444444, #222222);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 136, 0, 0.4);
}

.btn-default {
    background: #f3f4f6;
    color: #333;
    border: 1px solid #d1d5db;
}
.btn-default:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ------------ */ 

body {
    font-style: normal;
    font-weight: 700;
    font-size: 24px!important;
    line-height: 1.5 !important;
    font-family: Inter, sans-serif !important;
    letter-spacing: 0px;
    text-align: left;
    color: #131414;
    margin: 0px;
	background-color: #fff;
	min-height: 100vh;
}

.grazieattivazione{
	font-family: "Inter", Sans-serif;
    font-size: 36px !important;
    font-weight: normal;
    font-style: normal;
}

.buttoncontratto {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #fffb20f5, #FFF100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(187, 174, 0, 0.3);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.buttoncontratto:hover {
    background: linear-gradient(135deg, #fbff01, #f5dd0a);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 144, 0, 0.4);
}

.buttoncontratto:active {
    transform: scale(0.97);
    box-shadow: 0 3px 8px rgba(160, 136, 0, 0.3);
}

.buttoncontratto:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 217, 0, 0.4);
}

/*Switch*/
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider{
	height: 20px;
	width: 40px;
	background-color: #ccc;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 34px;
	cursor: pointer;
}
/* Rounded sliders */
.slider>.round {
	position: absolute;
	cursor: pointer;
	top: 2px;
	left: 4px;
	right: 0;
	bottom: 0;
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
	width: 16px;
	height: 16px;
}
.slideractive{
	background-color: #2196F3;
}
.roundactive{
	margin-left: 16px;
}
/*Switch*/

/*HEADER*/
.header{
	width: 100%;
	height: 100px;
	overflow: hidden;
	background-color: #222;
	position: fixed;
	z-index: 3;
	margin-top: 30px;
}	
.contentheader{
	max-width: 1200px;
	margin: auto;
}
.logo{
	width: 30%;
	height: 85px;
	float: left;
	padding-top: 15px;
	overflow: hidden;
	color: #fff;
}
.logo img{
	margin-left: 3px;
	-webkit-box-sizing: initial!important;
	-moz-box-sizing: initial!important;
	box-sizing: initial!important;
	height: 70px;
}
.divmenu{
	width: 40%;
	height: 75px;
	float: left;
	color: #fff;
	margin-top: 25px;	
}
.login{
	width: 30%;
	height: 75px;
	float: left;
	padding-top: 15px;
	text-align: right;
	color: #fff;
}
.iconaclienti{
	width: 100%;
	text-align: center;
	font-size: 40px;
	margin-top: -5px;
}
.labelclienti{
	width: 100%;
	text-align: center;
	font-size: 14px;
	margin-top: -15px;
}
.chiamaci{
	width: 67%;
	float: left;
	height: 75px;
	padding-top: 18px;
	font-size: 25px;
	padding-right: 10px;
	min-width: 251.2px;
}
.areaclienti{
	width: 25%;
	float: left;
	height: 75px;
	padding-left: 10px;
	border-left: 1px solid #fff;
	min-width: 100.8px;
}
.areaclienti a{
	font-weight: normal;
	text-decoration: none!important;
	color: #fff;
}
.areaclienti a:hover{
	color: #818282;
	text-decoration: none!important;
}
.hamburgermenu{
	display: none;
	float: left;
	width: 18%;
	height: 75px;
	font-size: 45px;
	text-align: center;
}
.menu{
	padding: 20px;
	text-align: center;
}
.menu a{
	color: #fff;
	padding: 12px 20px 2px 0px;
	border-style: solid;
	border-width: 0px 0px 2px 0px;
	border-color: rgba(2, 1, 1, 0);
	font-family: "Inter", Sans-serif;
	font-size: 14px!important;
	font-weight: normal;
	font-style: normal;
	line-height: 1.5em;
	text-decoration: none!important;
}
.menu a:hover{
	color: #818282;
}
/*HEADER*/

/*FOOTER*/
.footer-wrapper{
	margin-top: 12%;
}

.footertop{
	width: 100%;
	height: 10px;
	float: left;
	background-color: #FFF100;
}
.footer{
	width: 100%;
	height: 300px;
	float: left;
	background-color: #222;
}
.footerbottom{
	width: 100%;
	height: 50px;
	float: left;
	background-color: #333;
}
.labelfooterbottom{
	width: 80%;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	padding-left: 15px;
	padding-top: 15px;
}
.divcolonnefooter{
	width: 80%;
	height: 300px;
	margin: auto;
}
.colonnafooter{
	width: 25%;
	height: 300px;
	float: left;
}
.colonnafooter1{
	width: 25%;
	height: 300px;
	float: left;
}
.colonnafooter2{
	width: 25%;
	height: 300px;
	float: left;
}
.colonnafooter3{
	width: 25%;
	height: 300px;
	float: left;
}
.titolocol{
	color: #fff;
	margin-top: 50px;
	height: 60px;
	text-transform: uppercase;
	font-weight: normal;
}
.desccol{
	color: #999;
	font-size: 16px!important;
	font-weight: normal;
}
.desccol p{
	margin: 0px;
	padding: 0px;
	font-size: 16px!important;
	line-height: 1.5!important;
}
.desccol a{
	color: #999;
	text-decoration: none;
}
.desccol a:hover{
	color: #fff;
}
.desccol i{
	margin-right: 10px;
}
.social{
	margin-top: 10px!important;
}
.social i{
	font-size: 25px;
}
/*FOOTER*/

/*TABLET*/
@media only screen and (max-width: 790px) {
	.header{
		margin-top: 0px;
	}
	.hamburgermenu{
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 90px;
		padding-top: 18px;
	}
	.menumobile{
		width: 100%;
		height: 0px;
		background-color: #333;
		position: fixed;
		z-index: 2;
		top: 100px;
		display: none;
	}
	.menumobile ul{
		padding: 10px;
		margin: 0px;
	}
	.menumobile li{
		list-style: none;
		padding-left: 10px;
	}
	.menumobile a{
		font-size: 18px;
		font-weight: normal;
		text-decoration: none;
		color: #fff;
	}
	.divmenu{
		display: none;
	}
	.logo{
		width: 38%;
	}
	.login{
		width: 57%;
		border-top: 0px;
		padding-top: 13px;
		height: 60px;
	}
	.chiamaci{
		width: 57%;
	}
	.iconaclienti{
		margin-top: -2px;
	}
	.areaclienti{
		border-right: 1px solid #fff;
		padding-left: 0px; 
	}
.footertop{
		width: 100%;
	}
	.footer{
		width: 100%;
		height: auto;
	}
	.footerbottom{
		width: 100%;
	}
	.colonnafooter{
		width: 60%;
		height: 240px;
	}
	.colonnafooter1{
		width: 40%;
		height: 240px;
	}
	.colonnafooter2{
		width: 60%;
	}
	.colonnafooter3{
		width: 40%;
	}
	.divcolonnefooter{
		height: 550px;
	}
	.contentpopup{
		width: 90%!important;
		height: auto!important;
		margin: 20% auto!important;
	}
	.contentpopup img{
	    max-width: 100%;
	}	
}
/*TABLET*/

/*SMARTPHONE*/
@media only screen and (max-width: 550px) {
	.header{
		height: 155px;
	}
	.logo{
		width: 100%;
		height: 80px;
		padding-top: 10px;
	}
	.login{
		width: 100%;
		border-top: 1px solid #fff;
		padding-top: 0px;
		height: 60px;
	}
	.hamburgermenu{
		padding-top: 10px;
	}
	.menumobile{
		top: 155px;
	}
	.chiamaci{
		height: 60px;
		padding-top: 12px;
		width: 74%;
		text-align: center;
		padding-right: 0px;
	}
	.areaclienti{
		border-right: 0px;
		height: 60px;
		width: 25%;
		min-width: auto;
	}
	.iconaclienti{
		font-size: 35px;
	}
	.labelclienti{
		font-size: 13px;
	}	
	.colonnafooter{
		width: 100%;
		height: auto;
		text-align: center;
	}
	.colonnafooter1{
		width: 100%;
		height: auto;
		text-align: center;
	}
	.colonnafooter2{
		width: 100%;
		height: auto;
		text-align: center;
	}
	.colonnafooter3{
		width: 100%;
		height: auto;
		margin-bottom: 50px;
		text-align: center;
	}
}
/*SMARTPHONE*/