@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,100,100italic,400italic,700,700italic,900,900italic);
* {
    margin: 0;
    padding: 0;
}

/* LIGHT BOX */
@keyframes spin {
  from { transform: rotate(0deg); } to { transform: rotate(360deg); }
}
#spinner {
	display: none;
	position: fixed;
	width: 0;
	height: 0;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
	z-index: 110;
	border-right: 10px solid #999;
	border-top: 10px solid #666;
	border-left: 10px solid #999;
	border-bottom: 10px solid #666;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	border-radius: 10px;
	animation: spin 0.7s linear 0.1s infinite;
}
#lightBox-bg {
	display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 102;
}
#screen {
	display: none;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 103;
    background-color: rgba(0,0,0,0.6);
    overflow: scroll;
}
#close-lightbox {
    display: none;
    position: fixed;
    cursor: pointer;
    width: 25px;
    height: 25px;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    z-index: 105;
	overflow: hidden;
}
#close-modal {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#lightbox-next, #lightbox-prev {
    display: none;
    position: fixed;
    -webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	cursor: pointer;
    width: 35px;
    height: 35px;
    z-index: 105;
    background-color: rgba(0,0,0,0.6);
    color: white;
}
#lightbox {
    display: none;
    position: fixed;
    overflow: hidden;
    background-color: rgba(124,124,124,0.9);
    text-align: center;
    z-index: 104;
}
#lightbox-image {
	display: none;
}
#lightbox-title {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0,0,0,0.6);
    z-index: 105;
    text-align: left;
    color: white;
    font-size: 13px;
    font-weight: 400;
}

/* FORMATTAZIONE TESTO */
body {
    font-family: 'Lato';
    color: rgba(83,84,87,1);
    letter-spacing: 0.045em;
	line-height: 1.135em;
}
h1 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 5px;
    letter-spacing: 0.055em;
	line-height: 1.135em;
}
h2 {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 5px;
}
h3 {
    font-size: 14px;
    font-weight: 700;
}
h4 {
    font-size: 14px;
    font-weight: 400;
}
h5 {
    font-size: 13px;
    font-weight: 700;
}
h6 {
    font-size: 11px;
    font-weight: 400;
}
p {
    font-size: 13px;
    font-weight: 300;
}
#scrolldown {
	position: fixed;
	z-index: 100;
	background-color: rgba(0,0,0,0.5);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	cursor: pointer;
}
input, textarea {
    outline: none;
    border: 0;
    font-family: 'Lato';
    font-size: 13px;
    font-weight: 300;
    color: rgba(89,89,89,1);
}
form#login > label, form#login > imput {
    display: block;
}
label {
    font-size: 13px;
    font-weight: 400;
}
#user-panel {
    max-width: 160px;
    margin: 30px auto auto;
    z-index: 105;
}
#guida-panel, #evento-panel, #luogo-panel, #offerta-panel, #recensione-panel, #foto-panel, #settings-panel {
    position: relative;
    max-width: 560px;
    margin: 30px auto auto;
    z-index: 106;
    padding: 20px;
}
.form-block {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
}

#evento-panel label, #settings-panel label {
    display: inline-block;
    width: 130px;
}
#evento-panel input {
    margin-top: 5px;
    margin-bottom: 5px;
}
.loc-cerca-box {
    display: inline-block;
    width: 200px;
    margin-right: 25px;
    margin-bottom: 20px;
}
.loc-cerca-input > input {
    position: relative;
    top: -6px;
    background-color: transparent;
    border: 0;
    font-style: italic;
}
.loc-cerca-input {
    border-bottom: 1px solid rgba(87,87,87,1);
    padding-bottom: 7px;
}

/* HAMBURGER */
#open-close-menu {
	position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    z-index: 101;
}
#hamburger {
  width: 35px;
  height: 35px;
  position: relative;
  margin: auto;
  cursor: pointer;
}
#hamburger > span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: rgba(83,84,87,1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#hamburger span:nth-child(1) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#hamburger span:nth-child(2) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#hamburger span:nth-child(3) {
  top: 28px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 5px;
  left: 5px;
}
#hamburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 30px;
  left: 5px;
}
#logo {
    margin-top: 5px;
    width: 200px;
    -webkit-transition: margin-top 0.3s;
	-moz-transition: margin-top 0.3s;
	-ms-transition: margin-top 0.3s;
	-o-transition: margin-top 0.3s;
	transition: margin-top 0.3s;
}

