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

/* general */
html.hidden {
	display: block !important;
}
body {
	position: relative;
	overflow-x: hidden;
	background-color: #265486;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
}
.bodyleft {
	position: relative;
}
a, a:hover {
	text-decoration: none;
}

/* scroll to top */
#scrollUp {
	bottom: 20px;
	right: 20px;
	width: 38px;
	height: 38px;
	background-image: url('https://www.fondoespero.it/js/top.png');
}
/* Â§ scroll to top */
/* general */

/* top head */
.top-head {
	background-color: #265486;
}
.top-head .top-contact {
	float: left;
	margin: 0;
	padding: 14px 0;
	list-style: none;
}
.top-head .top-contact li {
	position: relative;
	float: left;
	margin-right: 20px;
	color: rgba(255, 255, 255, 0.7);
}
.top-head .top-contact li a {
	color: rgba(255, 255, 255, 0.7);
}
.top-head .top-contact li a:hover {
	color: rgba(255, 255, 255, 1);
}
.top-head .top-contact li a .fa {
	margin-right: 8px;
	font-size: 16px;
	color: #F78723;
}

/* button area riservata */
.top-head .btn-areariservata-top {
	float: right;
	padding: 14px 20px;
	background-color: #619BCC;
	font-weight: 700;
	color: #fff;
}
.top-head .btn-areariservata-top:hover {
	background-color: #F78723;
}
.top-head .btn-areariservata-top .fa {
	margin-right: 8px;
	font-size: 16px;
	font-weight: 400;
    color: #1E73BE;
}
/* Â§ button area riservata */
/* Â§ top head */

/* header */
.header {
	position: relative;
	z-index: 999;
	background-color: #fff;
}

