/* -------------------- override */
.border-start {
  border-left: 1px solid var(--colorgrigioscuro) !important;
}
/* -------------------- override */
/* -------------------- link */
a:focus{
	 outline: none;
}
a,a:visited{
	color:var(--colorblu);
	text-decoration:none;
}
/* -------------------- link */

/* -------------------- form control */
*:focus{
	box-shadow: inset 0 0px 0 #ddd !important;
	outline: none;
}
.btn-primary, 
.btn-primary:hover, 
.btn-primary:focus
textarea:focus, 
textarea.form-control:focus, 
input.form-control:focus, 
input[type=text]:focus, 
input[type=password]:focus, 
input[type=email]:focus, 
input[type=number]:focus, 
[type=text].form-control:focus, 
[type=password].form-control:focus, 
[type=email].form-control:focus, 
[type=tel].form-control:focus, 
[contenteditable].form-control:focus {
  box-shadow: inset 0 0px 0 #ddd !important;
}
.form-control:focus{
	border-color: var(--colorblu) !important;
}
.select2{
	width: 100% !important;
}
.select2-container--default,
.select2-selection--single{
	background-color: white !important; 
	box-shadow: none !important;
}
.select2-container--default,
.select2-selection--single,
.select2-selection__rendered{
	height: 40px !important;
	line-height: 40px !important;
	-webkit-border-radius:  var(--borderradius) !important;
	-moz-border-radius:  var(--borderradius) !important;
	border-radius:  var(--borderradius) !important;
} 
.select2-selection__arrow b{
	margin-top: 10px;
}
.select2-selection__arrow{
	top: 50% !important;
	transform: translateY(-50%);
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
	background-color: var(--colorarancione) !important;
}
.select2-results__option{
	text-transform: uppercase !important;
}
.select2-selection__clear{
	display: none;
}
.select2-container--default .select2-selection--single{
	border: 1px solid var(--colorgrigioscuro) !important;
}
.formTitleMaggiore{
	color: var(--colorblu);
	font-weight: bold;
	margin-top: 25px;
	margin-bottom: 25px;
}
input.form-control {
	 height: 40px;
    padding: 10px 10px;
	font-size: 16px;
	line-height: 40px;
	-webkit-border-radius:  var(--borderradius);
	-moz-border-radius:  var(--borderradius);
	border-radius:  var(--borderradius);
	border: 1px solid var(--colorgrigioscuro) !important;
}
.form-select{
	-webkit-border-radius:  var(--borderradius);
	-moz-border-radius:  var(--borderradius);
	border-radius:  var(--borderradius);
	border: 1px solid var(--colorgrigioscuro) !important;
}
.form-label{
	font-weight: 600;
	font-size: 15px;
}
.btn{
	border-radius: var(--borderradius) !important;
}
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    color: #fff !important; 
    background-color: var(--colorarancione) !important;
    border-color: var(--colorarancione) !important;
	text-transform: uppercase;
	border-radius: var(--borderradius);
	padding-left: 15px;
	padding-right: 15px;
	font-weight: bold; 
}
.switch {
  position: relative;
  display: inline-block;
     width: 55px;
    height: 25px;
	margin-bottom: 0px;
}
.switch.vertical{
	transform: rotate(270deg);
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--colorgrigioscuro);
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
      height: 17px;
    width: 17px;
    left: 8px;
    bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: var(--colorarancione);
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--colorarancione);
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}
.toggle-switch .label{
	padding-left: 15px;
}
.form-check .form-check-label{
	margin-top: 2px;
}
/* -------------------- form control */
   
