/* +++++++++++++++++++++++++++++++++++++++TESTATA+++++++++++++++++++++++++++++++++++++++++++++++*/
.sticky-wrapper {
	font-family: 'Open Sans', sans-serif;
  width: 100%;
  height: 150px ;
  position: fixed;
  top:0%;
  left:0px;
  z-index: 21;
  	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#99000000', endColorstr='#00000000', GradientType=0);

}
@media all and (max-width: 767px) {
  .sticky-wrapper {
    height: 70px;
  }
}
.ombra {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
}
#header {
  width: 100%;
  padding: 10px 0px;
  z-index: 1003;
  height: 100%;
  transition: background 0.4s ease;
  color:rgb(255,255,255);
  background-color: rgba(255,255,255,0);
  font-size:14px;
}
@media all and (max-width: 767px) {
  #header {
    height: 70px;
  }
}
#header #logo {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  transition: all 0.4s ease;
  line-height: 150px;
  font-size: 350px;
}
@media all and (max-width: 767px) {
  #header #logo {
	width: 120px;
	height: 38px;
	margin: 16px 0px 0px;
	font-size: 100px !important;
	line-height: 30px !important;
  }
}
#header button#toggle-menu {
  font-size: 14px;
  border: 0;
  text-transform: uppercase;
  transition: all 0.4s ease;
  margin-top: 30px;
  margin-right: 30px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  color: inherit;
}
.is-sticky #header {
  height: 69px;
  background: #fff;
  left: 0;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
}
.is-sticky #header #logo {
  background-size: 130px;
  margin-top: 0;
  height: 48px;
}
@media all and (max-width: 767px) {
  .is-sticky #header #logo {
    background-position: left center;
    /*background-size: 120px 38px;
				width:120px;*/
    height: 38px;
    margin: 5px 10px 10px 10px;
  }
}
.is-sticky #header button#toggle-menu {
  background: transparent url(../images/ico-menu-grey.svg) no-repeat right;
  color: #8C8C8C;
  background-size: 10px;
}
#main_menu .close-main_menu {
width: 31px;
height: 31px;
overflow: hidden;
line-height: 32px;
position: absolute;
z-index: 2;
right: 10px;
top: 10px;
margin-right: 0;
cursor: pointer;
border: 1px solid #999;
text-align: center;
}
/* +++++++++++++++++++++++++++++++++++flex container menu ++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-item {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin-right: 60px;
}
/*
    Legacy Firefox implementation treats all flex containers
    as inline-block elements.
*/
@-moz-document url-prefix() {
  .flex-container {
    width: 100%;
    -moz-box-sizing: border-box;
  }
}
/* +++++++++++++++++++++++++++++++++++++++MENU PRINCIPALE+++++++++++++++++++++++++++++++++++++++++++++++*/
#main_menu {
	font-family: 'Open Sans', sans-serif;
  opacity: 0;
  position: fixed;
  z-index:21;
  box-sizing: border-box;
  font-size: 14px;
  font-weight:bold;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 100%;
  text-align:left;
  padding: 54px 50px 30px 20px;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.99);
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
#main_menu.is-ready {
  opacity: 1;
}
#main_menu > div {
  float: left;
  margin-bottom: 20px;
  margin-right: 280px;
}
#main_menu > div:last-child {
  margin-right: 0px;
}
#main_menu #close-main_menu {
  background: url(../images/ico-close-grey.svg) center no-repeat;
  width: 31px;
  height: 31px;
  text-indent: 40px;
  overflow: hidden;
  line-height: 34px;
  position: absolute;
  right: 10px;
  top: 10px;
  margin-right: 0;
  cursor: pointer;
  border: 0;
}
#main_menu.is-active {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0);
  overflow: auto;
}
#main_menu #wrap-main_menu {
  position: relative;
  transform: translateX(0%);
  transition: transform 0.5s;
}
#main_menu #wrap-main_menu ul.first-level {
  display: block;
  padding: 0;
  height: 100%;
  margin: 0;
  /*
			-webkit-column-count: 2; 
    		-moz-column-count: 2; 
    		column-count: 2;
			-webkit-column-gap: 20px;
			-moz-column-gap: 20px;
			column-gap: 20px;
			*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
#main_menu #wrap-main_menu li {
  width: 240px;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin-right: 60px;
  height: 34px;
  line-height: 34px;
  display: block;
}
#main_menu #wrap-main_menu li:first-child {
  margin-top: -34px;
}
#main_menu #wrap-main_menu li + li {
  border-bottom: 1px solid #C5C5C5;
}
#main_menu #wrap-main_menu li a {
  display: block;
  width: 100%;
  padding-right: 30px;
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  text-decoration: none;
}
#main_menu #wrap-main_menu li.has-children a {
  background: url(../images/ico-submenu.svg) right no-repeat;
}
.no-svg #main_menu #wrap-main_menu li.has-children a {
  background: url(../images/ico-submenu.png) right no-repeat;
}
#main_menu #wrap-main_menu ul.second-level {
  display: none;
}
#main_menu #wrap-main_menu.move-out {
  /* push the dropdown items to the left when secondary dropdown slides in */
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}
@media all and (max-width: 599px) {
  #main_menu #wrap-main_menu {
    width: 100%;
    height: auto;
  }
  #main_menu #wrap-main_menu.move-out {
    -webkit-transform: none;
    /* Safari and Chrome */
    -moz-transform: none;
    /* Firefox */
    -ms-transform: none;
    /* IE 9 */
    -o-transform: none;
    /* Opera */
    transform: none;
  }
  #main_menu #wrap-main_menu li {
    width: 100%;
  }
  #main_menu #wrap-main_menu li.go-back {
    display: none;
  }
  #main_menu #wrap-main_menu li.sel {
    height: auto;
  }
  #main_menu #wrap-main_menu li.sel ul.second-level {
    display: block;
    padding: 0;
    background-color: #eee;
  }
  #main_menu #wrap-main_menu li.sel ul.second-level li:last-child {
    border-bottom: 0;
  }
  #main_menu #wrap-main_menu li.sel ul.second-level a {
    background: none;
    padding-left: 15px;
  }
}
#main_menu #clone-second-level {
  height: calc(100% - 34px);
  position: absolute;
  top: 34px;
  left: 0;
  width: 540px;
  max-width: 100%;
  transform: translateX(-100%);
  transition: transform 0.5s;
}

