@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: 7px;
}
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(https://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;
}
.padding-bottom30 {
    padding-bottom: 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 #DADADA;
}
.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; }  rosa*/
.guide a {color:#0c77b7; text-decoration:none;}
.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);
}
.transparent-bg {
    display: block;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}


.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-italia {
    display: block;
    width: 100%;
}
.three-cols {
    display: inline;
    width: 33.333%;
}
.wrapper > .IdTipologia: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;
}
    .footer-inline p a {
        color: white; text-decoration:none;
    }

/* 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%;
    }
    .IdTipologia-italia {
        display: block;
        width: 100%;
    }
    .wrapper > .IdTipologia: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 > .IdTipologia {
		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;
    }
    .header-slider-left, .header-slider-right {
        top: 220px;
    }
}
@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;
}

.box-padding > h4 > a, .box-padding > h42 > 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: 635px;
    color: white;
    right: 0px;
    padding:10px 20px;
    text-shadow: 1px 1px 1px grey;
    /*background-color: rgba(255,102,0,1);*/
    z-index:9999
}

.nomecliente {
    color: rgba(83,84,87,1);
    font-size: 16px;
    font-weight: 400 !important;
}

/* nuovi stili */
li.OT {
    padding-bottom:15px !important ;
}
li.OT:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 4px;
    border-top: 3px solid rgba(255,102,0,1);
    border-right: 3px solid rgba(255,102,0,1);
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
li.NFH {
    height: 180px !important;
}
li.NFH A {
    color: rgba(83,84,87,1) !important;
}
/* 2k21 styles *********************************************************** */
/* filtri e bottoni stile*/
.slick-slide {
    margin: 0px 5px;
    float: left;
    transition: all ease-in-out .3s;
}

    .slick-slide img.IMGRespDD {
        width: 100%;
    }

.slick-prev:before, .slick-next:before {
    color: black;
}

.slick-track {
    margin-left: 0;
}

.slick-slide img.star {
    width: 15px !important;
    height: 15px !important;
    display: inline !important;
}

.slick-slide .title {
    margin: 5px 0 0 0;
}

.button_filters {
    margin: 10px 0;
    display: block;
    width: auto;
}

.header_filters h2 {
    text-transform: uppercase;
    padding: 5px 0 0 0;
}
.button_filters p {
    float: left;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    clear: left;
    width: 120px
}

.button_filters div {
    display: block;
    padding: 5px 0px 0px 0px;
}

.button_filters button {
    line-height: 1.55;
    background-color: #ffffff;
    font-size: 10px;
    cursor: pointer !important;
    display: inline-block;
    padding: 0.35em 1.2em;
    border: 1px solid #CCCCCC;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.12em;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 300;
    color: #5E5E5E;
    text-align: center;
    transition: all 0.2s;
}

    .button_filters button:hover {
        line-height: 1.55;
        background-color: rgba(12,119,183,1);
        color: #ffffff;
    }

.button_filters .button_filter_active {
    line-height: 1.55;
    background-color: rgba(12,119,183,1);
    color: #ffffff;
}
/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-  */
.header_filters .HeadingCF {
    font-size: 1.5em;
    line-height: 1.5em;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: rgba(12,119,183,1);
    text-shadow: 0 1px 1px #FFFFFF;
    text-transform: initial !important;
}
.header_filters .HeadingCF a:link {
    color: rgba(12,119,183,1);
}
    .header_filters .HeadingCF a:visited {
        color: rgba(12,119,183,1);
    }
    .header_filters .divider-HeadingCF {
        border-bottom: 1px solid #FFF;
        background-color: #DADADA;
        height: 1px;
        margin: 0.5em 0px 1.5em;
        padding: 0;
    }

    .header_filters .divider-HeadingCF span {
        display: block;
        width: 50px;
        height: 1px;
        background-color: rgba(12,119,183,1);
    }
/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-  */
h2.HeadingDD {
    align-items: stretch;
    margin: 1em 0;
    height: 2em;
    line-height: 2em;
    color: white;
    background: rgba(12,119,183,1);
    display: flex;
    padding: 0px 10px;
    font-size: 1.5em;
}
/* _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-  */

.header_filters .ContainerHeadingCV {
    border-bottom: 2px solid rgba(12,119,183,1);
}

.header_filters .HeadingCV {
    background-color: rgba(12,119,183,1);
    color: white;
    display: inline-block;
    font-weight: bold;
    padding: 7px 30px 7px 15px;
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: -1px;
}
/* header guide /////////////////////////////////////// */
.ListREDCont h4.headline {
    border-bottom: 1px dashed rgba(12,119,183,1);
    border-left: 7px solid rgba(12,119,183,1);
    margin: 1em 0;
    padding: 10px;
    font-size: 1.5em;
    color: rgba(12,119,183,1);
    text-transform: uppercase;
}
/* container new 4 colonne ************************** */
.r-col-lg-1-4 {
    width: calc((100% - 1.5% * 3) / 4);
    margin-top: 1.5%;
    margin-right: 1.5%;
    float: left;
    list-style: none;
    min-height: 270px;
}

    .r-col-lg-1-4:nth-child(4n+4) {
        margin-right: 0;
        float: right;
    }