/* MAIN NAV */
#top-wrapper-nav {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: white;
    -webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
    z-index: 100;
}
.wrap-nav {
    margin: auto;
    max-width: 1176px;
}
.wrap-nav nav {
    float: right;
    font-size: 12px;
    background-color: white;
    padding-bottom: 10px;
}
.wrap-nav nav ul {
    list-style: none;
}
.wrap-nav nav > ul > li {
    display: inline-block;
}
.wrap-nav nav > ul > li > a {
    position: relative;
    top: 20px;
    padding: 26px 14px 24px 14px;
    text-decoration: none;
    font-weight: 400;
    color: rgba(83,84,87,1);
    -webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}
.wrap-nav nav ul li a:hover, .wrap-nav nav ul li.active > a, .wrap-nav nav ul li:hover > a {
    color: rgba(255,102,0,1);
}
.nav-highlight {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255,255,255,1);
}
.wrap-nav nav ul li:hover .nav-highlight, .wrap-nav nav ul li.active .nav-highlight {
    background-color: rgba(255,102,0,1);
}
ul.sub-menu {
    display: none;
    position: absolute;
    margin-top: 39px;
    text-align: center;
}
ul.sub-sub-menu {
    display: none;
    position: absolute;
    margin-top: -26px;
    z-index: 2;
}
.wrap-nav nav ul > li:hover > ul.sub-menu {
    display: block;
}
.wrap-nav nav ul li:hover > ul.sub-menu > li:hover > ul.sub-sub-menu {
    display: block;
}
ul.sub-menu > li, ul.sub-sub-menu > li {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #fff;
    border-bottom: 1px solid rgba(175,175,177,1);
	/*white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;*/
}
ul.sub-menu > li > a, ul.sub-sub-menu > li > a {
	display: inline-block;
	text-decoration: none;
    font-weight: 400;
    color: rgba(175,175,177,1);
    padding-left: 10px;
    padding-right: 10px;
    
    white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* FORM TOP RIGHT */
div#cerca-top-right {
	padding: 20px;
}
div#cerca-top-right input[type=text] {
    font-family: 'Lato';
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
	padding: 3px;
	width: 127px;
	margin-bottom: 10px;
    color: rgba(175,175,177,1);
}

/* SEARCH, LANGUAGE AND LOG-IN */
ul#set-language, ul#user-login, ul#cerca-localita {
    float: right;
    list-style: none;
    margin-left: 20px;
}
ul.lng-sub-menu, ul.user-sub-menu, ul.cerca-localita-win {
    display: none;
    position: absolute;
    list-style: none;
    margin-top: 21px;
    margin-left: -5px;
    z-index: 10;
}
ul.cerca-localita-win {
	margin-top: 21px;
    margin-left: -155px;
	width: 180px;
    z-index: 10;
	background-color: rgba(247,247,247,1);
}
ul#set-language > li, ul#user-login > li, ul#cerca-localita > li, ul#cerca-localita > li {
    padding: 21px 5px 21px 5px;
    background-color: rgba(247,247,247,1);
    -webkit-transition: padding-top 0.3s;
	-moz-transition: padding 0.3s;
	-ms-transition: padding 0.3s;
	-o-transition: padding 0.3s;
	transition: padding 0.3s;
}
ul#set-language > li:before, ul#user-login > li:before, ul#cerca-localita > li:before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    margin-top: 16px;
    border-top: 4px solid transparent;
    border-right: 4px solid rgba(175,175,177,1);
    border-bottom: 4px solid rgba(175,175,177,1);
    border-left: 4px solid transparent;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
ul.lng-sub-menu > li, ul.user-sub-menu > li {
    padding: 6px 5px 6px 5px;
    background-color: rgba(247,247,247,1);
}
ul.lng-sub-menu > li:hover, ul.user-sub-menu > li:hover {
    background-color: rgba(175,175,177,1);
}
ul#set-language > li:hover > ul.lng-sub-menu, ul#user-login > li:hover > ul.user-sub-menu, ul#cerca-localita > li:hover > ul.cerca-localita-win {
    display: block;
}

#cerca-localita:hover > li > .cerca-localita-win {
    display: block;
}

#cerca-localita:hover > li > .cerca-localita-win {
    display: block;
}