#main_menu #clone-second-level.open-submenu {
  -ms-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
@media all and (max-width: 599px) {
  #main_menu #clone-second-level {
margin-right: 0px;
  }
}
#main_menu #clone-second-level ul {
  display: block;
  width: 100%;
  height: 100%;
  overflow:auto;
  box-sizing: border-box;
  margin: 0;
  padding: 20px;
  list-style: none;
  /*
			-webkit-column-count: 2; 
    		-moz-column-count: 2; 
    		column-count: 2;
			-webkit-column-gap: 20px;
			-moz-column-gap: 20px;
			column-gap: 20px;
			*/
  position: relative;
}
@media all and (max-width: 599px) {
	#main_menu #clone-second-level ul {
  width: initial;
  }
}
#main_menu #clone-second-level ul li {
  width: 100%;
  height: 34px;
  line-height: 34px;
  display: block;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin-right: 60px;
}

#main_menu #clone-second-level ul li + li {
  border-bottom: 1px solid #C5C5C5;
}
#main_menu #clone-second-level ul li a {
  display: block;
  width: 100%;
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  text-decoration: none;
}
#main_menu #clone-second-level ul li.go-back a {
  overflow: hidden;
}
#main_menu #clone-second-level ul li.go-back a span{
margin-right: 10px;
font-size: 30px;
line-height: 30px;
vertical-align: middle;
float: none;
}
#main_menu #wrap-main_menu li a span,
#main_menu #clone-second-level ul a span{
float:right;
font-size: 30px;
line-height: 30px;
vertical-align: middle;
}
.no-svg #main_menu #clone-second-level ul li.go-back a {
}
#my_azimut {
  width: 150px;
  float: left;
  line-height: 34px;
}
#my_azimut input {
  width: 100%;
  background: transparent;
  border: 1px solid #8C8C8C;
  height: 30px;
  line-height: 30px;
  padding: 5px;
  font-size: 0.8125em;
  margin-bottom: 10px;
}
#my_azimut a {
  display: block;
  font-size: 0.8125em;
  color: #000;
  clear: both;
  line-height: 1;
}
#my_azimut button,
#my_azimut #btn-logout {
  background: #8C8C8C;
  color: #fff;
  display: block;
  width: 100%;
  border: 0;
  padding: 2px 10px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 20px;
  font-size: 1em;
}
#varie {
  text-align: center;
    margin-top: 20px;

}
#sel_lingua {
  width: 150px;
  margin-top: 20px;
  /*float:left;*/
}
#sel_lingua select {
  width: 150px;
}
#sel_lingua a {
  display: block;
  text-decoration: none;
  color: #000;
  line-height: 34px;
  border-bottom: 1px solid #C5C5C5;
}
#social {
  display: table;
}
#social .link {
  display: table-cell;
  vertical-align: bottom;
  padding: 0 8px;
}
#social .link:first-child {
  padding-left: 0;
}
#social .link a {
color: #ccc;
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size:30px;
}
.no-svg #social .link a {
  background: url(../images/ico-fb.png) center no-repeat;
}
#social .link a.yt {
  width: 25px;
  height: 19px;
  background: url(../images/ico-yt.svg) center no-repeat;
}
.no-svg #social .link a.yt {
  background: url(../images/ico-yt.png) center no-repeat;
}
#social .link a.tw {
  width: 24px;
  height: 19px;
  background: url(../images/ico-tw.svg) center no-repeat;
}
.no-svg #social .link a.tw {
  background: url(../images/ico-tw.png) center no-repeat;
}
#social .link a.apps {
  width: 25px;
  height: 25px;
  background: url(../images/ico-app.png) center no-repeat;
}
.no-svg #social .link a.apps {
  background: url(../images/ico-app.png) center no-repeat;
}
#social .link a.in {
  width: 25px;
  height: 25px;
  background: url(../images/ico-in.svg) center no-repeat;
}
.no-svg #social .link a.in {
  background: url(../images/ico-in.png) center no-repeat;
}
#social .link a.instagram {
  width: 20px;
  height: 20px;
  background: url(../images/ico-instagram.png) center no-repeat;
}
#social .link a.gplus {
  width: 25px;
  height: 25px;
  background: url(../images/ico-gplus.png) center no-repeat;
}