/* container FLEX 5 colonne ************************** */
.five-columns {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-content: flex-start
}

.five-columns-item {
    flex: 19%;
    margin: 0 1% 0 0;
}
/* container new 5 colonne ************************** */
.r-col-lg-1-5 {
width: calc((100% - 1.5% * 4) / 5);
margin-top: 1.5%;
margin-right: 1.5%;
float: left;
list-style: none;
min-height: 235px;
}

.r-col-lg-1-5:nth-child(5n+5) {
    margin-right: 0;
    float: right;
}
/* container new 6 colonne ************************** */
.r-col-lg-1-6 {
    width: calc((100% - 1.5% * 5) / 6);
    margin-top: 1.5%;
    margin-right: 1.5%;
    float: left;
    list-style: none;
    min-height: 230px;
}

.r-col-lg-1-6:nth-child(6n+6) {
    margin-right: 0;
    float: right;
}


    /* ********************************************************************************************************************************** */
    .r-col-lg-1-4 .IMGRespDD, .r-col-lg-1-5 .IMGRespDD, .r-col-lg-1-6 .IMGRespDD, .five-columns-item .IMGRespDD {
        display: block;
        width: 100%;
        height: auto;
        transition: all 0.7s ease-out;
    }

    .r-col-lg-1-4 .title, .r-col-lg-1-5 .title, .r-col-lg-1-6 .title, .five-columns-item .title {
        color: rgba(83,84,87,1);
        letter-spacing: 0.045em;
        line-height: 1.135em;
        user-select: none;
        font-size: 13px;
        margin: 5px 0 0 0;
        font-weight: 700;
        /*text-transform: uppercase;*/
    }
    .r-col-lg-1-4 .container, .r-col-lg-1-5 .container, .r-col-lg-1-6 .container, .five-columns-item .container {
        position: relative;
        width: 100%;
        max-width: 400px;
    }

    .r-col-lg-1-4 .image, .r-col-lg-1-5 .image, .r-col-lg-1-6 .image, .five-columns-item  .image{
        display: block;
        width: 100%;
        height: auto;
    }

    .r-col-lg-1-4 .overlay, .r-col-lg-1-5 .overlay, .r-col-lg-1-6 .overlay, .five-columns-item .overlay{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .3s ease;
        background-color: #000000;
    }

    .r-col-lg-1-4 .container:hover .overlay, .r-col-lg-1-5 .container:hover .overlay, .r-col-lg-1-6 .container:hover .overlay, .five-columns-item .container:hover .overlay {
        opacity: 0.5;
    }

    .r-col-lg-1-4 .overlayIMG, .r-col-lg-1-5 .overlayIMG, .r-col-lg-1-6 .overlayIMG, .five-columns-item .overlayIMG {
        display: block;
        width: 100%;
        height: auto;
        opacity: 1;
    }

    .r-col-lg-1-4 .fa-user:hover, .r-col-lg-1-5 .fa-user:hover, .r-col-lg-1-6 .fa-user:hover, .five-columns-item .fa-user:hover {
        color: #eee;
    }

    /* link colonne ******************************************** */
        .r-col-lg-1-4 a:link, .r-col-lg-1-5 a:link, .r-col-lg-1-6 a:link, .five-columns-item a:link {
            text-decoration: none !important;
            color: rgba(83,84,87,1) !important;
        }
    .r-col-lg-1-4 a:visited, .r-col-lg-1-5 a:visited, .r-col-lg-1-6 a:visited, .five-columns-item a:visited {
        text-decoration: none !important;
        color: rgba(83,84,87,1) !important;
    }

    .r-col-lg-1-4 h3, .r-col-lg-1-5 h3, .r-col-lg-1-6 h3, .five-columns-item h3{
        margin-top: 10px !important;
        text-decoration: none !important;
        color: rgba(83,84,87,1) !important;
    }
    