/* -------------------- CHECKBOX */
.container-checkbox {
	  display: block;
	  position: relative;
	  padding-left: 15px;
	  margin-bottom: 12px;
	  cursor: pointer;
	  font-size: 15px;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
}
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color:  var(--colorgrigioscuro);
}
.container-checkbox:hover input ~ .checkmark {
  background-color:  var(--colorgrigioscuro);
}
.container-checkbox input:checked ~ .checkmark {
  background-color: var(--colorblu);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.container-checkbox .checkmark:after {
     left: 7px;
    top: 4px;
  width: 7px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* -------------------- CHECKBOX */

/* -------------------- RADIO */
input[type="radio"]:checked {
    background-color: var(--colorarancione);
    border: none;
    border: 3px solid  var(--colorgrigioscuro);
}
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    padding: 0px;
    background-clip: content-box;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 5px;
	cursor: pointer;
	border:3px solid  var(--colorgrigioscuro);
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: none !important;
}
/* -------------------- RADIO */

/* -------------------- tooltip */
.tooltip-maggiore{
	position: relative;
}
.tooltip-maggiore > img{
	cursor:pointer !important;
}
.tooltip-maggiore span{
	position: absolute;
	visibility: hidden;
}
.tooltip-maggiore:hover span{
	visibility: visible;
	text-decoration:none;
	z-index: 100;
}
.tooltip-maggiore span{
	font-size:11px !important; 
	color:#555 !important;
	line-height:12px !important;
	text-transform:none !important;
	font-weight:normal !important;
	border-radius: 2px 2px 2px 2px;
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	display:block;
	top: 6px;
	left: 29px;
	padding:3px;
	text-align:left;
	width:200px;
}
.tooltip-maggiore-new{
	cursor: help;
}
/* -------------------- tooltip */

   
/* -------------------- banner */
.banners-box-style1 .banner {
	position: relative;
	border:1px solid #ccc;
	-webkit-border-radius: var(--borderradiusbanner);
    -moz-border-radius: var(--borderradiusbanner);
    border-radius: var(--borderradiusbanner);
	
}
.banners-box-style1 .banner img{
	width: 100%;
	-webkit-border-radius: var(--borderradiusbanner);
    -moz-border-radius: var(--borderradiusbanner);
    border-radius: var(--borderradiusbanner);
}
.banners-box-style1 .banner .text-banner{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 40px 40px 20px 40px;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	color: white;
	-webkit-border-bottom-right-radius: var(--borderradiusbanner);
	-webkit-border-bottom-left-radius: var(--borderradiusbanner);
	-moz-border-radius-bottomright: var(--borderradiusbanner);
	-moz-border-radius-bottomleft: var(--borderradiusbanner);
	border-bottom-right-radius: var(--borderradiusbanner);
	border-bottom-left-radius: var(--borderradiusbanner);
}
.banners-box-style1 .banner .sub-head{
	font-size: 1rem;
}
.banners-box-style1 .banner .scopri{
	text-transform: uppercase;
	font-weight: bold; 
	padding-top: 20px;
}

.banners-box-style2 .banner {
	position: relative;
	border:1px solid #ccc;
	-webkit-border-radius: var(--borderradiusbanner);
    -moz-border-radius: var(--borderradiusbanner);
    border-radius: var(--borderradiusbanner);
	
}
.banners-box-style2 .banner img{
	width: 100%;
	-webkit-border-radius: var(--borderradiusbanner);
    -moz-border-radius: var(--borderradiusbanner);
    border-radius: var(--borderradiusbanner);
}
.banners-box-style2 .banner .text-banner{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 20px;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	color: white;
	-webkit-border-bottom-right-radius: var(--borderradiusbanner);
	-webkit-border-bottom-left-radius: var(--borderradiusbanner);
	-moz-border-radius-bottomright: var(--borderradiusbanner);
	-moz-border-radius-bottomleft: var(--borderradiusbanner);
	border-bottom-right-radius: var(--borderradiusbanner);
	border-bottom-left-radius: var(--borderradiusbanner);
}
.banners-box-style1 .banner .head h3,
.banners-box-style2 .banner .head h3{
	text-align: center;	
}
.banners-box-style1 .banner .subhead,
.banners-box-style2 .banner .subhead{
	font-size: 1rem;
	text-align: center; 
}
.banners-box-style2 .banner .scopri{
	text-transform: uppercase;
	font-weight: bold; 
	padding-top: 10px;
}
.banners-box-style1 .head h3,
.banners-box-style2 .head h3{
	font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}
@media only screen and  (max-width: 768px) { 
.banners-box-style1 .banner,
	.banners-box-style2 .banner{
		margin-bottom: 25px;
	}
}
/* -------------------- banner */


/* -------------------- da fonti dinamiche */
.from_tinymce {
	line-height: 1.3em;
}
.from_tinymce ul {
	padding-left: 40px;
}
/* -------------------- da fonti dinamiche */

h1.c-html{
	color: var(--colorblu);
    font-weight: bold;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}
h1.c-html span{
	color: var(--colorarancione);
}
h2.c-html{
	color: var(--colorblu);
    font-weight: 600;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* --------------------utility old-version-site*/
.clear{
	clear:both;
}
.clear-left{
	clear:left;
}
.clear-right{
	clear:right;
}
.no_margin {
	margin: 0;
}
.uppercase {
	text-transform: uppercase;
}
._hidden{
	display:none;
}
.left{
	float:left;
}
.right{
	float:right;
}
.mt0{
	margin-top: 0px !important;
}
.mb0{
	margin-bottom: 0px !important;
}
.pl0{
	padding-left: 0px !important;
}
.pr0{
	padding-right: 0px !important;
}
/* --------------------utility old-version-site*/





/* --------------------pulsanti old-version-site*/
a .box_button, a .box_button_big {
	cursor: pointer;
	text-decoration: none;
}
.box_button div.bb_left_corner{
	float: left;
	width:6px;
	height:30px;
	background: url(/web/img/bg/button-bg.png) 0 0 no-repeat;
}
.box_button div.bb_right_corner{
	float: left;
	width:7px;
	height:30px;
	background: url(/web/img/bg/button-bg.png) 0 -62px no-repeat;
}
.box_button div.bb_content{
	float: left;
	height:30px;
	line-height: 30px;
	background: url(/web/img/bg/button-bg.png) 0 -31px repeat-x;
	padding: 0 10px;
	color: #FFF;
	text-transform:uppercase;
}
.box_button div.bb_icon_content{
	height:30px;
	width:16px;
	background: url(/web/img/bg/button-bg.png) 0 -31px repeat-x;
	float:left;
}
.box_button div.bb_icon_content span.bb_icon_arrow_right{
	display:block;
	background: url(/web/img/bg/button-arrow-right.png) center center;
	background-repeat:no-repeat;
	height:30px;
	width:16px;
}


.box_button_big div.bb_left_corner{
	float: left;
	width:6px;
	height:42px;
	background: url(/web/img/bg/button-bg-40.png) 0 0 no-repeat;
}
.box_button_big div.bb_right_corner{
	float: left;
	width:7px;
	height:42px;
	background: url(/web/img/bg/button-bg-40.png) 0 -84px no-repeat;
}
.box_button_big div.bb_content{
	float: left;
	height:42px;
	line-height: 39px;
	background: url(/web/img/bg/button-bg-40.png) 0 -42px repeat-x;
	padding: 0 10px;
	color: #FFF;
	font-size:24px;
	text-transform:uppercase;
}
.box_button_big div.bb_icon_content{
	height:42px;
	width:23px;
	background: url(/web/img/bg/button-bg-40.png) 0 -42px repeat-x;
	float:left;
}
.box_button_big div.bb_icon_content span.bb_icon_arrow_right{
	display:block;
	background: url(/web/img/bg/button-arrow-right.png) center center;
	background-repeat:no-repeat;
	height:42px;
	width:23px;
}
/* --------------------pulsanti old-version-site*/


/* --------------------form old-version-site*/
.alert.fail{
	color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert.success{
	color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
/*inizio: rimane così per il 
funzionamento del redirect*/
.formMaggiore.fail{ 
	display:block;
}
.formMaggiore.success{
	display:none;
}
/*fine: rimane così per il 
funzionamento del redirect*/

.tableForInfoMaggiore{
	background-color:#FFF;
	border:1px solid  var(--colorgrigioscuro);
	width:90%;
	margin-top:10px;
	margin-bottom:10px;
}
.tableForInfoMaggiore th{
	background-color:#eff7fe;
	color:#888888;
	font-weight:bold; 
	font-size:13px;
	height:30px;
	line-height:30px;
	border:1px solid  var(--colorgrigioscuro);
	padding:5px;
}
.tableForInfoMaggiore td{
	font-size:12px;
	border:1px solid  var(--colorgrigioscuro);
	padding:5px;
	vertical-align:middle !important;
}
.tableForInfoMaggiore td ul{
	list-style-image:none;
	list-style:none;
}
.tableForInfoMaggiore td li{
	list-style-image:none;
	list-style:none;
	padding:3px;
}
/* --------------------form old-version-site*/



@media only screen and (max-width:992px){
	
	
	

	.pl0{
		padding-left: 15px !important;
	}
	.pr0{
		padding-right: 15px !important;
	}
	
	h1.c-html{
		font-size: 25px;
	}

	h2.c-html{
		font-size: 19px;
	}
	
}