#footer {
  clear: both;
  background: #518047;
}
#footer .action {
  clear: both;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
#footer .action > div {
  display: inline-block;
  margin: 20px 0px 40px;
  width: 30%;
  min-width: 320px;
  padding: 0 10px;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#footer .action > div.cerca {
  background: url(../images/ico-yacht.svg) top no-repeat;
}
.no-svg #footer .action > div.cerca {
  background: url(../images/ico-yacht.png) top no-repeat;
}
#footer .action > div.catalogo,
#footer .action > div.catalogoLog {
  background: url(../images/ico-brochure.svg) center 20px no-repeat;
}
.no-svg #footer .action > div.catalogo,
.no-svg #footer .action > div.catalogoLog {
  background: url(../images/ico-brochure.png) center 20px no-repeat;
}
#footer .action > div.appuntamento {
  background: url(../images/ico-test.svg) center 20px no-repeat;
}
.no-svg #footer .action > div.appuntamento {
  background: url(../images/ico-test.png) center 20px no-repeat;
}
#footer .action > div.cercaDealer {
  background: url(../images/ico-mondo.svg) center 20px no-repeat;
}
.no-svg #footer .action > div.cercaDealer {
  background: url(../images/ico-mondo.png) center 20px no-repeat;
}
#footer .action > div.cercaDealer a {
  width: 240px;
}
#footer .action > div.titMyAzimut {
  width: 100%;
  padding: 0;
  padding-top: 40px;
  margin: 0;
  font-family: 'Goudy W01';
  font-weight: 300;
  color: #fff;
  font-size: 1.625em;
}
#footer .action > div.contatto {
  background: url(../images/ico-dealer.svg) center 20px no-repeat;
  width: 30%;
}
.no-svg #footer .action > div.contatto {
  background: url(../images/ico-dealer.png) center 20px no-repeat;
}
#footer .action > div.catalogoLog {
  width: 30%;
}
#footer .action > div.dealer {
  /*min-width:266px;*/
  width: 30%;
  color: #fff;
  text-align: left;
  padding-top: 0px;
  vertical-align: top;
}
#footer .action > div.dealer .yourDealer {
  text-align: left;
  line-height: 1.7em;
}
#footer .action > div.dealer .yourDealer .collectionDealer {
  padding-top: 10px;
}
#footer .action > div.dealer .yourDealer a {
  color: #fff;
  display: inline;
  width: normal;
  margin: 0;
  border: 0px solid #fff;
  background: transparent;
  text-decoration: none;
  text-transform: none;
  font-size: 0.8125em;
  line-height: normal;
  background: transparent url(../images/li_footer.png) no-repeat left;
  padding: 3px 0px 3px 23px;
}
#footer .action > div.contatto,
#footer .action > div.catalogoLog,
#footer .action > div.titMyAzimut,
#footer .action > div.cercaDealer,
#footer .action > div.appuntamento,
#footer .action > div.catalogo,
#footer .action > div.cerca {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#footer .action > div.contatto a,
#footer .action > div.catalogoLog a,
#footer .action > div.titMyAzimut a,
#footer .action > div.cercaDealer a,
#footer .action > div.appuntamento a,
#footer .action > div.catalogo a,
#footer .action > div.cerca a {
  overflow: hidden;
  /*margin: 0 15px;*/
  position: relative;
  padding: 0;
  background: none;
}
#footer .action > div.contatto a span,
#footer .action > div.catalogoLog a span,
#footer .action > div.titMyAzimut a span,
#footer .action > div.cercaDealer a span,
#footer .action > div.appuntamento a span,
#footer .action > div.catalogo a span,
#footer .action > div.cerca a span {
  display: block;
  padding: 10px 5px;
  margin: 0;
  position: 0;
  background: #595959;
  color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
}
#footer .action > div.contatto a:hover span,
#footer .action > div.catalogoLog a:hover span,
#footer .action > div.titMyAzimut a:hover span,
#footer .action > div.cercaDealer a:hover span,
#footer .action > div.appuntamento a:hover span,
#footer .action > div.catalogo a:hover span,
#footer .action > div.cerca a:hover span,
#footer .action > div.contatto a:focus span,
#footer .action > div.catalogoLog a:focus span,
#footer .action > div.titMyAzimut a:focus span,
#footer .action > div.cercaDealer a:focus span,
#footer .action > div.appuntamento a:focus span,
#footer .action > div.catalogo a:focus span,
#footer .action > div.cerca a:focus span {
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  transform: translateX(101%);
}
#footer .action > div.contatto a::before,
#footer .action > div.catalogoLog a::before,
#footer .action > div.titMyAzimut a::before,
#footer .action > div.cercaDealer a::before,
#footer .action > div.appuntamento a::before,
#footer .action > div.catalogo a::before,
#footer .action > div.cerca a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 10px 5px;
  width: 100%;
  height: 100%;
  background: #ececec;
  color: #595959;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  transform: translateX(-25%);
  -webkit-backface-visibility: hidden;
}
#footer .action > div.contatto a:hover::before,
#footer .action > div.catalogoLog a:hover::before,
#footer .action > div.titMyAzimut a:hover::before,
#footer .action > div.cercaDealer a:hover::before,
#footer .action > div.appuntamento a:hover::before,
#footer .action > div.catalogo a:hover::before,
#footer .action > div.cerca a:hover::before,
#footer .action > div.contatto a:focus::before,
#footer .action > div.catalogoLog a:focus::before,
#footer .action > div.titMyAzimut a:focus::before,
#footer .action > div.cercaDealer a:focus::before,
#footer .action > div.appuntamento a:focus::before,
#footer .action > div.catalogo a:focus::before,
#footer .action > div.cerca a:focus::before {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
}
#footer .action h3 {
  font-family: 'Goudy W01';
  font-weight: 300;
  color: #fff;
  font-size: 1.125em;
  margin-bottom: 2.5em !important;
  margin-top: 1em !important;
}
#footer .action h3.dealer {
  margin-bottom: 1em;
}
#footer .action a {
  color: #fff;
  display: inline-block;
  width: 190px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8125em;
  padding: 9px 0 8px;
  line-height: 1.25;
}
#footer .link {
  min-height: 50px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 30px;
  font-family: Arial;
  font-size: 12px;
  color: #FFF;
}
#footer .link a {
  text-decoration: none;
  color: #FFF;
}
#footer .link div {
  width: 100%;
}
#footer .link div.right {
  right: 20px;
  text-align: right;
  margin-top: 10px;
  position:absolute;
  z-index: 5;
}
@media all and (max-width: 767px) {
  #footer .link div.right {
    text-align: left;
    position: relative;
	margin: 20px;
  }
}
@media all and (max-width: 767px) {
  #footer .link div {
    width: 100%;
    float: none;
  }
}
/*Pop up*/
.featherlight.featherlight-iframe {
  overflow: hidden;
}
.featherlight iframe {
  overflow: hidden;
  width: 100%;
  min-height: 200px;
}
.featherlight .nomeDealerPop {
  width: 100%;
  color: #FFF;
  background: #686666;
  padding: 5px;
  margin-bottom: 20px;
}
.featherlight button {
  background: #8C8C8C;
  color: #fff;
  font-weight: normal;
  display: block;
  width: auto;
  border: 1px #fff solid;
  padding: 2px 10px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 20px;
  font-size: 1em;
}
.featherlight input {
  width: 80%;
  background: transparent;
  border: 1px solid #8C8C8C;
  height: 30px;
  line-height: 30px;
  padding: 5px;
  font-size: 0.8125em;
  margin-bottom: 10px;
}
.featherlight .titoloLoginForm {
  padding: 10px;
  width: 80%;
  background: #686666;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #FFF;
}
body.fancyBody {
  padding: 1em;
  overflow: hidden;
  font-size: 16px;
}
body.fancyBody .topFancy {
  padding: 10px;
  width: 100%;
  background: #686666;
  margin-top: 10px;
  margin-bottom: 10px;
}
body.fancyBody .topFancy .titoloFancy {
  color: #FFF;
  margin-bottom: 10px;
}
body.fancyBody input {
  width: 80%;
  background: transparent;
  border: 1px solid #8C8C8C;
  height: 30px;
  line-height: 30px;
  padding: 5px;
  font-size: 0.8125em;
  margin-bottom: 10px;
}
body.fancyBody #results {
  padding-top: 10px;
}
body.fancyBody #results .noteFancy {
  width: 100%;
}
body.fancyBody #results .btnFancy {
  padding: 10px;
  width: 100%;
  background: #686666;
  margin-top: 10px;
}
body.fancyBody #results button {
  background: #8C8C8C;
  color: #fff;
  font-weight: normal;
  display: block;
  width: auto;
  border: 1px #fff solid;
  padding: 2px 10px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 20px;
  font-size: 1em;
}
html.popUp {
  overflow: hidden;
}
html.popUp body {
  margin: 1em;
  overflow: hidden;
  font-size: 16px;
}
html.popUp h2 {
  padding: 10px;
  width: 80%;
  background: #686666;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #FFF;
}
html.popUp p {
  font-size: 0.9em;
}
html.popUp form {
  margin-bottom: 2em;
}
html.popUp button {
  background: #8C8C8C;
  color: #fff;
  font-weight: normal;
  display: block;
  width: auto;
  border: 0;
  padding: 2px 10px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 20px;
  font-size: 1em;
}
html.popUp input {
  width: 80%;
  background: transparent;
  border: 1px solid #8C8C8C;
  height: 30px;
  line-height: 30px;
  padding: 5px;
  font-size: 0.8125em;
  margin-bottom: 10px;
}