/*----------------------------*/
.modal-window {
    padding: 40px 50px !important;
    background-color: #f4f4f4 !important;
    position: relative;
    min-height: 420px;
}
    .modal-window .IMGResMed{
        margin-bottom: 20px;
    }

    .modal-window .IMGResSmall {
        float: left;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .modal-window .title {
        font-size: 20px;
        font-weight: 700;
        padding-bottom: 10px;
        margin-bottom: 10px;
        letter-spacing: 0.055em;
        line-height: 1.135em;
    }

article .button-leggi {
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    color: rgba(255,102,0,1);
    cursor: pointer;
}

    article .button-leggi:hover {
        color: rgba(255,102,0,0.7) !important;
    }

.modal-window article {
    font-size: 16px;
    font-weight: 300;
}

.modal-window .close {
    cursor: pointer;
    height: 25px;
    width: 25px;
    position: absolute;
    right: 42px;
    top: 42px;
    z-index: 1000;
}
/* *** FAQ *****************************/
.FAQCont {
    display: table;
    margin-bottom: 20px;
}

    .FAQCont .domanda {
        font-size: 15px;
        line-height: 1.5em;
        font-weight: 700;
    }

    .FAQCont .risposta {
        font-size: 15px;
        font-weight: 300;
        line-height: 1.5em;
        margin: 0 0 5px 0;
    }

    .FAQCont .risultato a {
        margin-left: 20px;
        font-weight: 300;
        color: rgba(83,84,87,1) !important;
    }
/******************************************* */
.TestiIntroduttiviPerPagina img {
    width: 100% !important;
    margin: 10px 0px !important;
    height: 100% !important;
}

.TestiIntroduttiviPerPagina {
    line-height: 1.25em;
}
/**********************************/
.slick-prev:before,
.slick-next:before {
    color: rgba(12,119,183,1) !important;
}
/* *** TAG **************************** */
.dest-cont-01 .tag-dest {
    display: inline-block;
    font-size: 10px;
    line-height: 6px;
    font-weight: 500;
    color: #5E5E5E;
    padding: 7px;
    border: 1px solid #CCC;
    border-radius: 2px;
    margin-left: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.dest-cont-01 .tag-dest-active {
    background: rgba(12,119,183,1);
    border: 1px solid rgba(12,119,183,1);
    color: white !important;
}

.tag-dest-no-result {
    padding: 15px 40px;
    font-size: 14px;
}
/* -------------------- */

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slick-initialized {
    visibility: visible !important;
}
/* placeholder newsletter */
#MegafooterNewsletterEmail::-webkit-input-placeholder {color: rgba(175,175,177,1);}
#MegafooterNewsletterEmail:-moz-placeholder {color: rgba(175,175,177,1);}
#MegafooterNewsletterEmail::-moz-placeholder {color: rgba(175,175,177,1);}
/* testo 3 linee */
.text3lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

/**  long description */
.longdescription {
    font-size: 16px !important;
    line-height: 1.4em;
    margin-bottom: 20px;
    text-align: justify;
}

    .longdescription p {
        font-size: 16px !important;
        line-height: 1.4em;
        margin-bottom: 20px;
        text-align: justify;
    }

    .longdescription a {
        text-decoration: none;
    }

/* modal guide ********************* */
.ModalTextA {
    column-count: 2;
    column-gap: 30px;
    font-size: 14px !important;
    text-align: justify;
    font-size: 16px !important;
    text-align: justify;
    line-height: 1.4em;
}

    .ModalTextA p {
        font-size: 16px !important;
        text-align: justify;
        line-height: 1.4em;
    }

.ModalTextB {
    font-size: 14px !important;
}

    .ModalTextB p {
        font-size: 14px !important;
    }

.button3 {
    display: inline-block;
    padding: 0.3em 1.2em;
    margin: 20px 0.3em 0.3em 0;
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 300;
    color: #FFFFFF;
    background-color: #4eb5f1;
    text-align: center;
    transition: all 0.2s;
}

    .button3:hover {
        background-color: #4095c6;
    }


a .orange-link, a .orange-link:hover, a .orange-link:visited  {
    color: rgba(255,102,0,1) !important;
}

/* header responsive */
@media only screen and (max-width: 640px) {
    .header_filters .HeadingCF {
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 400px) {
    .header_filters .HeadingCF {
        font-size: 0.8rem;
    }
}




@media (max-width: 900px) {
    .five-columns-item{
        flex: 25%;
    }
    .r-col-lg-1-5 {
        width: calc((100% - 1.5% * 3) / 3);
    }
        .r-col-lg-1-5:nth-child(5n+5) {
            margin-right: 1.5%;
            float: right;
        }

}

@media (max-width: 675px) {
    .five-columns-item{
        flex: 33%;
    }
    .r-col-lg-1-5 {
        width: calc((100% - 1.5% * 2) / 2);
    }
        .r-col-lg-1-5:nth-child(5n+5) {
            margin-right: 1.5%;
            float: right;
        }

}

@media (max-width: 450px) {
    .five-columns-item{
        flex: 50%;
    }
    .r-col-lg-1-5 {
        width: calc((100% - 1.5% * 1) / 1);
    }
        .r-col-lg-1-5:nth-child(5n+5) {
            margin-right: 1.5%;
            float: right;
        }

}

@media (max-width: 320px) {
    .five-columns-item{
        flex: 100%;
    }
    .r-col-lg-1-5 {
        width: 100%
    }
      .r-col-lg-1-5:nth-child(5n+5) {
            margin-right: 1.5%;
            float: right;
        }
}
/* --- PUNTEGGIO -------------------------------------------------------*/
.ContainerHeaderLocalitaPunteggio {
    height: 80px;
    position: relative;
    display: inline-block;
    width: 85%;
    padding: 0 1.5% 1.5% 0;
    vertical-align: text-top;
}
    .ContainerHeaderLocalitaPunteggio > h1 {
        font-size: 1.5em;
        letter-spacing: 0.08em;
        font-weight: 500;
        color: rgba(12,119,183,1);
        text-shadow: 0 1px 1px #FFFFFF;
        text-transform: initial !important;
        padding-top: 20px;
        
    }
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }
@media (max-width: 640px) {
    
    .ContainerHeaderLocalitaPunteggio > h1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 450px) {
    .ContainerHeaderLocalitaPunteggio > h1 {
        font-size: 1.25rem;
        padding-top: 5px;
    }
    .c100.small {
        font-size: 70px;
    }
    .ContainerHeaderLocalitaPunteggio {
        width: 75%;
    }
    .longdescription > p {
        font-size: 0.9rem !important;
        line-height: 1.4rem;
    }

}
@media (max-width: 320px) {
    .ContainerHeaderLocalitaPunteggio > h1 {
        font-size: 1rem;
        padding-top: 5px;
    }

    .c100.small {
        font-size: 60px;
    }

    .ContainerHeaderLocalitaPunteggio {
        width: 75%;
    }

    .longdescription > p {
    font-size: 0.8rem !important;
    line-height: 1.3rem;
}
}

/* --- BARRA DI RICERCA --------------------------------------------------------------------------- */
ul#cerca-localita > li:before {
    border: 0px !important;
}
/*------------*/
.newsrcbox21 {
    color: #7F7F7F;
    float: left;
    font-size: 14px;
    height: 16px;
    margin: 0;
    padding: 0px 2px 2px 2px;
    width: 125px;
    border-bottom: 1px solid rgba(255,102,0,1);
}

.newsrcbtn21 {
    background: url('/App_Images/search_14.png') no-repeat scroll center center rgba(255,102,0,1);
    cursor: pointer;
    height: 19px;
    width: 23px;
    border: 0px;
    text-indent: -99999em;
    transition: background 0.3s ease-in-out 0s;
    border-bottom: 1px solid rgba(255,102,0,1);
}
.newsrcbtn21:hover {
        background-color: rgba(255,102,0,0.75);
    }


/* home slider tipologie HIGHlights */
.perc100 {
    width: 100% !important
}

.container-tipo-slide {
    display: block;
    margin-top: 60px;
    visibility: hidden;
}

.slick-initialized {
    visibility: visible !important;
}

.r-col-lg-1-3 {
    width: calc((100% - 1.5% * 2) / 3);
    margin-top: 1.5%;
    margin-right: 1.5%;
    float: left;
    list-style: none;
    min-height: 150px;
}

    .r-col-lg-1-3:nth-child(3n+3) {
        margin-right: 0;
        float: right;
    }

.TipBlock h4 a:link, .TipBlock h4 a:visited, .TipBlock h4 a:hover {
    color: #000000 !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

.slick-track {
    float: left;
}

.TipBlock p.desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.cont-slider-top {
    right: 5px;
    position: absolute;
    top: 0px
}

@media (max-width: 360px) {
    .container-tipo-slide {
        margin-top: 6px;
    }

    .cont-slider-top {
        left: 5px;
        position: relative;
        padding: 1rem 0;
    }
}
.mh175 {
    min-height: 30px !important;
    height: 175px;
}
.TitoloModalGuidaLong {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 5;
    background-color: rgba(0,0,0,0.5);
    color: #FFFFFF;
    font-size: 21px;
    padding: 20px;
}
.TitoloModalGuidaShort {
    position: absolute;
    bottom: 25px;
    left: 0;
    z-index: 5;
    background-color: rgba(0,0,0,0.5);
    color: #FFFFFF;
    font-size: 21px;
    padding: 20px;
}
@media (max-width: 1024px) {
    .ModalTextA {
        column-count: 1;
        column-gap: 0px;
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .ModalTextA p {
        font-size: 1rem;
        line-height: 1.4rem;
        text-align: justify;
    }

    .modal-window .IMGResMed {
        width: 100%;
    }
}

    @media (max-width: 640px) {

        .ModalTextA {
            column-count: 1;
            column-gap: 0px;
            font-size: 0.8rem;
            line-height: 1.1rem;
        }

            .ModalTextA p {
                font-size: 0.8rem;
                line-height: 1.1rem;
                text-align: justify;
            }

        .modal-window .IMGResMed {
            width: 100%;
        }

        .TitoloModalGuidaLong {
            font-size: 1rem;
            position: relative !important;
            background-color: transparent !important;
            color: rgba(12,119,183,1) !important;
            padding: 0;
            bottom: 0;
        }

        .TitoloModalGuidaShort {
            font-size: 1rem;
            position: relative !important;
            background-color: transparent !important;
            color: rgba(12,119,183,1) !important;
            padding: 0;
            bottom: 0;
        }
    }
@media (max-width: 1024px) {
    .five-columns-item {
        flex:25%
    }
}

@media (max-width: 480px) {
    .five-columns-item {
        flex: 50%
    }
}

@media (max-width: 320px) {
    .five-columns-item {
        flex: 100%
    }
}
.slick-slide img {
    width: 100%;
    }
    .slick-slide img.slider660 {
        /*min-height: 650px;*/
    }
@media (max-width: 720px) {
    .slick-slide img.slider660 {
        min-height: 400px;
    }
}
@media (max-width: 360px) {
    .newsrcbox21 {
        width: 115px !important;
        font-size: 0.8rem !important;
    }
    .slick-slide img.slider660 {
        min-height: 200px;
    }
}
/* -- PERSONALWEB 2021 ***************************************************/
::placeholder {
    color: rgba(83,84,87,1);
    opacity: 1; /* Firefox */
}

.percorsoda {
    padding: 6px;
    border: 1px solid rgba(12,119,183,1);
    color: rgba(83,84,87,1);
    margin: 0px;
    width: 53%;
}

.percorsobutton {
    width: 40%;
    margin: 0;
    box-sizing: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    font-weight: 700;
    overflow: hidden;
    background-color: rgba(12,119,183,1);
    color: #FFF;
    cursor: pointer;
    height: 30px;
    border-radius: 6px;
}

.map-adv-cont {
    display: flex;
    flex-wrap: wrap;
}

/* AZIENDA */
.azienda .main-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .azienda .main-cont p {
        margin: 13px 0px;
    }

    .azienda .main-cont li {
        line-height: 1.2;
        list-style: none;
        margin: 0;
        padding: 0;
        box-sizing: inherit;
        outline: none;
        padding-bottom: 10px;
        padding-right: 10px;
    }

    .azienda .main-cont .main-cont-img {
        margin-right: 25px;
    }

    .azienda .main-cont .main-cont-anag {
        padding-top: 15px;
    }

        .azienda .main-cont .main-cont-anag h1 {
            font-size: 1.5em;
            letter-spacing: 0.08em;
            font-weight: 500;
            color: rgba(12,119,183,1);
        }

    .azienda .main-cont a:link {
        text-decoration: none;
    }

    .azienda .main-cont li a:link, .azienda .main-cont li a:visited, .azienda .main-cont li a:hover {
        color: #fff;
    }

    .azienda .main-cont .btn-blu {
        font-size: 14px;
        list-style: none;
        margin: 0;
        box-sizing: inherit;
        outline: none;
        text-decoration: none;
        display: inline-flex;
        position: relative;
        align-items: center;
        justify-content: center;
        height: 30px;
        padding: 0 10px;
        border-radius: 6px;
        font-weight: 500;
        overflow: hidden;
        line-height: .9;
        background-color: rgba(12,119,183,1);
        color: #FFF;
    }

        .azienda .main-cont .btn-blu:hover {
            background-color: rgba(12,119,183,0.8)
        }

.azienda .main-desc {
    /*background-color: rgba(247,247,247,1);*/
    font-size: 16px !important;
    line-height: 1.4em;
    margin-bottom: 20px;
    text-align: justify;
}
/* ----------------------------------------- */
.azienda .main-cont .btn .icon {
    display: block;
    z-index: 1;
    display: inline-block;
    flex-shrink: 0;
}

/* MODAL ***************************************************** */

#myImg {
    cursor: pointer;
    transition: 0.3s;
}

    #myImg:hover {
        opacity: 0.7;
    }

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }

    .azienda .main-cont .main-cont-anag h1 {
        font-size: 1rem;
        line-height: 1.4rem;
    }
}