/* logo */
.logo {
	display: block;
	float: left;
	width: 105px;
	height: 95px;
	margin-top: 5px;
	margin-bottom: 20px;
	background-image: url("https://www.fondoespero.it/img/logo.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;

	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
/* Â§ logo */

/* toggle_menu */
.header .toggle_menu,
.header .toggle_menu:focus {
	display: none;
	float: right;
	margin-top: 48px;
	padding-bottom: 48px;
	font-size: 18px;
	color: #00548E;
	line-height: 1;
	cursor: pointer;
}
.header .toggle_menu:hover {
	color: #F78723;
}
.header .toggle_menu:before {
	content: '\f0c9';
	font-family: FontAwesome;
}
.header .toggle_menu.closed:before {
	content: '\f00d';
}
/* Â§ toggle_menu */

/* main menu */
.main_menu {
	float: right;
	margin-top: 48px;
}

/* menu list */
.main_menu .menu_list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.main_menu .menu_list > li {
	position: relative;
	float: left;
}
.main_menu .menu_list > li > a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0 20px 48px 20px;
	border-bottom: 5px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
	background-color: #fff;
	font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #00548E;
	line-height: 1.2;
	text-transform: uppercase;
}
.main_menu .menu_list > li > a.active,
.main_menu .menu_list > li:hover > a {
	border-bottom-color: #F78723;
}
/* Â§ menu list */

/* submenu */
.main_menu .menu_list > li ul {
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 0;
	min-width: 100%;

	visibility: hidden;
	opacity: 0;
}
.csstransforms .main_menu .menu_list > li ul {

	/* modernizr */
	transform: translateY(2em);
}
.csstransitions .main_menu .menu_list > li ul {

	/* modernizr */
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.main_menu .menu_list > li:hover ul {
	visibility: visible; /* shows sub-menu */
	opacity: 1;
}
.csstransforms .main_menu .menu_list > li:hover ul {

	/* modernizr */
	transform: translateY(0);
}
.csstransitions .main_menu .menu_list > li:hover ul {

	/* modernizr */
	transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.main_menu .menu_list > li ul {
    margin: 0;
    padding: 4px 0;
	background-color: #EEE;
    list-style: none;

	/* piefix */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	-ms-behavior: url(js/PIE.htc);
}
.main_menu .menu_list > li ul li {
	margin: 0;
	padding: 0;
}
.main_menu .menu_list > li ul li a {
	display: block;
	min-width: 270px;
	padding: 14px 18px;
	border-bottom: 1px solid #ddd;
	color: #333333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}
.main_menu .menu_list > li ul li:last-child a {
	border-bottom: none;
}
.csstransitions .main_menu .menu_list > li ul li a {

	/* modernizr */
	transition: all 0.3s ease-in-out;
}
.main_menu .menu_list > li ul li a.active,
.main_menu .menu_list > li ul li a:hover {
	background-color: #454545;
	color: #fff;
}
/* Â§ submenu */

/* search-icon */
.main_menu .menu_list > li.search-icon {
	line-height: 1;
	margin-left: 20px;
}
.main_menu .menu_list > li.search-icon > a {
	padding-left: 0;
	padding-right: 0;
	color: #333333;
}
.main_menu .menu_list > li.search-icon > a:hover {
	border-bottom-color: #fff;
	color: #454545;
}
.main_menu .menu_list > li.search-icon .fa {
	font-weight: 400;
	font-size: 18px;
}
.main_menu .menu_list > li.search-icon > a .search-text {
	display: none;
}
/* Â§ search-icon */
/* Â§ main menu */
/* Â§ header */

/* searchpopup */
.searchpopup {
	position: relative;
	padding: 20px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
	display: none;
}
.mfp-fade .searchpopup {
	display: block;
}
.searchpopup label {
	font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
.mfp-fade .mfp-container {
	padding: 0;
}
.btn-search {
	background-color: #F78723;
	border-color: #F78723;
	color: #fff;
}
.btn-search:hover,
.btn-search:focus,
.btn-search:active,
.btn-search.active {
	background-color: #f67a0a;
	border-color: #df6d08;
	color: #fff;
}
.btn-search.disabled:hover,
.btn-search.disabled:focus,
.btn-search.disabled:active,
.btn-search.disabled.active,
.btn-search[disabled]:hover,
.btn-search[disabled]:focus,
.btn-search[disabled]:active,
.btn-search[disabled].active,
fieldset[disabled] .btn-search:hover,
fieldset[disabled] .btn-search:focus,
fieldset[disabled] .btn-search:active,
fieldset[disabled] .btn-search.active {
	background-color: #F78723;
	border-color: #F78723;
	color: #fff;
}

/* overlay at start */
.csstransitions .mfp-fade.mfp-bg {
	opacity: 0;

	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* overlay animate in */
.csstransitions .mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
/* overlay animate out */
.csstransitions .mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.csstransitions .mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transform: translateY(-90%);

	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* content animate it */
.csstransitions .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
	transform: translateY(0%);
}
/* content animate out */
.csstransitions .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
	transform: translateY(-90%);
}
/* searchpopup */

/* bannerhome */
.bannerhome {
	position: relative;
	z-index: 1;
}
.bannerhome .cycleslider {
	position: relative;
	height: 500px;
	overflow: hidden;
	background-color: #000;
}

/* slide */
.bannerhome .cycleslider .slide {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.bannerhome .cycleslider .slide .bannerwrap {
	position: relative;
	z-index: 10;
	height: 100%;
}
.bannerhome .cycleslider .slide .bannerwrap .container-titoli {
	position: absolute;
	z-index: 100;
	top: 60%;
	right: 15px;
	left: 15px;
}
.bannerhome .cycleslider .slide .bannerwrap .container-titoli h1 {
    position: relative;
	float: right;
	opacity: 0;
    margin: 0;
	margin-top: 300px;
    padding: 8px 50px 8px 8px;
    background-color: #00548E;
    font-size: 30px;
    color: #fff;
	text-align: right;
}
.bannerhome .cycleslider .slide .bannerwrap .container-titoli h1:after {
	position: absolute;
	bottom: 10px;
	right: 8px;
	content: '\f054';
	font-family: FontAwesome;
	font-size: 21px;
	color: #fff;
}
.csstransitions .bannerhome .cycleslider .slide .bannerwrap .container-titoli h1 {

	/* modernizr */
	transition: all 0.6s ease-in-out;
}
.no-csstransitions .bannerhome .cycleslider .slide .bannerwrap .container-titoli h1,
.bannerhome .cycleslider .slide.moving .bannerwrap .container-titoli h1 {
	margin-top: 0;
	opacity: 1;
}
.bannerhome .cycleslider .slide .bannerwrap .container-titoli h2 {
    float: right;
    clear: both;
	opacity: 0;
	margin: 0;
	margin-top: 600px;
    padding: 8px;
    background-color: #fff;
    font-size: 20px;
    color: #282828;
	text-align: right;
}
.csstransitions .bannerhome .cycleslider .slide .bannerwrap .container-titoli h2 {

	/* modernizr */
	transition: all 0.6s ease-in-out 0.1s;
}
.no-csstransitions .bannerhome .cycleslider .slide .bannerwrap .container-titoli h2,
.bannerhome .cycleslider .slide.moving .bannerwrap .container-titoli h2 {
	margin-top: 10px;
	opacity: 1;
}
.bannerhome .cycleslider .slide .videowrap {
	position: relative;
	z-index: 10;
	height: 100%;
}
.bannerhome .cycleslider .slide .videowrap iframe {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 1140px;
	max-height: 500px;
	border: 0;
}
/* Â§ slide */

/* prev, next */
.bannerhome .cycleslider .cycle-prev,
.bannerhome .cycleslider .cycle-next {
    position: absolute;
    z-index: 999;
    top: 0;
    width: 6.25%;
	min-width: 15px;
    height: 100%;
	opacity: 0.9;
	font-size: 4.7vw;
	color: #fff;
	line-height: 1;
	text-align: center;
    cursor: pointer;
}
.csstransitions .bannerhome .cycleslider .cycle-prev,
.csstransitions .bannerhome .cycleslider .cycle-next {

	/* modernizr */
	transition: all 0.3s ease-in-out;
}
.bannerhome .cycleslider .cycle-prev:hover,
.bannerhome .cycleslider .cycle-next:hover {
	color: #91b3d3;
}
.bannerhome .cycleslider .cycle-next {
    right: 0;
}
.bannerhome .cycleslider .cycle-prev {
    left: 0;
}
.bannerhome .cycleslider .cycle-prev:before,
.bannerhome .cycleslider .cycle-next:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin-top: -2.35vw;
	font-family: FontAwesome;
}
.bannerhome .cycleslider .cycle-next:before {
	content: '\f138';
}
.bannerhome .cycleslider .cycle-prev:before {
	content: '\f137';
}
/* Â§ prev, next */
/* Â§ bannerhome */

/* bannerhp */
.bannerhp {
	height: 451px;
	border-top: 1px solid #f28723;
	background-image: url(https://www.fondoespero.it/img/banner_strada_2020.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bannerhp .container {
	display: flex;
	height: 100%;
	justify-content: flex-end;
	align-items: flex-end;
}
.bannerhp .banner-txt {
	margin-left: 16.581197%;
	margin-bottom: 45px;
	text-align: right;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
}
.bannerhp .banner-txt h3 {
	margin: 0;
	margin-bottom: 16px;
}
.bannerhp .banner-txt h3 span {
	display: inline-block;
	padding: 5px 16px;
	background-color: #14548e;
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	text-transform: uppercase;
}
/* Â§ bannerhp */

/* sub-bannerhp */
.sub-bannerhp {
	position: relative;
    z-index: 1000;
	padding: 1px 0;
	background-color: #f6ab65;
}
.sub-bannerhp .container {
	margin-top: -23px;
	margin-bottom: -23px;
}
.sub-bannerhp .col-xs-12 {
	border: 1px solid #fff;
	background-color: #f28723;
}
.sub-bannerhp .col-xs-12:last-child {
	margin-left: -1px;
}
.sub-bannerhp .box {
	display: flex;
	align-items: center;
	height: 200px;
	margin: 0 -15px;
	font-size: 18px;
	color: #fff;
	line-height: 1.3;
	text-transform: uppercase;
}
.sub-bannerhp .box:hover {
	background-color: #FFAD49;
}
.sub-bannerhp .box .icon {
	width: 200px;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.sub-bannerhp .box.non-iscritto .icon {
	background-image: url(https://www.fondoespero.it/img/non-iscritti.png);
}
.sub-bannerhp .box.iscritto .icon {
	background-image: url(https://www.fondoespero.it/img/iscritti.png);
}
.sub-bannerhp .box h4 {
	margin: 0;
	margin-bottom: 12px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}
.sub-bannerhp .box h4 .espero-blue {
	color: #265486;
}
/* Â§ sub-bannerhp */

/* button aderisci ora */
.aderisci-ora {
	position: relative;
	z-index: 999;
	background-color: #fff;
}
.aderisci-ora .btn-aderisci-ora {
	position: relative;
	float: right;
	width: 100%;
	max-width: 450px;
	margin: -70px 15px 0 15px;
	padding: 26px 20px 26px 120px;
	background-color: #F78723;
	color: #fff;
}
.aderisci-ora .btn-aderisci-ora h5 {
	margin: 0;
	font-size: 30px;
	font-weight: 800;
}
.aderisci-ora .btn-aderisci-ora h5 span {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}
.aderisci-ora .btn-aderisci-ora .icon {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100px;
	background-color: #D56B29;
	background-image: url(https://www.fondoespero.it/img/handshake.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.aderisci-ora .btn-aderisci-ora:hover,
.aderisci-ora .btn-aderisci-ora:hover .icon {
	background-color: #003E6C;
}
/* Â§ button aderisci ora */

/* banners area */
.banners-area {
	position: relative;
	z-index: 999;
	padding: 60px 0 40px 0;
	background-color: #fff;
}
.banners-area .banners-box {
	position: relative;
	display: block;
	max-width: 345px;
	margin: 0 auto 30px auto;
	border-bottom: 5px solid #F78723;
}
.banners-area .banners-box:hover {
	background-color: #F78723;
}
.banners-area .banners-box .icon {
	display: block;
	height: 90px;
	background-repeat: no-repeat;
	background-position: center center;
}
.banners-area .banners-box h5 {
	margin: 30px 20px;
	font-size: 16px;
	font-weight: 800;
	color: #444546;
	text-align: center;
	text-transform: uppercase;
}
.banners-area .banners-box h5 span {
	color: #F78723;
}
.banners-area .banners-box:hover h5,
.banners-area .banners-box:hover h5 span {
	color: #fff;
}
.banners-area .banners-box.simulatore-box .icon {
	background-image: url(https://www.fondoespero.it/img/simulatore.png);
}
.banners-area .banners-box.prestazioni-box .icon {
	background-image: url(https://www.fondoespero.it/img/prestazioni.png);
}
.banners-area .banners-box.contribuzione-box .icon {
	background-image: url(https://www.fondoespero.it/img/contribuzione.png);
}
.banners-area .banners-box.gestionefin-box .icon {
	background-image: url(https://www.fondoespero.it/img/gestionefin.png);
}
.banners-area .banners-box.esg-box .icon {
	background-image: url(https://www.fondoespero.it/img/esg.png);
}
/* Â§ banners area */

/* news area */
.news-area {
	background-color: #376ca5;
	padding: 40px 0 0 0;
}
.news-area h5 {
	margin: 0 0 40px 0;
	border-left: 2px solid #F78723;
	padding-left: 15px;
	font-size: 30px;
	font-weight: 800;
	color: #fff;
}
.news-area h5 span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #999999;
}

/* news archive */
a.news-colonne {
	display: block;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 1px;
}
a.news-colonne:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 1px;
	background-color: #F78723;
	content: '';
}
a.news-colonne .foto-news {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-filter: grayscale(0);
	filter: grayscale(0);

	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.csstransitions a.news-colonne .foto-news {

	/* modernizr */
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
a.news-colonne:hover .foto-news {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
a.news-colonne .data {
	display: inline-block;
	margin: 20px 0 10px 0;
	padding: 5px;
	background-color: #F78723;
	color: #fff;
	text-transform: uppercase;
}
a.news-colonne:hover .data {
	background-color: #619BCC;
}
a.news-colonne .testo-news {
	color: #868686;
}
.home a.news-colonne .testo-news {
	color: #fff;
}
a.news-colonne .testo-news h2 {
	margin: 5px 0;
	font-size: 20px;
	font-weight: 800;
	color: #454545;
}
.home a.news-colonne .testo-news h2 {
	color: #fff;
}
a.news-colonne:hover .testo-news h2 {
	color: #F78723;
}
a.news-riga {
	display: flex;
	align-items: center;
}
a.news-riga:after {
	display: none;
}
a.news-riga .col-news {
	position: relative;
	width: 50%;
	padding-right: 15px;
}
a.news-riga .col-news:last-child {
	padding-right: 0;
	padding-left: 15px;
}
a.news-riga .col-news:last-child:after {
	position: absolute;
	left: 15px;
	bottom: 0;
	width: 100px;
	height: 1px;
	background-color: #F78723;
	content: '';
}
a.news-riga .foto-news {
	border: 1px solid #fff;
}
a.news-riga .data {
	margin: 0 0 10px 0;
}

/* pagination */
.content .pagination > li > a,
.content .pagination > li > span {
    color: #619BCC;
}
.content .pagination > li > a:focus,
.content .pagination > li > a:hover,
.content .pagination > li > span:focus,
.content .pagination > li > span:hover {
	color: #fff;
    background-color: #1E73BE;
}
.content .pagination > .active > a,
.content .pagination > .active > a:focus,
.content .pagination > .active > a:hover,
.content .pagination > .active > span,
.content .pagination > .active > span:focus,
.content .pagination > .active > span:hover {
	color: #fff;
    background-color: #619BCC;
    border-color: #619BCC;
}
.content .pager li > a,
.content .pager li > span {
    color: #619BCC;
}
.content .pager li > a:focus,
.content .pager li > a:hover {
	color: #fff;
    background-color: #1E73BE;
}
/* Â§ pagination */
/* Â§ news archive */

/* columns */
.columns {
	background-color: #fff;
	padding-bottom: 70px;
}
/* Â§ columns */

/* news interna */
.news-article .news-image {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-filter: grayscale(0);
	filter: grayscale(0);

	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.csstransitions .news-article .news-image {

	/* modernizr */
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
.news-article .news-image:hover {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.news-article .data {
	display: inline-block;
	margin: 20px 0 10px 0;
	padding: 5px;
	background-color: #F78723;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
.news-article .news_title {
	margin-bottom: 35px;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}
.news-box {
	position: relative;
	background-color: #ededed;
	padding-top: 20px;
	padding-bottom: 20px;
}
/* Â§ news interna */

/* news buttons */
.all-news-home {
	display: block;
	width: 100%;
	max-width: 180px;
	margin: 0 auto 40px auto;
	padding: 13px 19px;
	border: 2px solid #fff;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}
.all-news-home:hover {
	border: 2px solid #042742;
	background-color: #042742;
	color: #fff;
}
.all-news {
	display: block;
	width: 100%;
	max-width: 180px;
	margin: 0 auto;
	padding: 13px 19px;
	border: 2px solid #F78723;
	font-size: 18px;
	font-weight: 600;
	color: #F78723;
	text-align: center;
	text-transform: uppercase;
}
.all-news:hover {
	border: 2px solid #042742;
	background-color: #042742;
	color: #fff;
}
/* Â§ news buttons */

/* youtube */
.youtube .img {
	position: relative;
	display: block;
	height: 0;
	margin-bottom: 30px;
	border: 1px solid #fff;
	padding-top: 56.25%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.youtube .img:before {
	position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    content: '';
    background-image: url(https://www.fondoespero.it/img/play.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
/* Â§ youtube */
/* Â§ news area */

/* login organi home */
.login-organi-home {
	position: relative;
	z-index: 999;
	padding: 30px 0 30px 0;
	border-top: 8px solid #fff;
	background-color: #F78723;
}
.login-organi-home h5 {
	/*margin: 0 0 40px 0;*/
	margin: 0;
	border-left: 2px solid #fff;
	padding-left: 15px;
	font-size: 30px;
	font-weight: 800;
	color: #fff;
}
.login-organi-home h5 span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #003f69;
}
.btn-login {
	background-color: #003f69;
	border-color: #003f69;
	color: #fff;
}
.btn-login:hover,
.btn-login:focus,
.btn-login:active,
.btn-login.active {
	background-color: #003050;
	border-color: #002036;
	color: #fff;
}
.btn-login.disabled:hover,
.btn-login.disabled:focus,
.btn-login.disabled:active,
.btn-login.disabled.active,
.btn-login[disabled]:hover,
.btn-login[disabled]:focus,
.btn-login[disabled]:active,
.btn-login[disabled].active,
fieldset[disabled] .btn-login:hover,
fieldset[disabled] .btn-login:focus,
fieldset[disabled] .btn-login:active,
fieldset[disabled] .btn-login.active {
	background-color: #003f69;
	border-color: #003f69;
	color: #fff;
}
.btn-retrieve {
	color: #000000;
}
.btn-retrieve:hover {
	color: #333;
}
/* Â§ login organi home */

/* contatti-hp */
.contatti-hp {
	position: relative;
    z-index: 999;
    padding: 30px 0 0 0;
    border-top: 8px solid #fff;
    background-color: #e2e2e2;
}
.contatti-hp .box {
	position: relative;
	display: block;
	max-width: 250px;
	margin: 0 auto 30px auto;
}
.contatti-hp .box .icon {
	display: block;
	height: 72px;
	background-repeat: no-repeat;
	background-position: center center;
}
.contatti-hp .box .txt {
	margin-top: 20px;
	border-top: 3px solid #f28723;
	padding-top: 20px;
	font-size: 16px;
	font-weight: 800;
	color: #43455c;
	text-align: center;
	text-transform: uppercase;
}
.contatti-hp .box .txt span {
	color: #376ca5;
}
.contatti-hp .box:hover .txt,
.contatti-hp .box:hover .txt span {
	color: #f28723;
}
.contatti-hp .box.newsletter .icon {
	background-image: url(https://www.fondoespero.it/img/mail.png);
}
.contatti-hp .box.email .icon {
	background-image: url(https://www.fondoespero.it/img/at.png);
}
.contatti-hp .box.facebook .icon {
	background-image: url(https://www.fondoespero.it/img/facebook.png);
}
/* Â§ contatti-hp */

/* fonti istitutive */
.fonti-istitutive {
	position: relative;
	z-index: 999;
	padding: 30px 0 30px 0;
	border-top: 5px solid #F78723;
	background-color: #fff;
}
.fonti-istitutive h5 {
	margin: 0 0 20px 0;
    font-weight: 800;
    color: #1b3d6c;
	text-align: center;
	text-transform: uppercase;
}
.fonti-istitutive .loghi-block {
	display: inline-block;
}
/* Â§ fonti istitutive */

/* footer */
.footer {
	position: relative;
	z-index: 999;
	padding: 30px 0 30px 0;
	background-color: #265486;
}

/* contatti */
.contatti-footer {
	position: relative;
	float: left;
	min-height: 85px;
	padding-left: 110px;
	color: rgba(255, 255, 255, 0.7);
}
.contatti-footer .logo-footer {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 96px;
	background-image: url(https://www.fondoespero.it/img/logo-footer.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.contatti-footer a {
	color: rgba(255, 255, 255, 0.7);
}
.contatti-footer a:hover {
	color: rgba(255, 255, 255, 1);
}
/* Â§ contatti */

/* button aderisci ora */
.aderisci-footer {
	position: relative;
	float: right;
}
.aderisci-footer .btn-aderisci-ora-ft {
	position: relative;
	display: block;
	float: right;
	width: 100%;
	max-width: 450px;
	margin: -50px 0 40px 15px;
	padding: 26px 20px 26px 120px;
	background-color: #F78723;
	color: #fff;
}
.aderisci-footer .btn-aderisci-ora-ft h5 {
	margin: 0;
	font-size: 30px;
	font-weight: 800;
}
.aderisci-footer .btn-aderisci-ora-ft h5 span {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}
.aderisci-footer .btn-aderisci-ora-ft .icon {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100px;
	background-color: #D56B29;
	background-image: url(https://www.fondoespero.it/img/handshake.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.aderisci-footer .btn-aderisci-ora-ft:hover {
	background-color: #FFAD49;
	color: #fff;
}
.aderisci-footer .btn-aderisci-ora-ft:hover .icon {
	background-color: #FB914F;
}
/* Â§ button aderisci ora */

/* menu bottom */
.menu_bottom {
	float: right;
	clear: both;
	text-align: center;
}
.menu_bottom a {
	display: inline-block;
	padding: 0 10px;
	font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
}
.menu_bottom a:hover {
	color: rgba(255, 255, 255, 1);
}
/* Â§ menu bottom */

/* promo text */
.promo-text {
	padding-top: 20px;
	clear: both;
	font-size: 13px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}
/* Â§ promo text */

.footer-denominazione {
	position: relative;
	float: left;
	min-height: 85px;
	font-size: 12px;
	padding-left: 0;
	color: rgba(255, 255, 255, 0.7);
}

.footer-denominazione a {
	color: #fff;
}

/* Â§ footer */

/* main */
.main {
	position: relative;
	z-index: 1;
	padding: 0 0 40px 0;
	background-color: #fff;
}

/* imag interna e path */
.img_interna {
	position: relative;
	height: 388px;
	margin-bottom: 60px;
	background-position: center center;
	background-repeat: no-repeat;

	/* backgroundsize */
	background-size: cover;
	-ms-behavior: url(/js/backgroundsize.min.htc);
}
.img_interna .main_title {
	position: absolute;
	top: 50%;
	height: 66px;
	margin: -33px 0 0 0;
	padding: 0;
	font-size: 40px;
    font-weight: 700;
    color: #FFF;
	line-height: 1;
}
.path {
	margin-bottom: 60px;
    padding-top: 18px;
    padding-bottom: 17px;
    background: rgba(0, 0, 0, 0.4);
	color: #fff;
}
.img_interna .path {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
	margin-bottom: 0;
}
.path a {
	display: inline-block;
    margin-right: 12px;
	color: #fff;
}
.path a:hover {
	color: #F78723;
}
.path a:after {
    margin-left: 12px;
	font-family: FontAwesome;
    content: '\f105';
}
/* Â§ img interna e path */

/* titles */
.page_title,
.docs_title {
	margin-bottom: 35px;
	font-size: 28px;
	font-weight: 800;
	text-transform: uppercase;
}
/* Â§ titles */

/* testo */
.testo {
	color: #868686;
}
.testo .descrizione {
	font-style: italic;
}
.testo a {
	color: #F78723;
}
.testo a:hover {
	text-decoration: underline;
}
.testo img {
	max-width: 100%;
}
.testo h1, .testo h2, .testo h3, .testo h4, .testo h5, .testo h6 {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0em;
    color: #454545;
}
.testo h1 {
	font-size:28px;
}
.testo h2 {
	font-size:24px;
}
.testo h3 {
	font-size:20px;
}
.testo h4 {
	font-size:18px;
}
.testo h5 {
	font-size:14px;
}
.testo h6 {
	font-size:12px;
}
/* Â§ testo */

/* lista */
.lista {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #868686;
}
.lista > li {
	position: relative;
	margin-top: 1.3125em;
	min-height: 21px;
	line-height: 1.3125;
}
.lista > li:first-child {
	margin-top: 0;
}
.lista > li:before {
	position: absolute;
	top: -2px;
	left: 0;
	width: 25px;
	min-height: 21px;
	font-family: FontAwesome;
	font-size: 21px;
	color: #F78723;
	line-height: 1;
}
.lista > li.link,
.lista > li.file {
	padding-left: 32px;
}
.lista > li.faq {
	padding-left: 25px;
}

/* icons */
.lista > li.file:before {
	content: '\f016';
}
.lista > li.file.text:before {
	content: '\f0f6';
}
.lista > li.file.pdf:before {
	content: '\f1c1';
}
.lista > li.file.word:before {
	content: '\f1c2';
}
.lista > li.file.excel:before {
	content: '\f1c3';
}
.lista > li.file.powerpoit:before {
	content: '\f1c4';
}
.lista > li.file.image:before {
	content: '\f1c5';
}
.lista > li.file.zip:before {
	content: '\f1c6';
}
.lista > li.file.audio:before {
	content: '\f1c7';
}
.lista > li.file.video:before {
	content: '\f1c8';
}
.lista > li.link:before {
	content: '\f097';
}
.lista > li.dir:before {
	content: '\f114';
}
.lista > li.faq:before {
	content: '\f128';
}
.lista > li.glossary:before {
	content: '\f02d';
}
.lista > li.result:before {
	content: '';
}

.lista > li.link > a,
.lista > li.file > a {
	color: #454545;
	font-weight: 800;
	text-decoration: none;
}
.lista > li.link > a:hover,
.lista > li.file > a:hover,
.lista > li.link > a:focus,
.lista > li.file > a:focus {
	text-decoration: underline;
}
.lista > li.faq > a {
	font-weight: 600;
	color: #454545;
	text-decoration: none;
}
.lista > li.faq > a:hover,
.lista > li.faq > a:focus {
	text-decoration: none;
}
.lista > li.faq > a.opened {
	color: #F78723;
	text-decoration: none;
}
.lista > li > .info {
	color: #b6b6b6;
}
.lista > li.result {
	padding-left: 48px;
	background-color: #ededed;

	/* piefix */
	border-top-left-radius: 5px;
	-ms-behavior: url(/js/PIE.htc);
}
.lista > li .num {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 48px;
	padding-top: 15px;
	background-color: #619BCC;
	font-size: 18px;
	color: #fff;
	text-align: center;

	/* piefix */
	border-top-left-radius: 5px;
	-ms-behavior: url(/js/PIE.htc);
}
.lista > li.result a {
	display: block;
	padding: 15px;
	color: #00548E;
}
.lista > li.result a .info {
	display: block;
	color: #868686;
}
.lista > li.result > .fulltxt,
.lista > li.faq > .risposta {
	padding: 15px;
	border-top: 1px solid #fff;
}

/* allegati */
.allegati {
	margin-top: 1.3125em;
	padding-top: 1.3125em;
	border-top: 1px dashed #868686;
}
.allegati h4 {
	margin-top: 0;
	font-size: 18px;
    font-weight: 800;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0em;
    color: #454545;
}
.allegati .lista {
	margin-top: 1.3125em;
}
/* Â§ allegati */
/* Â§ Lista */

/* buttons */
.button-default {
	display: inline-block;
	height: 50px;
	line-height: 46px;
	padding: 0 20px;
	border: 2px solid;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}
.button-default:hover {
	text-decoration: none !important;
}
.button-default.orange {
	color: #ffffff;
	background-color: #f78723;
	border-color: #f78723;
}
.button-default.orange:hover {
	background-color: #003e6c;
	border-color: #003e6c;
}
/* Â§ buttons */

/* tabs */
.nav-tabs {
	text-align: center;
}
.nav-tabs > li {
	float: none;
	display: inline-block;
}
.nav-tabs > li > a,
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover {
	position: relative;
	margin: 0 30px;
	padding: 34px 0;
	border: none;
    font-weight: 800;
    line-height: 1.2;
    color: #454545;
	text-transform: uppercase;
	background: transparent;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
	border: none;
    color: #F78723;
	background: transparent;
}
.nav-tabs > li.active > a:before,
.nav-tabs > li > a:focus:before,
.nav-tabs > li > a:hover:before {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 2px;
	border: none;
	background: #EA670D;
	content: '';
}
.nav-tabs > li.active > a:after,
.nav-tabs > li > a:focus:after,
.nav-tabs > li > a:hover:after {
	display: block;
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 6px 5px;
	border-color: transparent transparent #D86D34 transparent;
	content: '';
	transform: translateX(-50%);
}
.tab-content {
	width: 66.66666667%;
	margin: 0 auto;
	padding: 30px 15px;
}
.tab-pane .tab-title {
	display: none;
}
/* Â§ tabs */

/* panel collapse */
.panel-group .panel {
	margin-bottom: 0;
	border-radius: 0;
}
.panel-group .panel:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.panel-group .panel:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.panel-group .panel + .panel {
	margin-top: -1px;
}
.panel-heading {
	padding: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.panel-default>.panel-heading {
	background-color: #fff;
}
.panel-default > .panel-heading a {
	display: block;
	padding: 10px 15px;
	border-left: 2px solid transparent;
	background-color: #f8f8f8;
	color: #666 !important;
}
.panel-default > .panel-heading a:before {
	display: inline-block;
	margin-right: 10px;
	content: '+';
}
.panel-default > .panel-heading a:hover,
.panel-default > .panel-heading a:focus {
    background-color: #f0f0f0;
	text-decoration: none !important;
}
.panel-default > .panel-heading a[aria-expanded="true"] {
	background-color: #fff;
	border-left-color: #F78723;
}
.panel-default > .panel-heading a[aria-expanded="true"]:before {
	content: '-';
}
/* Â§ panel collapse */

/* andamento quota */
.quota .graficoMenu {
	text-align: right;
}
.quota .graficoMenu a {
	display: inline-block;
	vertical-align: top;
	margin-left: 3px;
	padding: 0.36em 0.54em;
	background: #005ea8;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}
.quota .graficoMenu a.active {
	background: #ededed;
	color: #8a8a8a;
}
.quota .graficoWrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	margin-bottom: 30px;
	background: #ededed;
}
.quota .graficoWrap .grafico {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 15px;
}
.quota .graficoWrap .grafico .fa-spin {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	font-size: 50px;
}
.quota .tabellaMenu a {
	display: inline-block;
	vertical-align: top;
	margin-right: 3px;
	padding: 0.36em 0.54em;
	background: #005ea8;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}
.quota.comparto-crescita .tabellaMenu a {
	background: #003E6C;
}
.quota.comparto-garanzia .tabellaMenu a {
	background: #ED772E;
}
.quota .tabellaMenu a.active {
	background: #ededed;
	color: #868686;
}
.quota .tabella {
	margin-bottom: 30px;
	padding: 15px;
	border: 5px solid #ededed;
	background: #fff;
}
.quota .tabella .fa-spin {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	font-size: 50px;
}
.quota .tabella table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 2px;
}
.quota .tabella table tr th {
	width: 33%;
	padding: 0.36em 0.54em;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius: 5px 5px 0 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background: #005ea8;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	text-align: center;
}
.quota.comparto-crescita .tabella table tr th {
	background: #003E6C;
}
.quota.comparto-garanzia .tabella table tr th {
	background: #ED772E;
}
.quota .tabella table tr td {
	padding: 0.36em 0.54em;
	background: #ededed;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
}
/* Â§ andamento quota */

/* slider */
.slide_cont {
	margin-top: -30px;
	margin-bottom: 50px;
	padding-bottom: 5px;
	background: #ededed;
}
.slide_cont .slide_label {
	display: block;
    position: relative;
    width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 700;
	color: #000;
	text-align: center;
	line-height: 1;
	white-space: nowrap;
    vertical-align: baseline;
}
.slide_cont .slider-handle {
	background: #619BCC;
}
.slide_cont .slider.slider-horizontal {
	display: block;
    width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.slide_cont .slider-selection {
	background: #F78723;
}
.slide_cont .slider-track-high, .slide_cont .slider-track-high,
.slide_cont .slider-track-low, .slide_cont .slider-track-low {
	background: #868686;
}
/* Â§ slider */

/* contatti */
.contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.contact-list li {
	margin-bottom: 20px;
	font-size: 20px;
	color: #434343;
}
.contact-list li a {
	font-size: 20px;
	color: #434343;
}
.contact-list li a:before {
	display: inline-block;
	margin-right: 20px;
	font-family: FontAwesome;
	font-size: 30px;
	color: #F78723;
	content: '';
	vertical-align: middle;
}
.contact-list li.callcenter a:before {
	content: '\f095';
}
.contact-list li.indirizzo a:before {
	content: '\f041';
}
.contact-list li.email a:before {
	content: '\f0e0';
}
.contact-list li.facebook a:before {
	content: '\f09a';
}
/* Â§ contatti */

/* contatti form */
.form-contatti {
	padding: 50px 0;
	background-color: #ededed;
}
.form-contatti .form-group label.contatti-label {
	font-size: 18px;
	font-weight: 600;
	color: #00548E;
	text-transform: uppercase;
}
.form-contatti .btn {
	margin-top: 20px;
}
.btn-red {
	background-color: #00548E;
	border-color: #00548E;
	text-transform: uppercase;
}
.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active {
	background-color: #004575;
	border-color: #00365b;
}
.btn-red.disabled:hover,
.btn-red.disabled:focus,
.btn-red.disabled:active,
.btn-red.disabled.active,
.btn-red[disabled]:hover,
.btn-red[disabled]:focus,
.btn-red[disabled]:active,
.btn-red[disabled].active,
fieldset[disabled] .btn-red:hover,
fieldset[disabled] .btn-red:focus,
fieldset[disabled] .btn-red:active,
fieldset[disabled] .btn-red.active {
	background-color: #00548E;
	border-color: #00548E;
}
/* Â§ contatti form */

/* contact-form */
.contact-form {
	position: relative;
    z-index: 999;
    padding: 30px 0;
    background-color: #609bcc;
	box-shadow: inset 0px 15px 12px -14px rgba(0,0,0,0.2);
}
.contact-form h4 {
	margin: 0 0 30px 0;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 28px;
    font-weight: 800;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0em;
    color: #284f80;
}
.contact-form h4 span {
    color: #f78723;
}
.contact-form label {
    color: #284f80;
}
.contact-form a {
    color: #f78723;
}
.btn-espero {
	background-color: #f78723;
	border-color: #f78723;
}
.btn-espero:hover,
.btn-espero:focus,
.btn-espero:active,
.btn-espero.active {
	background-color: #f67a0a;
	border-color: #df6d08;
}
.btn-espero.disabled:hover,
.btn-espero.disabled:focus,
.btn-espero.disabled:active,
.btn-espero.disabled.active,
.btn-espero[disabled]:hover,
.btn-espero[disabled]:focus,
.btn-espero[disabled]:active,
.btn-espero[disabled].active,
fieldset[disabled] .btn-espero:hover,
fieldset[disabled] .btn-espero:focus,
fieldset[disabled] .btn-espero:active,
fieldset[disabled] .btn-espero.active {
	background-color: #f78723;
	border-color: #f78723;
}
.error {
    color: #d10000;
}
input.error,
textarea.error,
select.error {
    border-color: #d10000;
}
button .loading {
	display: none;
}
/* Â§ contact-form */

/* form validation */
label.error {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
	color: red;
}
/* form validation */

/* ricerca */
.search_intro {
	margin-top: -60px;
	margin-bottom: 15px;
	padding: 10px 0 15px 0;
	background-color: #619BCC;
}
.searchBox {
	margin-top: 20px;
}
#result_report {
	text-align: right;
	font-weight: 700;
}
/* Â§ ricerca */

/* newsletter */
div.sendita_form_container { /* Container form */
	width: 100%;
}
div.sendita_form_container
	div.sendita_actionHead { /* Page title (only in public platform page */
	font-weight: 800;
}
div.sendita_form_container
	div.sendita_okMessage { /* Success (only in public platform page */
	font-weight: 800;
	color: green;
}
div.sendita_form_container
	div.sendita_errorMessage { /* Fail (only in public platform page */
	font-weight: 800;
	color: red;
}
div.sendita_form_container
	form.sendita_form { /* form */
	margin: 0px;
	padding: 0px;
}
div.sendita_form_container
	form.sendita_form
		div.sendita_advise { /* div container "Il campi contrassegnati da asterisco (*) sono obbligatori!" */
	margin-bottom: 20px;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable { /* table */
	border-collapse: separate;
	border-spacing: 0px;
	empty-cells: show;
	width: 100%;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td { /* td (cell) */
	padding: 7px 0;
	border: 0 none;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_labelTd { /* td label container */
	display: inline-block;
	width: 33.33%;
	max-width: 130px;
	white-space: nowrap;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_labelTd
				label { /* label */
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;

	height: 30px;

	font-size: 16px;
	color: #619BCC;
	line-height: 30px;
	white-space: nowrap;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd { /* td form field container */
	display: inline-block;
	width: 66.67%;
	max-width: 380px;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				input.sendita_text { /* input type=text */
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;

	box-sizing: border-box;

	width: 100%;
	max-width: 380px;
	height: 28px;

	padding: 0 10px;
	margin: 0;

	border: 1px solid #619BCC;

	font-size: 16px;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				textarea.sendita_textarea { /* textarea */
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;

	box-sizing: border-box;

	width: 100%;
	max-width: 380px;
	height: 130px;

	padding: 10px;
	margin: 0;

	border: 1px solid #619BCC;

	font-size: 16px;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				select.sendita_select { /* select */
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	*display: inline;

	box-sizing: border-box;

	width: 100%;
	max-width: 380px;
	height: 28px;

	padding: 0 10px;
	margin: 0;

	font-size: 16px;
}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				input.sendita_checkbox { /* input type=checkbox */

}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				div.sendita_div {/* div radio container */

}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				div.sendita_div
					input.sendita_radio {/* input type=radio */

}
div.sendita_form_container
	form.sendita_form
		table.sendita_formTable
			td.sendita_inputTd
				input.sendita_submit {/* input type=submit */
	display: block;

	width: 180px;
	height: 30px;

	padding: 0;
	margin: 0;

	border: 0 none;
	background: #619BCC;

    font-size: 16px;
	color: #ffffff;
	text-transform: lowercase;

	cursor: pointer;
}
div.sendita_form_container
	form.sendita_form
		div.sendita_privacy {/* div container "Ho letto l'informativa e autorizzo il trattamento dei dati" */
	position: relative;

	height: 16px;

	margin-top: 17px;
	margin-bottom: 8px;
	padding-left: 24px;

	line-height: 16px;
}
div.sendita_form_container
	form.sendita_form
		div.sendita_privacy
			input.sendita_checkbox { /* input privacy type=checkbox */
	position: absolute;
	top: 0;
	left: 0;

	display: inline-block;
	height: 16px;
	width: 16px;

	margin: 0;
}
div.sendita_form_container
	form.sendita_form
		textarea.sendita_textarea_privacy { /* textarea privacy */
	width: 90%;
	height: 150px;

	padding: 10px;
}
/* Â§ newsletter */

/* tooltipster */
.noteToolTipTpl {
	display: none;
}
/* Â§ tooltipster */

/* autocomplete */
.autocomplete-suggestions {
	border: 1px solid #dddddd;
	background: #fff;
	overflow: auto;
	color: #444;
}
.autocomplete-suggestion {
	padding: 4px 9px;
	white-space: nowrap;
	overflow: hidden;
}
.autocomplete-selected {
	background: #d9edf7;
}
.autocomplete-suggestions strong {
	color: #006AA0;
}
.autocomplete-group {
	padding: 4px 9px;
}
.autocomplete-group strong {
	display: block;
	border-bottom: 1px solid #dddddd;
}
/* Â§ autocomplete */
/* Â§ main */

.text-danger-help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #a94442;
}
.text-success-help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #3c763d;
}

/* Banner questionario */
.banner-questionario {
	width: 100%;
	max-width: 995px;
	margin: 0 auto;
}
.banner-questionario-content {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 41.10%;
	border: 1px solid #265486;
	background-color: #fff;
	background-image: url(https://www.fondoespero.it/img/banner-questionario-home.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.banner-questionario-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 5.125%;
	padding-top: 12.065%;
	padding-right: 46.145%;
}
.banner-questionario-text h3 {
	margin: 0 0 1.5075% 0;
	font-size: 24px;
	font-weight: 700;
	color: #265485;
	text-transform: uppercase;
	line-height: 1.1;
}
.banner-questionario-text p {
	margin: 0;
	font-size: 22px;
	color: #696969;
	line-height: 1.1;
}

/* Sticky footer */
.sticky-footer {
	/*display: none;*/
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}
.sticky-content {
	position: relative;
    border-radius: 3px 3px 0 0;
	border: 1px solid #265486;
	border-bottom: 0;
	background-color: #f28723;
	background-image: url(https://www.fondoespero.it/img/banner-questionario-footer.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
    box-shadow: 0 -2px 25px 0 rgba(130,130,130,1);
}
.sticky-text {
	display: block;
	padding: 45px 25% 45px 45px;
	text-decoration: none;
}
.sticky-text h3 {
	margin: 0 0 5px 0;
	font-size: 20px;
	font-weight: 700;
	color: #265485;
	text-transform: uppercase;
}
.sticky-text p {
	margin: 0;
	font-size: 16px;
	color: #696969;
}
.sticky-close {
	position: absolute;
	top: 0;
	left: 0;
    padding: 0 8px;
    border-radius: 50%;
	font-size: 45px;
	font-weight: 700;
	color: #265485;
	line-height: 0.9;
}