.content{
	margin-bottom:50px;
	}
.content .center div{
	display:inline-block;
	vertical-align: top;
	text-align:left;
	}
.content .center:nth-child(2n+1) div:first-child{
	width:40%;
	padding-left:0px;
	}
.content .center:nth-child(2n+1) div{
	width:calc(60% - 20px);
	padding-left:20px;
	}
.content .center:nth-child(2n) div:first-child{
	width:calc(60% - 20px);
	padding-right:20px;
	}
.content .center:nth-child(2n) div{
	width:40%;
	padding-right:0px;
	}
.content h3{
	text-decoration: underline;
	margin-top: 0px;
	}
.content h4{
	margin: 10px 0px;
	}
.content .sottTest{
	font-style: italic;
	font-size: 12px;
	}
.content .contImag{
	width:100%;
	margin-bottom:20px;
	display: block;
	}
.content .contImag img{
	width:100%;
	}



/* +++++++++++++++++++++++++++++++++++++++++++MODELS HOMEPAGE++++++++++++++++++++++++++++++++++++++++++++++++ */
#models {
  overflow: hidden;
  min-height: 0px !important;
  margin-top: 50px;
}
#wrap-modelli {
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
  margin-bottom: -2px;
}
#wrap-modelli .box-modello {
	width: calc(100% - 4px);
	float: left;
	text-align: center;
	border: 2px solid #fff;
	position: relative;
	overflow:hidden;
	background-position:center;
	background-size:auto 100%;
	background-color:#fff;
	background-repeat:no-repeat;
	min-height: 100px;
	-webkit-transition:0.5s ease;
	-moz-transition:0.5s ease;
	-o-transition:0.5s ease;
	transition:0.5s ease;
	}