@media only screen and (max-width: 420px) {
    .modal-content {
        width: 100%;
    }

    .azienda .main-cont .main-cont-anag h1 {
        font-size: 1.4rem;
        line-height: 1.9rem;
    }

    #myImg {
        width: 100%
    }

    .percorsoda {
        width: 90%;
    }

    .percorsobutton {
        width: 90%;
        margin-top: 5px;
    }

    .beefup__head > button {
        font-size: 0.8rem;
        line-height: 1.5rem;
    }
}

.TxtIntroNazioneCanale {
    font-size: 15px;
    font-weight: 300;
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
    line-height: 1.4em;
}

@media only screen and (max-width: 420px) {
    .TxtIntroNazioneCanale {
        font-size: 0.8rem;
        text-align:justify;
        column-count: 1;
        line-height: 1.4rem;
    }
}

@media only screen and (max-width: 700px) {
        .TipBlock h4 {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }
    .TipBlock p.desc {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }
}

.head-no-slick-top {
    min-height: 200px;
}



.card_content_nofoto {
    color: #fff;
    padding: 0 0 2.5rem 0;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 60px 0 0 0 ;
}    

@media only screen and (max-width: 1176px) {
        .head-no-slick-top {
            min-height: 180px;
        }
    .card_content_nofoto {
        margin: 40px 0 0 0;
    }
    }