/* HEADER */
header {
    width: 100%;
    height: 680px;
}
header h1 {
    font-size: 33px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px grey;
}
header p {
    margin-top: -22px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1em;
    text-shadow: 1px 1px 1px grey;
}
.header-txt {
    position: absolute;
    z-index: 5;
    color: white;
}
.txt1-home {
    top: 130px;
}
.txt2-home {
    top: 100px;
}
.txt3-home {
    top: 120px;
}
.header-txt > p {
    margin-bottom: 20px;
}
ul#header-slider {
    list-style: none;
}
ul#header-slider li, .header-img-fullwidth {
    position: absolute;
}
.header-img-mask {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 680px;
}
.header-slider-left, .header-slider-right {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    top: 340px;
}

/* HEADER SEARCH */
.header-cerca-bg {
    position: absolute;
    top: 458px;
    width: 100%;
    height: 240px;
    z-index: 5;
    background-color: rgba(0,0,0,0.5);
}
.header-cerca-line {
    max-width: 880px;
    margin: auto;
    margin-top: 30px;
}
.header-cerca-box {
    display: inline-block;
    width: 200px;
    margin-right: 25px;
    color: white;
}
.header-cerca-box > h4, .hub-regione-cerca-box > h4, .hub-eventi-range-box > h4 {
    padding-bottom: 20px;
}
.header-cerca-input {
    border-bottom: 1px solid white;
    padding-bottom: 7px;
}
.header-cerca-input > input[type="text"], .header-cerca-input > select, .hub-regione-cerca-input > input[type="text"], .hub-regione-cerca-input > select {
    background-color: transparent;
    position: relative;
    border: 0;
    padding: 3px;
    width: 150px;
    outline: none;
    top: -8px;
    font-family: 'Lato';
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    color: rgba(223,223,224,1);
}
.header-cerca-input > img {
    margin-right: 5px;
}
div.header-cerca-button{
    text-rendering: auto;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    margin: 0em 0em 0em 0em;
    font: 13.3333px Arial;
}
div.header-cerca-button > img {
    padding-top: 4px;
    padding-left: 20px;
}
.header-cerca-button {
    height: 30px;
    width: 140px;
    background-color: rgba(255,102,0,1);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border: 0;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer;
}
.header-cerca-button:hover {
    background-color: rgba(254,155,90,1);
}
.header-cerca-button > span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
    color: white;
    top: -4px;
}
input[type="submit"].header-cerca-button {
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding-left: 20px;
    font-weight: 400;
    margin-left: 3px;
    color: white;
    top: -4px;
    background: rgba(255,102,0,1) url(http://www.visititaly.com/App_Images/icone/search-white.svg) 30px 5px;
    background-repeat: no-repeat;
    background-size: 20px;
}
input[type="submit"].header-cerca-button:hover {
    background-color: rgba(254,155,90,1);
}

/* GENERIC */
.center {
    text-align: center;
}
.txt-right {
    text-align: right;
}
.push-right {
    float: right;
}
.push-left {
    float: left;
    margin-right: 5px;
}
.negative-top {
    margin-top: -11px;
}
.force-cols {
    display: -webkit-flex;
    display: flex;
}
.padding-top30 {
    padding-top: 30px;
}
.margin-bottom30 {
    margin-bottom: 30px;
}
.margin-bottom10 {
    margin-bottom: 10px;
}
.margin-top30 {
    margin-top: 30px;
}
.margin-top20 {
    margin-top: 20px;
}
.margin-top10 {
	margin-top: 10px;
}
.margin-bottom4 {
    margin-bottom: 4px;
}
.line-top {
    border-top: 1px solid rgba(175,175,177,1);
}
.line-right {
    border-right: 1px solid rgba(175,175,177,1);
}
.blue {
    color: rgba(12,119,183,1);
}
.left10 {
    margin-left: 10px;
}
.blue-number {
    color: rgba(12,119,183,1);
    font-size: 18px;
    font-weight: 400;
}
.orange-text {
	color: rgba(255,102,0,1);
}
.weight700 {
    font-weight: 700;
}
.weight400 {
    font-weight: 400;
}
.weight300 {
    font-weight: 300;
}
.italic {
	font-style: italic;
}
.box-padding {
    padding: 10px;
}
.box-padding20 {
    padding: 20px;
}
.p-relative {
	position: relative;
}
.margin-right3 {
	margin-right: 3px;
}
.text-nowrap {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.line-height {
	line-height: 1.705em;
}

/* LINK PERSONALIZZATI PER SEZIONE*/
.default a { color: rgba(83,84,87,1); }
.guide a { color: #ff84d9; }
.mappe a { color: #9c2384; }
.cosavedere a { color: #6aabde; }
.eventi a { color: #1d71b8; }
.indirizziutili a {	color: #b8cc29; }
.dovedormire a { color: #26377c; }
.benessere a { color: #a595c8; }
.arte a { color: rgba(36,128,195,1); }
.laghi a { color: rgba(53,120,58,1); }
.gourmet a { color: rgba(237,112,66,1); }
.mare a { color: rgba(253,188,82,1); }
.montagna a { color: rgba(104,63,24,1); }
.neve a { color: rgba(0,160,192,1); }
.campagna a { color: rgba(148,193,62,1); }
.golf a { color: rgba(10,168,75,1); }
.lusso a { color: rgba(52,57,142,1); }
.mice a { color: rgba(163,28,66,1); }
.feellucky a { color: rgba(221,202,227,1); }
.offerte a { color: #d80e2a;}

.default a:hover, .guide a:hover, .mappe a:hover, .cosavedere a:hover, .eventi a:hover, .indirizziutili a:hover, .dovedormire a:hover, .benessere a:hover, .arte a:hover, .laghi a:hover, .gourmet a:hover, .mare a:hover, .montagna a:hover, .neve a:hover, .campagna a:hover, .golf a:hover, .lusso a:hover, .mice a:hover, .feellucky a:hover, .offerte a:hover {
	opacity: 0.7;
}

/* LINK ARANCIONI */
a.orange {
	text-decoration: none;
	font-size: 12px;
	font-style: italic;
	color: rgba(255,102,0,1);
}
a.orange:hover {
	color: rgba(255,102,0,0.7);
}
a.orange-button, a.button-offerta {
	position: relative;
	top: 10px;
    text-decoration: none;
    padding: 5px;
    background-color: rgba(255,102,0,1);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border: 0;
    border-radius: 4px 4px 4px 4px;
}
a.orange-button:hover, a.button-offerta:hover {
    background-color: rgba(254,155,90,1);
}
.name-address {
    margin-bottom: 10px;
}

/* STRUTTURA */
.grey {
	background-color: rgba(247,247,247,1);
}
.grey-bg {
    display: block;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(247,247,247,1);
}
.wrapper, .wrap-top-sliders {
    margin: auto;
    max-width: 1176px;
    display: -webkit-flex;
    display: flex;
}
.two-cols-wrap-flex {
    display: -webkit-flex;
    display: flex;
}
.two-cols {
    position: relative;
    display: inline-block;
    width: 47%;
    padding: 1.5%;
    vertical-align: text-top;
}
.three-cols {
    display: inline;
    width: 33.333%;
}
.wrapper > .three-cols:nth-child(2) {
    background-color: rgba(247,247,247,1);
}
.four-cols {
    display: inline-block;
    width: 23%;
    padding: 1%;
    vertical-align: text-top;
}
.four-cols p {
    color: rgba(83,84,87,1);
}
.four-cols a {
    color: rgba(83,84,87,1);
    text-decoration: none;
    font-weight: 400;
}
.four-cols a:hover {
    color: rgba(150,150,150,1);
}
.wrap-tematico {
	width: 100%;
	display: -webkit-flex;
    display: flex;  
}
.three-cols > h2 {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* TABS */
.label-tab-grey {
    width: auto;
    padding: 7px;
    padding-left: 13px;
    font-size: 16px;
    font-weight: 400;
    -webkit-border-top-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    background-color: rgba(247,247,247,1);
}
.adjust-white-bg {
    background-color: white;
}


/* HUB LOCALITA' */
.tooltip {
    position: absolute;
    font-size: 11;
    color: red;
}
.two-cols-aside {
	display: -webkit-flex;
	display: flex;
}
.twothird-col {
    display: inline-block;
    width: 79%;
}
.twothird-col > p {
    margin-top: 20px;
	line-height: 1.705em;
}
/*.twothird-col ul.lista-sponsor > li {
    height: 120px;
}*/
.aside-col {
    display: inline-block;
    width: 234px;
    padding-left: 2%;
    vertical-align: top;
}
.aside-col > section {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.aside-col > section > ul {
    list-style: none;
}
.aside-col > section > ul > li {
    font-size: 12px;
    padding-bottom: 4px;
}
.aside-col > section > p > a, .aside-col > section > ul > li > a {
    text-decoration: none;
    color: rgba(83,84,87,1);
    font-size: inherit;
    font-weight: 700;
}
.aside-col > section > p > a:hover, .aside-col > section > ul > li > a:hover {
    color: rgba(150,150,150,1);
}
ul.aside-ico-box {
    list-style: none;
}
section > ul.aside-ico-box > li {
    display: inline-block;
    font-size: 9px;
    text-align: center;
    width: 23%;
    margin-bottom: 20px;
    vertical-align: text-top;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
section > ul.aside-ico-box > li > a {
    color: inherit;
}
section > ul.aside-ico-box > li > a:hover {
    color: inherit;
}
#tel-number {
    display: none;
    font-size: 13px;
    margin-bottom: 0;
}

/* ICONE */
.ico-home-box {
    width: 85px;
    text-align: center;
	vertical-align: text-top;
    display: inline-block;
    color: rgba(175,175,177,1);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}
.ico-home-box a {
    text-decoration: none;
    color: inherit;   
}
.ico-home-box img {
    margin-bottom: 8px;
}

/* IMAGE SLIDER ARROWS SHARED WITH MEGASLIDER */
.image-slider-left, .image-slider-right {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.image-slider-left {
    left: 5px;
}
.image-slider-right {
    right: 5px;
}

/* STARS BOX */
.stars-info-box {
    margin-top: 11px;
    margin-bottom: 5px;
}
.stars-info-box > p > a {
	color: rgba(83,84,87,1);
	font-weight: 300;
}
.stars-info-box-sponsor > a {
	position: relative;
	top: -4px;
	font-size: 10px;
	font-weight: 400;
	text-decoration: none;
	color: rgba(83,84,87,1);
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.stars-info-box-sponsor > a:hover {
	color: rgba(83,84,87,0.5);
}
.stars-info-box-sponsor {
    margin-bottom: 5px;
	clear: both;
	display: inline-flex;
}
.star {
    position: relative;
    top: -5px;
	margin-right: 4px;
}
.stars-info-box .www {
    margin-left: 0px;
}
.stars-info-box-sponsor .www {
    margin-left: 0;
}
.ico-info-box {
    margin-top: 12px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
    height: 25px;
}

/* NEWS LETTER BOX */
.newsletter-box {
	display: inline-block;
    width: 230px;
    margin-bottom: 30px;
}
.nl-envelope {
    float: left;
    margin-right: 8px;
}
span.subscribe-newsletter {
	width: 230px;
}
span.subscribe-newsletter input[type='text'] {
    display: inline-block;
    position: relative;
	width: 128px;
    top: -12px;
    padding: 5px;
    margin-right: 2px;
    font-family: 'Lato';
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    color: rgba(175,175,177,1);
    background-color: rgba(0,0,0,0);
    border: 0;
    border-bottom: 1px solid rgba(175,175,177,1);
	z-index: 5;
}

/* FOOTER */
ul.footer-list {
    list-style: none;
}
ul.footer-list > li > a {
    text-decoration: none;
    font-size: 11px;
    color: rgba(150,150,150,1);
    font-weight: 300;
}
ul.footer-list > li > a:hover {
    color: rgba(83,84,87,1);
}
footer {
    width: 100%;
    background-color: rgba(47,58,51,1);
}
.footer-center {
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 630px;
    text-align: center;
}
.footer-inline {
    display: inline-block;
    margin: 10px;
}
.footer-inline p {
    text-align: center;
    font-size: 11px;
    color: white;
}

/* VIEW PORT MENU' */
@media only screen and (max-width: 1176px) {
    #logo {
        margin-top: 1px;
        width: 40px;
    }
    #open-close-menu {
        display: inline;
        right: 0;
    }
    #top-wrapper-nav {
        position: absolute;
        top: 0;
        height: 40px;
    }
    .wrap-nav nav {
        display: none;
        float: none;
        margin: auto;
        width: 100%;
    }
    .wrap-nav nav > ul > li {
        display: block;
        text-align: center;
        width: 100%;
        padding-top: 0px;
        padding-bottom: 20px;
    }
    .wrap-nav nav > ul > li {
        display: block;
        text-align: center;
        width: 100%;
        padding-top: 1px;
        padding-bottom: 19px;
    }
    .wrap-nav nav > ul > li:last-child {
        padding-bottom: 10px;
    }
    .wrap-nav nav > ul > li > a {
        position: relative;
        top: 10px;
        padding: 5px;
    }
    ul.sub-menu {
        position: static;
        display: none;
        margin-top: 15px;
        text-align: center;
        width: 100%;
    }
    ul.sub-sub-menu {
        position: static;
        display: none;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    ul.sub-menu > li > a {
        padding-bottom: 10px;
    }
    ul.sub-menu > li, ul.sub-sub-menu > li {
        border-bottom: 1px solid rgba(175,175,177,1);
    }
    ul.sub-menu > li {
        padding-bottom: 0;
    }
    ul.sub-sub-menu > li {
        background-color: rgba(247,247,247,1);
    }
    ul.sub-sub-menu > li:last-child {
        border-bottom: 0;
    }
    .wrap-nav nav ul > li:hover > ul.sub-menu {
        display: none;
    }
    .wrap-nav nav ul li:hover > ul.sub-menu > li:hover > ul.sub-sub-menu {
        display: none;
    }
    ul#set-language > li, ul#user-login > li, ul#cerca-localita > li {
        padding-top: 11px;
        padding-bottom: 11px;
        margin-right: 0;
    }
    ul#user-login > li {
        margin-right: 45px;
    }
    ul.lng-sub-menu, ul.user-sub-menu, ul.cerca-localita-win {
        margin-top: 11px;
    }
	.twothird-col {
		width: 77%;
	}
}

/* VIEW PORT STRUTTURA */
@media only screen and (max-width: 1024px) {
	.wrap-top-sliders {
		display: block;
	}
	.wrap-top-sliders .two-cols {
        display: block;
        width: 97%;
        padding: 1.5%;
        vertical-align: text-top;
    }
    .wrap-top-sliders .line-right {
        border-right: 0;
    }
	.wrap-top-sliders > .two-cols:nth-child(1) {
        border-bottom: 1px solid rgba(175,175,177,1);
    }
    .wrap-top-sliders > .two-cols:nth-child(2) {
        padding-top: 36px;
    }
	.twothird-col {
		width: 73%;
	}
}
@media only screen and (max-width: 900px) {
    .wrapper, .wrap-tematico {
        display: block;   
    }
    .three-cols {
        display: block;
        width: 100%;
    }
    .wrapper > .three-cols:nth-child(2) {
        background-color: white;
    }
    .four-cols {
        width: 47%;
        padding: 1%;
        margin-bottom: 20px;
    }
	.aside-col {
		clear: both;
		width: 99%;
		padding-left: 0.5%;
		padding-right: 0.5%;
	}
	
	.aside-col h5.margin-top30 {
		margin-top: 0;
	}
	
	.aside-col > section {
		width: 28%;
		padding: 2%;
	}
	
	.two-cols-aside {
		display: block;
	}
	.twothird-col {
		width: 100%;
	}
}
@media only screen and (max-width: 800px) {
    .header-cerca-box {
        width: 160px;
    }
    .header-cerca-input > input[type="text"] {
        width: 100px;
    }
    .header-cerca-line {
        padding: 10px;
    }
	.aside-col > section {
		width: 44%;
		padding: 2%;
	}
}
@media only screen and (max-width: 630px) {
    .footer-inline {
        display: block;
    }
}
@media only screen and (max-width: 600px) {
	.twothird-col ul.lista-sponsor > li {
		height: 230px;
	}
	.header-cerca-button {
		margin-top: 20px;
	}
	.wrap-tematico > .three-cols {
		width: 100%;
	}
    #guida-panel, #evento-panel, #luogo-panel, #offerta-panel, #recensione-panel, #foto-panel, #settings-panel {
        max-width: 305px;
        margin: 10px auto auto;
        z-index: 103;
        padding: 5px;
    }
}
@media only screen and (max-width: 480px) {
    .header-slider-left, .header-slider-right {
        top: 220px;
    }
    .txt3-home > h1 {
        font-size: 28px;
    }
    .txt1-home, .txt2-home, .txt3-home {
        top: 60px;
    }
    .header-cerca-bg {
        top: 298px;
        height: 400px;
    }
    .header-cerca-line {
        margin-top: 5px;
    }
    .header-cerca-box {
        margin-top: 30px;
        margin-left: 15px;
    }
	#header-cerca .header-cerca-button {
        display: block;
        margin-top: 15px;
        margin-left: 15px;
    }
	.four-cols {
        width: 98%;
    }
    .ico-home-box > img {
        margin-bottom: 0;    
    }
    .ico-home-box {
        width: 75px;
		overflow: hidden;
		text-overflow: ellipsis;
    }
    .two-cols h2 {
        margin-top: -20px;
    }
	.twothird-col ul.lista-sponsor > li {
		height: 230px;
	}
	.aside-col > section {
		width: 96%;
		padding: 2%;
	}
}
@media only screen and (max-width: 320px) {
    .ico-home-box {
        width: 63px;
        font-size: 10px;
        font-weight: 400;
		overflow: hidden;
		text-overflow: ellipsis;
    }
	ul.cerca-localita-win {
		margin-left: -105px;
	}
}
#OfferteRicerca_DrpRicercaOfferteSpecialiTipoUbicazione{
    width: 49.5%;
}
#OfferteRicerca_DrpRicercaOfferteSpecialiUbicazione {
    width: 50%;
    float: right;
}
.infoWin h5 a {
    color: rgba(255,102,0,1);
    text-decoration: none;
    display: block;
    margin-top: 12px;
}
.lista-sponsor p a {
    color: rgba(255,102,0,1);
    text-decoration: none;
}

@import url("autocomplete.css");

.fancybox-content {
    width: 600px !important;
}

.accordion-offerte-slider-mask {
    min-height: 200px !important;
}

@media only screen and (max-width: 768px) {
    #TopSlider_ImageNoSlider {
        display: none !important;
    }
}

#ac-tags option {
    color: #999;
}

.slider-vetrina-canali .mini-slider-mask {
    height: 150px !important;
}

.image-slides li {
    list-style: none;
}

.margin-right10 {
    margin-right: 10px !important;
}

.box-list h4 span a,.slider-sponsor-slides h4 a,.box-padding h2 a,.grey-box h5 a,.stars-info-box h2 a {
    color: rgba(83,84,87,1);
    text-decoration: none;
}

.stars-info-box h2 a,.stars-info-box h2 a:hover,.box-padding > h2 > a,.box-padding > h2 > a:hover {
    font-weight: 400;
    color: rgba(83,84,87,1);
    text-decoration: none;
    opacity: 1;
}

.luxurybox > a,ul.megaslider-slides > li > a > img,ul.megaslider-slides > li > a > img:hover,ul.megaslider-slides > li > a,ul.megaslider-slides > li > a:hover,.image-slides > li > a,.image-slides > li > a:hover {
    opacity: 1 !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: white;
}
::-moz-placeholder { /* Firefox 19+ */
  color: white;
}
:-ms-input-placeholder { /* IE 10+ */
  color: white;
}
:-moz-placeholder { /* Firefox 18- */
  color: white;
}

#cerca-top-right #ac-loc::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #CCC;
}
#cerca-top-right #ac-loc::-moz-placeholder { /* Firefox 19+ */
  color: #CCC;
}
#cerca-top-right #ac-loc:-ms-input-placeholder { /* IE 10+ */
  color: #CCC;
}
#cerca-top-right #ac-loc:-moz-placeholder { /* Firefox 18- */
  color: #CCC;
}

.chiudi-ricerca {
    text-align: center;
    display: block;
    font-size: 11px;
    cursor: pointer;
}

div#cerca-top-right {
    padding-bottom: 30px;
}

.ulchiudi{
    margin-left: -155px;
    width: 180px;
    z-index: 10;
    margin-top: 110px;
    position: absolute;
    display: none;
    background-color: rgba(247,247,247,1);
}

.header-slider > li > div.dovesiamo {
    color: white !important;
}

.dovesiamo {
    position: absolute;
    top: 60px;
    color: white;
    right: 0px;
    padding-right: 20px;
    padding-bottom: 20px;
    text-shadow: 1px 1px 1px grey;
}

.nomecliente {
    color: rgba(83,84,87,1);
    font-size: 16px;
    font-weight: 400 !important;
}