#wrap-modelli .box-modello:hover{
	background-size:auto 110%;
	}
.azieSdays {
	width: 90%;
	max-width: 800px;
	max-height: 500px;
	display: inline-block;
	text-align: justify;
	margin: 20px 0px 80px;
	color: #444;
	line-height: 36px;
	font-size: 18px;
	}
.bannLoft{
	width: 90%;
	max-width: 800px;
	display: inline-block;
	color: #444;
	margin: 50px 0px 100px;
	}
@media screen and (max-width: 800px) {
	.content .center div{
		width:calc(100% - 20px) !important;
		padding:10px !important;
		}
	.azieSdays {
		max-height: none;
		}
	}
@media all and (max-width: 424px) {
  #wrap-modelli .box-modello {
  width: calc(100% - 4px);
  }
}
@media all and (min-width: 980px) {
  #wrap-modelli .box-modello {
 	 width: calc(33.33% - 4px);
  }
}
#wrap-modelli .box-modello header {
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 2;
}
#wrap-modelli .box-modello header .wrap {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  padding: 10px 10px 20px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
#wrap-modelli .box-modello img {
  width: 100%;
  display: block;
  line-height: 0;
  /*da cancellare*/
  min-height: 300px;
}
#wrap-modelli:after {
  content: '';
  display: block;
  clear: both;
}
a.collection_link {
  text-decoration: none;
  color: #fff;
}
span.nome_collection {
  font-weight: 300;
  font-size: 1.625em;
  display: block;
}
span.sub {
  display: block;
  font-size: 0.8125em;
}