@media only screen and (max-width: 640px) {
    .head-no-slick-top {
        min-height: 80px;
    }

    .card_content_nofoto {
        margin: 40px 0 0 0;
    }
}

@media only screen and (max-width: 400px) {
    .head-no-slick-top {
        min-height: 60px;
    }

    .card_content_nofoto {
        margin:  0;
    }
}

.head-no-slick-top .title_card_head {
    bottom: 0!important
}

/* NUOVA HOME 2021 */

.header_filters {
    width: 100%;
}

    .header_filters .HeadingCFSub p {
        font-size: 1rem;
        line-height: 1.6rem;
    }

.icon-title {
    color: black;
    margin-top: 1rem;
    text-align: center;
}

.icon-svg {
    fill: currentColor;
    width: 3rem;
    margin: 0 auto;
    color: #479ad9;
    display: block;
    vertical-align: middle;
}

.vi-flex-container {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    align-items: stretch;
    -webkit-align-items: stretch;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
}

.vi-flex-item-3 {
    font-size: 2rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    flex: 1 1 300px;
    -webkit-flex: 1 1 300px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ff0000;
    background-color: lightgoldenrodyellow;
}

.vi-flex-item-4 {
    font-size: 2rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    flex: 1 1 245px;
    -webkit-flex: 1 1 245px;
    margin: 0;
    padding: 0;
}

.vi-flex-item-4-2 {
    font-size: 2rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    flex: 2 1 490px;
    -webkit-flex: 2 1 490px;
    margin: 0;
    padding: 0;
}

.vi-flex-item-5 {
    font-size: 2rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    flex: 1 1 230px;
    -webkit-flex: 1 1 230px;
    margin: 0;
    padding: 0;
}

.vi-flex-item-8 {
    font-size: 2rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    flex: 1 1 115px;
    -webkit-flex: 1 1 115px;
    margin: 0;
    padding: 0;
}
    .vi-flex-item-8 a:link {
        text-decoration: none;
        color: rgba(83,84,87,1);
    }
    /* .................................  */
    .box {
    background-color: #fff !important;
    display: block;
}

.box-tall {
    box-shadow: none;
    color: #fff;
    max-height: 28rem;
    height: 28rem !important;
    padding: 1rem;
    position: relative;
    z-index: 10;
}

.box-square {
    box-shadow: none;
    color: #fff;
    max-height: 16rem;
    height: 16rem !important;
    padding: 1rem;
    position: relative;
    z-index: 10;
}

.box-short {
    box-shadow: none;
    color: #fff;
    max-height: 8rem;
    height: 8rem !important;
    padding: 1rem;
    position: relative;
    z-index: 10;
}

    .box-tall .box_image-container, .box-square .box_image-container, .box-short .box_image-container {
        bottom: .5rem;
        left: .5rem;
        position: absolute;
        right: .5rem;
        top: .5rem;
        background-color: #2c3643;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: initial;
        overflow: hidden;
        width: calc(100% - 1rem);
        /*width: 100%;
    */
        resize: both;
    }
    .box-tall .box_image-container-guida, .box-square .box_image-container-guida, .box-short .box_image-container-guida {
        bottom: .5rem;
        left: .5rem;
        position: absolute;
        right: .5rem;
        top: .5rem;
        background-color: #2c3643;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: initial;
        overflow: hidden;
        width: calc(100% - 1rem);
        /*width: 100%;
    */
        resize: both;
    }
    .box-tall .box_image-container-video, .box-square .box_image-container-video, .box-short .box_image-container-video {
        bottom: .5rem;
        left: .5rem;
        position: absolute;
        right: .5rem;
        top: .5rem;
        background-color: #2c3643;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: initial;
        overflow: hidden;
        width: calc(100% - 1rem);
        /*width: 100%;
    */
        resize: both;
    }

.box_image-container-guida:hover {
    background-image: url("https://www.visititaly.it/App_Images/icon_text.png") !important;
}
.box_image-container-video:hover {
    background-image: url("https://www.visititaly.it/App_Images/icon_youtube.png") !important;
}
.box .box-gradient-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