#model-menu-collection {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 20px;
}
#collection #model-menu-collection {
  margin-bottom: 0;
}
#model-menu-collection ul {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 0;
}
#model-menu-collection ul li {
  display: inline-block;
  text-align: left;
  list-style: none;
  width: 25%;
  padding: 2.5%;
}
@media all and (max-width: 450px) {
  #model-menu-collection ul li {
    width: 300px;
    display: block;
    margin: 0 auto;
  }
}
@media all and (min-width: 451px) and (max-width: 767px) {
  #model-menu-collection ul li {
    width: 50%;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #model-menu-collection ul li {
    width: 33.333%;
  }
}
#model-menu-collection ul li a {
  font-size: 14px;
  font-family: 'Goudy W01';
  font-weight: 300;
  font-weight: bold;
}
#model-menu-collection ul li img {
  width: 100%;
  display: block;
}
#model-menu-collection ul li .wrap-image {
  display: block;
  position: relative;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
#model-menu-collection ul li .nome {
  display: inline-block;
  margin-top: 8px;
}
#model-menu-collection ul li .nome .apice {
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  margin-left: 5px;
  color: #db8f5b;
}
#collection-menu {
  /*position:absolute;
	bottom:10px;*/
  width: 100%;
  text-align: center;
}
#collection-menu ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}
#collection-menu ul li {
  padding: 10px 20px;
  display: inline-block;
  list-style: none;
  font-size: 16px;
  margin-bottom: 10px;
}
#collection-menu ul li.sel {
  background: rgba(255, 255, 255, 0.2);
}
#collection-menu ul li + li {
  border-left: 1px solid #fff;
}
.menuCol {
  position: absolute;
  overflow: auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 10;
  opacity:0;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.menuCol ul {
  list-style: none;
  padding: 10px;
  padding-top: 105px;
  margin: 0;
  display: block;
  box-sizing: border-box;
  text-align:left;
  width:100%;
  height: 100%;
}
.menuCol a {
  text-decoration: none;
  padding: 6px;
  font-size: 15px;
  font-weight: 300;
  font-weight: bold;
  display: block;
  color: #343434;
}
.menuCol .new,
.menuCol .project {
  display: inline-block;
  margin-left: 5px;
  /* font-size: 12px;*/
  text-transform: lowercase;
}
 .box-modello:hover .menuCol {
    opacity:1;
  }
@media all and (min-width: 768px) {
  .box-modello:hover header {
    z-index: 20;
  }
  .box-modello:hover header .wrap {
    background: none !important;
    filter: none !important;
  }
  .box-modello:hover header a.collection_link {
    color: #343434;
  }
  .box-modello:hover .menuCol a:hover {
    text-decoration: underline;
  }
}
.gradient-box {
  background: rgba(0, 0, 0, 0.6);
}
@media all and (min-width: 768px) {
  .gradient-box {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+60,000000+100&0.65+1,0.43+60,0+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 1%, rgba(0, 0, 0, 0.43) 60%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 1%, rgba(0, 0, 0, 0.43) 60%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 1%, rgba(0, 0, 0, 0.43) 60%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
  }
}


.azl-live-main {
  background: #7f7f7f url(../img/homepage/bg_pattern.png) center repeat;
}
.azl-live-main h1 {
  margin-top: 140px;
  color: #fff;
}
@media all and (max-width: 767px) {
  .azl-live-main h1 {
    margin-top: 100px;
  }
}
.azl-live-main .subTit-registerEvents {
  max-width: 700px;
  margin: 20px auto;
  color: #fff;
  font-size: 1em;
  text-align: center;
}
.azl-live-main .row {
  display: block;
}
.azl-live-main .row .info {
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.azl-live-main .row .gradient-box {
  padding: 20px 20px 60px 20px;
  height: 100%;
}
.azl-live-main .row .info-wrap {
  text-align: center;
  color: #fff;
  position: relative;
  height: 100%;
}
.azl-live-main .row h2 {
  margin-top: 0;
}
.azl-live-main .row .more-link {
  display: block;
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.azl-live-main .row .more-link span {
  display: inline-block;
  padding-left: 35px;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
  background: url(../images/next.png) left no-repeat;
  background-size: 25px;
  z-index: 200;
  position: relative;
  font-size: 0.8125em;
}
.azl-live-main .row .wrap {
  padding: 20px 0;
}
.azl-live-main .row .wrap + .wrap {
  border-top: 1px solid #fff;
}
.azl-live-main .row a {
  text-decoration: none;
}
.azl-live-main .row h4 {
  text-transform: uppercase;
  font-size: 0.8125em;
  font-weight: 400;
  margin: 0;
}
.azl-live-main .row .description {
  font-family: 'Goudy W01';
  font-weight: 300;
  font-weight: 200;
  font-size: 1.25em;
  line-height: 1.5em;
  margin: 0;
}
@media all and (min-width: 1200px) {
  .azl-live-main .row .description {
    font-size: 1.25em;
  }
}
.azl-live-main .no-slider {
  text-align: center;
}
.azl-live-main .no-slider .item {
  display: block;
  margin: 1%;
}
.azl-live-main .no-slider .item img {
  display: block;
  width: 100%;
}
@media all and (min-width: 768px) {
  .azl-live-main .no-slider .item {
    display: inline-block;
    width: 48%;
    margin: 1% !important;
    vertical-align: top;
  }
}
@media all and (min-width: 768px) {
  .azl-live-main {
    padding-bottom: 100px;
  }
  .azl-live-main .row {
    display: table;
    height: 100%;
    width: 100%;
  }
  .azl-live-main .row .info {
    display: table-cell;
    vertical-align: top;
	width: 100%;
    height: 100%;
    padding: 0 1%;
  }
  .azl-live-main .row .gradient-box {
    padding: 40px 20px;
  }
  .azl-live-main .row .more-link {
    bottom: 0;
  }
}
.ifraPale{
	height:calc(100vh - 220px);
	overflow:auto;
	width:100%;
	border:0;
	}
.dt-sc-one-third{
	display: inline-block;
	vertical-align: top;
	width: calc(33.33% - 20px);
	margin: 10px;
	text-align: left;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	box-sizing: border-box;
	padding: 10px;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
	}
.dt-sc-one-third:hover{
	background-color:#eee;
	}










