.box .box-content {
    background: linear-gradient(-180deg,transparent 15%,#000);
    color: #fff;
    font-size: 1.2rem;
    padding: 0 1.5rem 5rem;
    text-align: center;
    z-index: 100;
}

.box .box-content-txt-btm {
    padding: 0 1.5rem 5rem;
    text-align: center;
    z-index: 100;
}

.box .box-content h3.box-title {
    bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    left: 1rem;
    position: absolute;
    text-align:left;
}

.box .box-content h3.box-title-guida {
    bottom: 1rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 600;
    left: 1rem;
    position: absolute;
    text-align: left;
}


.box .box-content p.box-sup-title {
    top: 1.2rem;
    color: #fff;
    font-size: 0.6em;
    font-weight: 400;
    left: 1rem;
    position: absolute;
    text-transform: uppercase;
}

.vi-flex-item-sub-cont {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-direction: row;
    font-size: 0.85rem;
    padding-left: 10px;
}

.vi-flex-item-sub_L {
    font-size: 0.85rem;
    display: flex;
    margin-right: auto;
}

.vi-flex-item-sub_R {
    font-size: 0.85rem;
    text-align: right;
    display: flex;
    margin-right: 22px;
}

.vi-flex-item-sub_L a, .vi-flex-item-sub_R a {color: rgba(83,84,87,1);text-decoration: none;font-weight: 300;}

/* *** Pagina Racconto ************************************************************************* */
.BlogPost .ArticleText {font-size: 1.2rem;line-height: 1.4em;margin-bottom: 20px;text-align: justify; font-weight:300;}
.BlogPost .ArticleText p {font-size: 1.2rem;line-height: 1.4em;text-align: justify; font-weight:300;}
.BlogPost .IconeTXTMod {margin: 5px 0;text-align: right;}
.BlogPost .IconaTXT {width: 33px;}
.BlogPost img.ImgArticleStandard {float: left;margin: 0 30px 30px 0;max-width: 60%;}
.BlogPost img.ImgArticleLarge {width: 100%;margin: 0 0 10px  0;}
.BlogPost .FotoDida1 {
    font-size: 0.9rem;
    text-align: right;
    font-style: italic;
    margin: 0 0 20px 0;
    font-weight:300;
}
.BlogPost .ArticleAutore {font-style: italic;}
.ListREDCont {width:100%;}

.boxdd {
    justify-content: flex-start !important;
}

.slick-initialized {
    visibility: visible !important;
}

.item-listing-nome a {
    font-weight: 700;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-transform: capitalize;
    color: rgba(12,119,183,1);
    text-decoration: none;
    padding: 10px 0 5px 0;
}

.item-listing-more {
    font-weight: 300;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.2rem;
}

    .item-listing-more a {
        font-weight: 300;
        text-decoration: none;
        color: rgba(83,84,87,1);
    }

.item-listing-more-2-lines {
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.2rem;
}

.box {
    background-color: transparent !important;
}


/* --- NuovaRicerca e pagina risultato ricerca -------------------------------------------------------*/

.head-results {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
    gap: 1%;
}

    .head-results .head-results-image {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16%;
        display: flex;
        flex-direction: column;
        background-image: url('https://images.visititaly.com/App_Images<%=FotoLocalita%>');
        background-position: center;
        height: 160px;background-size: cover;
    }

    .head-results .head-results-text {
        flex-basis: 80%;
        padding: 0;
    }

    .head-results h1 {
        font-size: 1.5em;
        line-height: 1.5em;
        letter-spacing: 0.08em;
        font-weight: 500;
        color: rgba(12,119,183,1);
        text-shadow: 0 1px 1px #ffffff;
        text-transform: initial !important;
    }

    .head-results div > p {
        font-weight: 300;
        font-size: 1rem;
        line-height: 1.2rem;
    }

/* §§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§§  */
.results-container-n {
    display: flex;
    cursor: pointer;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
    gap: 1%;
    margin: 30px 0;
}

    .results-container-n .square {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 20px 15px;
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }


        .results-container-n .square:hover {
            background-color: #f2f2f2;
        }

        .results-container-n .square p {
            font-weight: 300;
            font-size: 1rem;
            line-height: 1.2rem;
        }

#nuovirisultati .square .top-box {
    text-align: left;
    color: rgba(12,119,183,1);
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}
/*######################################################################################################### */

.NWsearch {
    height: 40px;
    background: #ffffff;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.2);
    max-width: 1176px;
    width: 99%;
    margin: auto;
    position: relative;
}

.NWinput {
    width: 700px;
    padding: 5px 15px;
    float: left;
    border: 0;
    font-size: 1.4rem;
    font-weight: 500;
    background: transparent;
    border-radius: 3px 0 0 3px;
}

    .NWinput :focus {
        outline: 0;
        background: transparent;
    }

.NWbutton {
    position: relative;
    float: right;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    width: 120px;
    color: #fff;
    /*background: transparent;*/
    background: rgba(255,102,0,1);
    border-left: 1px solid #fff;
    border-radius: 0 3px 3px 0;
    font-weight: 700;
    font-size: 1.5rem;
}

    .NWbutton:hover {
        background: #fff;
        color: #444;
    }

    .NWbutton:active {
        box-shadow: 0px 0px 12px 0px rgba(225, 225, 225, 1);
    }

&:focus {
    outline: 0;
}

}
}

input::-webkit-input-placeholder {
    color: #FFF !important;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #FFF !important;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #FFF !important;
}

input:-ms-input-placeholder {
    color: #FFF !important;
}
/*.. 666666666666666666666666666666666666666666666666666666666666 */

.easy-autocomplete-container {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
    color: rgba(0,0,0,1)
}

    .easy-autocomplete-container ul {
        background: none repeat scroll 0 0 #ffffff;
        border-top: 1px dotted #ccc;
        display: none;
        margin-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        position: relative;
        top: 40px;
    }

        .easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
            background: inherit;
            border-color: #ccc;
            border-image: none;
            border-style: solid;
            border-width: 0 1px;
            display: block;
            font-size: 14px;
            font-weight: normal;
            padding: 4px 12px;
        }

            .easy-autocomplete-container ul li:last-child {
                border-radius: 0 0 2px 2px;
                border-width: 0 1px 1px;
            }

            .easy-autocomplete-container ul li.selected {
                background: none repeat scroll 0 0 #ebebeb;
                cursor: pointer;
            }

                .easy-autocomplete-container ul li.selected div {
                    font-weight: normal;
                }

            .easy-autocomplete-container ul li div {
                display: block;
                font-weight: normal;
                word-break: break-all;
                color: rgba(0,0,0,1);
            }

            .easy-autocomplete-container ul li a:link {
                color: rgba(0,0,0,1);
                text-decoration: none;
            }

            .easy-autocomplete-container ul li a:visited {
                color: rgba(0,0,0,1);
                text-decoration: none;
            }

            .easy-autocomplete-container ul li b {
                font-weight: bold;
            }

            .easy-autocomplete-container ul li span {
                font-style: italic;
                color: #808080;
            }

        .easy-autocomplete-container ul .eac-category {
            color: #aaa;
            font-style: italic;
        }


/******************************************************************************************/
/* ================================= Search Box ================================ */

.search {
    border: 2px solid #CF5C3F;
    overflow: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

    .search input[type="text"] {
        border: 0px;
        width: 67%;
        padding: 10px 10px;
    }

        .search input[type="text"]:focus {
            outline: 0;
        }

    .search input[type="submit"] {
        border: 0px;
        background: none;
        background-color: #CF5C3F;
        color: #fff;
        float: right;
        padding: 10px;
        border-radius-top-right: 5px;
        -moz-border-radius-top-right: 5px;
        -webkit-border-radius-top-right: 5px;
        border-radius-bottom-right: 5px;
        -moz-border-radius-bottom-right: 5px;
        -webkit-border-radius-bottom-right: 5px;
        cursor: pointer;
    }

/* ================================ Medua Query for Search Box ================================ */

@media only screen and (min-width : 150px) and (max-width : 780px) {

{
}

.search {
    width: 95%;
    margin: 0 auto;
}

}


/* #### RESPONSIVE ################################################################################## */


@media (max-width:960px) {
    .NWinput {
        width: 80%;
        font-size: 1.2rem;
    }

    .NWbutton {
        width: 18%;
    }

    .SliderTopLightC {
        display: none;
    }
}
    @media (max-width:800px) {
        .NWsearch {
            width: 93%;
        }

        .header-wrap {
            padding-top: 55px !important;
        }

        .NWinput {
            width: 85%;
            font-size: 1.2rem;
        }

        .NWbutton {
            width: 14%;
        }
    }

    @media (max-width: 710px) {


        .results-container-n .square {
            flex-basis: 30%;
            display: flex;
            flex-direction: column;
        }

        .head-results h1 {
            font-size: 1.0em;
            line-height: 1.1em;
        }

        .head-results .head-results-image {
            display: none;
        }

        .NWinput {
            width: 90%;
            font-size: 1rem;
        }

        .NWbutton {
            width: 18%;
        }
    }

    @media (max-width: 560px) {

        .NWsearch {
            width: 93%;
        }


        .NWinput {
            width: 80%;
            font-size: 1rem;
        }

        .NWbutton {
            width: 18%;
        }
    }


    @media (max-width: 320px) {
        .NWsearch {
            width: 93%;
        }

        .NWinput {
            width: 88%;
            font-size: 0.8rem;
        }

        .NWbutton {
            width: 18%;
        }

        .results-container-n .square {
            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: 46%;
            display: flex;
        }

        .head-results h1 {
            font-size: 1.25em;
            line-height: 1.4em;
        }

        .head-results .head-results-image {
            display: none;
        }
    }

    /* --- FINE NuovaRicerca e pagina risultato ricerca -------------------------------------------------------*/

    @media (max-width: 1200px) {
        .SliderTopLightC {
            display: none;
        }
        .header-wrap {
            display: none;
        }       
}
    