@charset "utf-8";
@font-face {
	font-display: auto;
	font-family: 'BunueloCleanPro-Regular';
	src: url('MyFontsWebfontsKit/webfonts/327C51_3_0.ttf');
}
/*
/* 
 * HTML5 ✰ Boilerplate
 *
 * Quanto segue è il risultato di un esteso lavoro di ricerca sugli stili cross-browser. 
 * I riconoscimenti sono stati lasciati inline e un grosso grazie va a Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen e la comunità e il team di sviluppo H5BP.
 *
 * Informazioni dettagliate su questo CSS: h5bp.com/css
 * 
 * Modifiche in Dreamweaver:
 * 1. Evidenziazione selezione rimossa tramite commento
 * 2. Sezione media query rimossa (abbiamo aggiunto la nostra in un file separato)
 *
 * ==|== normalizzazione ==========================================================
 */


/* =============================================================================
   Definizioni visualizzazione HTML5
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}
audio, canvas, video {
	display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
	display: none;
}
[hidden] {
display: none;
}
/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corretto il ridimensionamento non corretto del testo in IE6/7 quando la dimensione carattere del corpo è impostata con unità em
 * 2. Barra di scorrimento verticale forzata nei browser non IE
 * 3. Impedito il ridimensionamento del testo in iOS dopo un cambio di orientamento del dispositivo, senza disabilitare lo zoom utente: h5bp.com/g
 */

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
@media (prefers-reduced-motion:no-preference) {
    html {
        scroll-behavior: smooth
    }
}
body {
	margin: 0;
	font-size: 19px;
	line-height: 1.331;
	font-family: 'BunueloCleanPro-Regular';
}
body, button, input, select, textarea {
	font-family: 'BunueloCleanPro-Regular';
	color: #222;
}
/* 
 * Rimossa ombreggiatura testo in evidenziazione selezione: h5bp.com/i
 * Queste dichiarazioni di selezione devono essere separate
 * Inoltre: rosa acceso! (oppure potete personalizzare il colore di sfondo in base al vostro stile di design)
 */

/* Dreamweaver: rimuovete i commenti se volete personalizzare l'evidenziazione della selezione
 *::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
 *::selection { background: #fe57a1; color: #fff; text-shadow: none; }
 */

/* =============================================================================
   Collegamenti
   ========================================================================== */

a {
	color: #333;
	  opacity: 1;                  /* Opacità iniziale */
  transition: opacity 0.3s;    /* Durata transizione */
}
a:visited {
	color: #333;
}
a:hover {
	color: #e30613;
	 opacity: 0.6;                /* Opacità quando è in hover */
}
a:focus {
	outline: thin dotted;
}
/* Leggibilità migliorata in caso di attivazione e hover in tutti i browser: h5bp.com/h */
a:hover, a:active {
	outline: 0;
}
/* =============================================================================
   Composizione tipografica
   ========================================================================== */

abbr[title] {
	border-bottom: 1px dotted;
}
b, strong {
	font-weight: bold;
}
blockquote {
	margin: 1em 40px;
}
dfn {
	font-style: italic;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
ins {
	background: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background: #ff0;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
/* Famiglia di caratteri monospace ridichiarata: h5bp.com/j */
pre, code, kbd, samp {
	font-family: monospace, monospace;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}
/* Leggibilità migliorata del testo preformattato in tutti i browser */
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
q {
	quotes: none;
}
q:before, q:after {
	content: "";
	content: none;
}
small {
	font-size: 85%;
}
/* Posizionamento dei contenuti in pedice e apice senza alterare l'altezza della riga: h5bp.com/k */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
/* =============================================================================
   Elenchi
   ========================================================================== */

ul, ol {
	margin: 1em 0;
	padding: 0 0 0 40px;
}
dd {
	margin: 0 0 0 40px;
}
nav ul, nav ol {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
/* =============================================================================
   Contenuto incorporato
   ========================================================================== */

/*
 * 1. Qualità immagine migliorata in caso di ridimensionamento in IE7: h5bp.com/d
 * 2. Rimossa la distanza tra immagini e bordi nei contenitori di immagini: h5bp.com/e 
 */

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}
/*
 * Corretto riversamento non nascosto in IE9 
 */

svg:not(:root) {
	overflow: hidden;
}
/* =============================================================================
   Figure
   ========================================================================== */

figure {
	margin: 0;
}
/* =============================================================================
   Moduli
   ========================================================================== */

form {
	margin: 0;
}
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}
/* Indica che 'label' passerà lo stato di attivazione all'elemento modulo associato */
label {
	cursor: pointer;
}
/* 
 * 1. Risolto problema colore non ereditato in IE6/7/8/9 
 * 2. Risolto problema allineamento non visualizzato esattamente in IE6/7 
 */

legend {
	border: 0;
*margin-left: -7px;
	padding: 0;
}
/*
 * 1. Risolto problema dimensione carattere non ereditata in tutti i browser
 * 2. Margini rimossi in FF3/4 S5 Chrome
 * 3. Definita visualizzazione uniforme dell'allineamento verticale in tutti i browser
 */

button, input, select, textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
*vertical-align: middle;
}
/*
 * 1. Altezza riga definita come normale per corrispondere a FF3/4 (impostata mediante !important nel foglio di stile UA)
 * 2. Risolto problema allineamento non visualizzato correttamente in IE6/7
 */

button, input {
	line-height: normal;
*overflow: visible;
}
/*
 * Reintrodotta spaziatura interna in 'table' per evitare problemi di sovrapposizione e spazio vuoto in IE6/7
 */

table button, table input {
*overflow: auto;
}
/*
 * 1. Cursore a forma di mano visualizzato per elementi modulo cliccabili
 * 2. Consentita l'applicazione di stili agli elementi modulo cliccabili in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}
/*
 * Ridimensionamento e aspetto uniformi delle caselle 
 */

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}

/* 
 * Rimossa spaziatura interna e bordo in FF3/4: h5bp.com/l 
 */

button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* 
 * 1. Rimossa barra di scorrimento verticale predefinita in IE6/7/8/9 
 * 2. Consentito solo ridimensionamento verticale
 */

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

/* Colori per validità modulo */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
background-color: #f0dddd;
}
/* =============================================================================
   Tabelle
   ========================================================================== */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
td {
	vertical-align: top;
}
/* ==|== stili principali =====================================================
   Autore: 
   ========================================================================== */
















/* ==|== classi helper non semantiche ========================================
   Definite i vostri stili prima di questa sezione.
   ========================================================================== */

/* Per sostituzione immagini */
.ir {
	display: block;
	border: 0;
	text-indent: -999em;
	overflow: hidden;
	background-color: transparent;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}
.ir br {
	display: none;
}
/* Nascondere sia negli screen reader che nei browser: h5bp.com/u */
.hidden {
	display: none !important;
	visibility: hidden;
}
/* Nascondere solo visivamente, mantenendo la disponibilità negli screen reader: h5bp.com/v */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/* Estende la classe .visuallyhidden per consentire all'elemento di ricevere lo stato di attivazione se raggiunto tramite tastiera: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
/* Nascondere visivamente e anche negli screen reader, mantenendo il layout */
.invisible {
	visibility: hidden;
}
/* Con contenuto float: h5bp.com/q */ 
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}


/* ==|== stampa stili =======================================================
   Stampa stili.
   Inserimento in linea per evitare la necessità di una connessione HTTP: h5bp.com/r
   ========================================================================== */
 
 @media print {
* {
	background: transparent !important;
	color: black !important;
	text-shadow: none !important;
	filter: none !important;
	-ms-filter: none !important;
} /* Stampa più veloce del nero: h5bp.com/s */
a, a:visited {
	text-decoration: underline;
}
a[href]:after {
	content: " (" attr(href) ")";
}
abbr[title]:after {
	content: " (" attr(title) ")";
}
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
	content: "";
}  /* Collegamenti non visualizzati per le immagini, o collegamenti javascript/interni */
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
thead {
	display: table-header-group;
} /* h5bp.com/t */
tr, img {
	page-break-inside: avoid;
}
img {
	max-width: 100% !important;
}
 @page {
margin: 0.5cm;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}
}
address{
	font-style: normal;
}
h1, ul.menu_pop li {
	text-transform: uppercase;
	margin: 0px;
	padding: 0px;
}
h2 {
	font-weight: 300;
	margin: 0px;
	padding: 0px;
}
.div_leggenda h3, .gridContainer.clearfix .div_contenuti .all_par_center h1 {
	font-size: 200%;
	text-transform: uppercase;
}
.all_s, .col_2_n.all_s {
	text-align: left;
}
.all_d, .col_2_n.all_d {
	text-align: right;
}
.all_c, .col_2.all_c {
	text-align: center;
}
all_center
.div_sez_2 {
	/*background-color: red;
	background: url(../images/sfondo/1200x800.jpg);
	background-repeat: no-repeat;
	background-size: 50% 100%;*/
	text-align: center;
	position: relative;
}
.div_sez_2.img_r {
	/*background-color: red;
	background: url(../images/sfondo/1200x800.jpg);
	background-repeat: no-repeat;
	background-size: 50% 100%;
	background-position: right;*/
	text-align: center;
}
.div_sez_2 .div_col_2 {
	min-height: 800px;
}
.div_col_2 {
	display: grid;
	align-items: center;
	grid-column-end: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.col_2_n {
	padding: 20px;
	/*background-color: rgba(204,204,204,0.2);*/
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.col_2_n.immagine_sfondo {
	/*background-color: red;*/
	height: 100%!important;
}
.div_sez_1 .col_1 {
	position: relative;
}
.allinea_testo {
	position: absolute;
	bottom: 20px;
	padding: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	color: #FFF;
	-moz-text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	-webkit-text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	z-index: 1;
}
.div_grigio.div_sagoma.no_margine_top {
	margin-top: 0px;
}
.div_grigio.div_sagoma {
	clip-path: polygon(71% 0, 100% 46%, 100% 100%, 0 100%, 0 59%);
	padding-top: 150px;
	margin-top: -30px;
}
.div_grigio.div_sagoma.ruota {
	transform: rotate(180deg);
}
.div_grigio, #tabs li {
	background-color: #F2F2F2;
}
#tabs .ui-tabs-nav li {
	background-color: rgba(204,204,204,0.3)
}
.div_luoghi, .div_luoghi_int .div_contenitore {
	text-align: center;
}
.div_luoghi_int:before {
	/*margin-top: -80px;*/
	z-index: 10;
}
.div_col_3 {
	display: grid;
	align-items: center;
	grid-column-end: 1;
}
.div_col_4 {
	display: grid;
	align-items: center;
	grid-column-end: 1;
}
.col_3, .col_4 {
	padding: 20px;
	/*background-color: rgba(204,204,204,0.2);*/
	text-align: left;
}
.col_3 img {
	/*border: 1px rgba(0,0,0,0.2) solid;*/
	margin: 0px 0px 20px 0px;
}
.div_luoghi .col_3 img {
	/*border: 1px rgba(0,0,0,0.2) solid;*/
	margin: 0px 0px 30px 0px;
	/*border: 1px solid #000;*/
	padding-bottom: 0px;
}
.col_3 .img_box {
	position: relative;
}
.col_3 .img_box::after {
	display: inline-block;
	width: 180px;
	height: 80px;
	background-size: 100%;
	background-image: url(../images/sfondo/img_linee_localita.svg);
	background-repeat: no-repeat;
	content: '';
	position: absolute;
	z-index: 2;
	bottom: 10%;
	right: 0px;
}
.col_3 .div_pul, .div_grigio .div_pul, #tabs .div_pul, .div_pul {
	text-align: right;
	text-transform: uppercase;
	font-size: 120%;
	font-weight: 600;
}
.col_3 .div_pul a, .div_grigio .div_pul a, #tabs .div_pul a {
	color: #000;
	text-decoration: none;
}
.col_3 .div_pul a:before, .div_grigio .div_pul a:before, #tabs .div_pul a:before, #tabs .allinea_testo .div_pul:before, .div_pul a:before {
	content: '';
	background-size: 100%;
	background-image: url(../images/sfondo/icona_pulsante.svg);
	background-repeat: no-repeat;
	display: inline-block;
	width: 40px;
	height: 25px;
	margin: 0px 10px 0px 0px;
}
.div_luoghi .col_3 h1 {
	font-size: 30px;
	text-align: left;
	position: absolute;
	bottom: 0%;
	z-index: 5;
	transform: rotate(-90deg) translateX(250px) translateY(160px);
	right: 90px;
	width: 200px;
	color: #FFF;
	-moz-text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	-webkit-text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
}
.div_luoghi .col_3 h2 {
	font-size: 30px;
	text-align: right;
	text-transform: uppercase;
	font-weight: 600;
}
.div_barra_fissa .div_icona_f {
	position: relative;
	background-color: rgba(242,242,242,0.7);
	padding: 10px;
	border-radius: 50%;
	margin: 5px 2px 10px 2px;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(0,0,0,0.1);
	display: inline-grid;
}
.div_barra_fissa .div_icona_f p {
	font-size: 50%;
	text-transform: uppercase;
	transform: rotate(90deg);
	position: absolute;
	width: 100%;
	right: -35px;
	top: 20px;
	padding: 0px;
	margin: 0px;
	color: #000;
	text-align: center;
	-moz-text-shadow: 1px 1px 2px rgba(255,255,255, 1), 0 0 25px rgba(255,255,255, 1), 0 0 5px rgba(255,255,255, 1);
	-webkit-text-shadow: 1px 1px 2px rgba(255,255,255, 1), 0 0 25px rgba(255,255,255, 1), 0 0 5px rgba(255,255,255, 1);
	text-shadow: 1px 1px 2px rgba(255,255,255, 1), 0 0 25px rgba(255,255,255, 1), 0 0 5px rgba(255,255,255, 1);
}
.div_testata {
	background-color: #EEE;/*height: 100vh;*/
}
.div_testata .div_social {
	width: 105px;
	padding-top: 350px;
	position: absolute;
	height: 50vh;
	z-index: 9;
}
.div_testata .div_social hr {
	transform: rotate(90deg);
	width: 400px;
	border-top: 1px solid #FFF;
	padding: 0px 0px;
	margin-left: -148px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index:10;
	position:absolute;
}
.div_testata .div_social .div_icone_social {
	width: 105px;
	position: absolute;
	bottom: 10%;
}
.div_testata .div_social .div_icone_social img {
	width: 30px;
	display: block;
	margin: auto;
	padding: 10px 0px;
}
.div_testata .div_menu_i {
	background-color: #FFF!important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*width: 105px;
	height: 105px;*/
	z-index: 100;
	position: absolute;
}
.div_menu .col_2_n.menu_s::after {
	content: " ";
	position: absolute;
	/*bottom: 10%;*/
	left: 0;
	/*width: 400px;
	height: 200px;*/
	background: url(../images/sfondo/img_linee_trek_tour.svg);
	background-repeat: no-repeat;
	background-size: 50% 100%;/*border: 1px solid red;*/
	z-index: 5;
}
#mySidenav .div_contenitore {
	width: 100%!important;
	padding: 0px!important;
	margin: 0px!important;
}

.div_menu .div_menu_chiudi {
	/*-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;*/
	width: 105px;
}
.div_menu .barra_menu_top {
	/*background-color: red;
	grid-template-columns: 105px 105px 105px 105px 105px 105px 105px;*/
	display: grid;
	align-items: center;
	text-align: center;
	grid-column-end: 1;
}
.div_menu .barra_menu_top .div_icona_f .icona {
	background-color: #F2F2F2;
	width: 30px;
	padding: 10px;
	border-radius: 50px;
	height: 30px;
	margin: auto;
}
.div_menu .barra_menu_top .div_icona_f p {
	/*font-size: 70%;*/
	margin: 10px 0px 0px 0px;
	padding: 0px;
	text-transform: uppercase;
}
.div_menu .div_barra_menu_top {
	top: 0;
	right: 0;
	position: absolute;
}
.div_testata .div_menu_i img, .div_menu .div_menu_chiudi img {
/*padding: 35px;
	width: 35px;*/
}
.div_testata .logo_v {
	position: absolute;/*top: 5%;*/
}
.div_testata .logo_o {
	float: right;
	/*width: 200px;*/
	margin: 10px 2.5% 10px 0px;
}
.div_testata .logo_v, .div_testata .logo_o {
	right: 2.5%;
}
.div_testata.sfondo_b {
	background-color: #FFF;
}
.div_testata .div_social .div_icone_social, .div_testata .logo_v {
	z-index: 10;/*background-color: #FC0;*/
}
.div_col_social {
	margin: 25px 0px 0px 0px;
}
.div_footer a {
	/*background-color: red;*/
	text-decoration: none;
	color: #000;
}
.div_footer .col_2_n.all_s h1 {
	/*font-size: 230%;*/
	margin-top: 30px;
}
.div_footer .col_2_n.all_s img.logo_of {
	max-width: 200px;
}
.div_footer .col_2_n.all_d ul {
	border-top: solid 1px #CCC;
	float: right;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}
.div_footer .col_2_n.all_d ul li {
	display: inline;
}
.div_footer .col_2_n.all_d ul li::before {
	content: ' · ';
}
.div_footer .col_2_n.all_d .img_logo_d {
	max-width: 200px;
}
.div_footer .col_2_n.all_d ul li:first-child::before {
	display: none;
}
.div_footer .div_icone_social_f img {
	background-color: #e30613;
	width: 25px;
	padding: 5px;
	border-radius: 50%;
}
.div_footer .div_subfooter {
	border-top: solid 1px #CCC;
	margin-bottom: 80px;
}
.div_footer .div_subfooter ul {
	margin: 10px 0px;
	padding: 0px;
	display: inline-block;
}
.div_footer .div_subfooter ul li {
	display: inline-block;
	border-left: 1px solid #000;
	padding: 0px 0px 0px 5px;
	font-size: 70%;
}
.div_footer .div_subfooter ul li:first-child {
	border-left: 0px solid #000;
	padding: 0px;
}
.div_footer .div_subfooter .div_copy {
	margin: 10px 0px 0px 0px;
}
.div_luoghi_int .col_3 {
	background-color: rgba(255,255,255,0.5);
	margin: 10px;
}
.div_luoghi_int .col_3 h1 {
	font-size: 150%;
}
.div_luoghi_int .col_3 h2 {
	font-size: 120%;
}
.div_luoghi_int .col_3 h2:before {
	content: '';
	background-size: 100%;
	background-image: url(../images/sfondo/icona_luoghi.svg);
	background-repeat: no-repeat;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0px 10px 0px 0px;
}
.div_grigio.div_trektour_int:before, .div_luoghi_int:before, .div_evento_int:before, .div_grigio.div_intestazione:before {
	content: '';
	background-size: 100%;
	background-image: url(../images/sfondo/img_linee_trek_tour.svg);
	background-repeat: no-repeat;
	display: inline-block;
}
.div_grigio.div_trektour_int .div_pul, .div_grigio.div_intestazione .div_pul, #tabs .div_pul {
	/*width: 32%;*/
	text-align: center;
	display: inline-block;/*background-color: rgba(153,153,153,0.1);*/
}
.div_grigio.div_trektour_int .div_pul a, .div_grigio.div_intestazione .div_pul a, #tabs .div_pul a, .div_pul a {
	display: flex; /* Abilita il layout flessibile */
	justify-content: center; /* Centra orizzontalmente */
	align-items: center; /* Centra verticalmente */
}
.div_pul_comprensori {
	max-width: 800px;
	margin: 5% auto 5% auto;
}
.div_pul_i a:before {
	width: 80px;
	height: 80px;
	padding: 20px;
	background-color: #F2F2F2;
	content: " ";
	display: block;
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center;
	margin: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	margin-bottom: 10px;
	position: absolute;
	margin-top: -100px;
}
.div_pul_i.uno a:before {
	background-image: url(../images/sfondo/webcam.svg);
}
.div_pul_i.due a:before {
	background-image: url(../images/sfondo/sito.svg);
}
.div_pul_i.tre a:before {
	background-image: url(../images/sfondo/funivia.svg);
}
.div_pul_i.quattro a:before {
	background-image: url(../images/sfondo/prezzi.svg);
}
.div_pul_comprensori.all_4 .div_pul_i {
	width: 32%;
}
.div_pul_i {
	width: 23%;
	text-align: center;
	display: inline-block;/*background-color: rgba(153,153,153,0.1);*/
	text-transform: uppercase;
	margin-top: 100px;
}
.div_pul_i a {
	display: flex; /* Abilita il layout flessibile */
	justify-content: center; /* Centra orizzontalmente */
	align-items: center; /* Centra verticalmente */
}
.div_grigio.div_trektour_int .div_pul a:before, .div_grigio.div_intestazione .div_pul a:before, #tabs .div_pul a:before, #tabs .allinea_testo .div_pul:before, .div_pul a:before {
	width: 60px;
	height: 40px;
	background-position: bottom;
}
.div_cerchio {
	border-radius: 50%;
	border: 1px #000 solid;
	background-color: #FFF;
	padding: 5px;
}
.div_evento {
	display: grid;
	align-items: center;
	grid-column-end: 1;/*border-bottom: 1px #CCC solid;*/
}
.div_evento .div_data {
	/*background-color: #CCC;*/
	margin-top: 20px;
}
.div_evento .div_data strong {
	font-size: 420%;
	font-weight: 600;
}
.div_evento .div_data p {
	display: inline-table;
	line-height: 20px!important;
	text-align: center;
	font-size: 75%;
	padding: 0px;
	margin: 0px;
}
.div_evento .div_data:before {
	content: '';
	background-size: 100%;
	background-image: url(../images/sfondo/icona_luoghi.svg);
	background-repeat: no-repeat;
	width: 15px;
	height: 15px;
	margin: 0px 2px 0px 0px;
	display: inline-table;
}
.div_evento .div_info {
	text-align: left;
	padding: 0px 20px;
}
.div_evento .div_info a {
	text-transform: uppercase;
}
.div_evento .div_info .div_ora {
	color: rgba(0,0,0,0.7);
}
.div_evento .div_info {
	font-size: 90%;
}
.div_evento .div_info h1 {
	font-size: 110%;
}
.div_evento .div_info p {
	margin: 0px;
	padding: 0px;
	text-align: left;
}
.div_menu {
	/*background: rgb(242,242,242);
	background: linear-gradient(90deg, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 30%, rgba(255,255,255,1) 70%);*/
	height: 100vh;
	width: 0;
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	overflow-x: hidden;
	transition: 0.5s;
	text-align: center;
}
.div_menu .logo_of {
	width: 70%;
	max-width: 200px;
}
.div_menu .menu_s {
	position: relative;/*height: 100vh;
	background-color: red;*/
}
.div_menu .div_superiore .all_logo {
	text-align: left;
}
.div_menu .div_poligono {
	/*transform: rotate(90deg);*/
	clip-path: polygon(60% 0, 100% 70%, 60% 100%, 0 100%, 0% 60%, 0 0);
	background-color: #F2F2F2;
	height: 100vh;
	width: 200px;
	position: absolute;
	right: -50px;
	z-index: 0;
	top: 0;
}
.div_menu .col_2_n.menu_s {
/*clip-path: polygon(0% 0%, 75% 0%, 100% 65%, 75% 100%, 0% 100%);*/
}
.div_menu ul.div_lingue {
	text-align: right;
}
.div_menu ul.div_lingue ul {
	margin: 0px;
	padding: 0px;
}
.div_menu ul.div_lingue li {
	display: inline-block;
	text-transform: uppercase;
	border-left: 1px #222 solid;
	padding-left: 5px;
}
.div_menu ul.div_lingue li:first-child {
	border-left: 0px #222 solid;
}
.div_menu ul li {
	list-style-type: none;
}
.div_menu .col_2_n.all_d ul li::after {
	/*background-color: red;*/
	background-image: url(../images/sfondo/icona_pulsante_menu.svg);
	background-repeat: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	content: " ";
	width: 50px;
	height: 20px;
	top: 10px;
	right: 5px;
	display: inline-table;
	margin-left: 0px;
}
.div_menu .col_2_n.all_d ul a {
	/*background-color: #FF0;*/
	display: grid;
	align-items: center;
	justify-content: right;/*margin: 20px 0px;
	line-height: 20px;
	font-size: 22px;*/
}
.div_menu .col_2_n.all_d ul span {
	padding: 5px 0px;
}
.div_menu .col_2_n.all_d ul li {
	text-transform: uppercase;
	font-weight: bold;
}
.div_menu ul.menu_pop li {
	font-weight: bold;
	text-align: left;
}
.div_leggenda .filtri_trek_tour_panorama .ui-button {
	padding: 15px;
	font-size: 100%!important;
	border-radius: 30px;
	margin: 10px 0px;
}
.gridContainer.clearfix .div_leggenda .div_contenitore .ui-button {
	border: 1px solid #F2F2F2;
	background: #F2F2F2;
	font-weight: normal;
	color: #222;
	border: 10px;
}
.gridContainer.clearfix .div_leggenda .div_contenitore .ui-state-active, .gridContainer.clearfix .div_leggenda .div_contenitore .ui-button.ui-state-active:hover {
	border: 1px solid #e30613;
	background: #e30613!important;
	font-weight: normal;
	color: #ffffff;
}
.gridContainer.clearfix .div_leggenda .div_contenitore .mini {
	cursor: pointer!important;
	font-style: italic;
}
.gridContainer.clearfix .div_leggenda .div_contenitore .mini.ui-state-active, .gridContainer.clearfix .div_leggenda .div_contenitore .mini.ui-button.ui-state-active:hover {
	border: 0px solid #e30613;
	background: #FFF!important;
	font-weight: normal;
	color: #222;
}
.gridContainer.clearfix .div_leggenda .div_contenitore .ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.gridContainer.clearfix .div_contenuti .all_par_center {
	margin: 30px 0px;
	border-bottom: 1px #CCC solid;
	padding: 0px 0px 30px 0px;
}
#wowslider-container1 .div_sfuna_t, #wowslider-container2 .div_sfuna_t {
	background: rgba(0, 0, 0, 10);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	height: 500px;
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 6;
}
#wowslider-container1, #wowslider-container2 {
	opacity: 0;
	visibility: hidden;
}
.swiper {
	width: 100%;
	padding: 30px 0;
	margin: 5% 0%;
}
.swiper-slide {
	/*background: #f9f9f9;*/
	padding: 0px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.swiper-button-next, .swiper-button-prev {
	color: #222!important;
	background-color: rgba(255,255,255,0.5);
	padding: 10px;
	width: 50px!important;
	height: 50px!important;
	border-radius: 50px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 0px)!important;
}
.swiper-slide img {
	padding-bottom: 50px;
}
.swiper-pagination-bullet-active {
	background: #e30613!important;
}
#tabs {
	padding: 0px 0px;
}
#tabs ul {
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#tabs li {
	margin: 5px;
	padding: 15px 20px;
	list-style-type: none;
	/*display: inline;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 30px;
	text-transform: uppercase;/*font-weight: 600;*/
}
#tabs li.ui-state-active {
	background-color: #e30613;
	color: #FFF!important;
}
#tabs li.ui-state-active a {
	color: #FFF!important;
	width: 100%;
	display: block;
}
.gridContainer.clearfix .div_contenitore .testo_mini {
	cursor: pointer !important;
	font-style: italic;
	font-size: 14px;
}
.calendar {
	width: 95%;
	max-width: 600px;
	margin: auto;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-top: 10px;
	gap: 5px;
}
.day {
	padding: 10px;
	text-align: center;
	cursor: pointer;
	background: #e9e9e9;
	border-radius: 5px;
	position: relative;
}
.day:hover {
	background: #d4d4d4;
}
.today {
	background-color: #ffcc00 !important;
}
.has-event::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background-color: #3c763d;
	border-radius: 50%;
	border: 0.5px solid #FFF;
}
.event-container {
	margin-top: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.event {
	/*background: #dff0d8;*/
	padding: 10px;
	border-left: 4px solid #3c763d;
	margin-bottom: 10px;
	border-radius: 3px;
}
.day.selected {
	background-color: #e30613;
	color: white;
	border-radius: 4px;
}
.logo_dolomiti {
	position: absolute;
	right: 0%;
	bottom: 10%;
	max-width: 260px!important;
}
.iframe_dolomiti {
	width: 100%;
	height: 1700px;
	border: 0px;
}
ul.elemento_elenco {
	text-align: center;
	padding: 50px 0px;
}
ul.elemento_elenco li a {
	background-color: #e30613;
	color: #FFF !important;
	margin: 5px;
	padding: 15px 20px;
	list-style-type: none;
	/* display: inline; */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 30px;
	text-transform: uppercase;/* font-weight: 600; */
}
.all_immagine img.cms-immagine-sinistra, .all_immagine img.cms-immagine-sinistra, .all_immagine img.cms-immagine-click {
	opacity: 0;
}
.all_immagine, .all_immagine img {
	/*border: 1px solid #000;*/
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.swiper-horizontal {
}
.col_2_n.immagine_sfondo {
	padding: 0px;
}
.col_1 .allinea_testo p {
	max-width: 900px;
	/*background-color: #0F0;*/
	margin: auto;
}
.div_evento_int h1.titolo-mini, .div_evento_int h1.titolo-mini, .col_1.immagine_sfondo h1.titolo-mini {
	/*background-color: red;*/
	font-size: 300%;
}
.div_news .col_1 {
	margin: 2%;
	position: relative;
}
.div_news .col_1 .news_testo {
	position: absolute;
	z-index: 1;
	font-size: 90%;
	bottom: 0;
	width: 100%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.div_news .col_1 .news_testo p {
	padding: 0px;
	margin: 0px;
	line-height: 1em;
	font-size: 90%;
}
/* Contenitore immagine */
.news_immagini {
	position: relative;
}
/* Immagine */
.news_immagini img {
	display: block;
	width: 100%;
	transition: 0.3s ease;
}
.div_news article {
	position: relative;
	display: inline-block;
}
/* Contenitore immagine */
.news_immagini {
	position: relative;
}
/* Immagine */
.news_immagini img {
	display: block;
	width: 100%;
	transition: 0.3s ease;
}
/* Overlay rosso */
.news_immagini::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(266,13,24,0.9);
	opacity: 0;
	transition: 0.3s ease;
}
/* 🔥 L’effetto ora è legato all’ARTICLE, non solo all’immagine */
.news_immagini article:hover .news_immagini::after {
	opacity: 1;
}
/* Testo nascosto */
.news_testo .div_contenuti_v {
	max-height: 0;       /* chiuso */
	overflow: hidden;    /* nasconde il contenuto */
	transition: max-height 1s ease,     /* prima era 0.5s */ opacity 0.8s ease 0.2s; /* prima era 0.4s */
	pointer-events: none; /* evita problemi con hover */
}
/* 🔥 Il testo appare quando si passa sopra l’ARTICLE */
.news_immagini article:hover .news_testo .div_contenuti_v {
	max-height: 500px;   /* valore sufficiente a contenere il testo */
	opacity: 1;
	pointer-events: auto;
}
.div_news .col_1 .news_testo p, .div_news .col_1 .news_testo h1 {
	color: #FFF;
	-moz-text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	-webkit-text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 1);
}
#tabs .ui-tabs-panel li, #tabs .col_2 li {
	display: list-item;
	text-align: -webkit-match-parent;
	unicode-bidi: isolate;
	text-align: left;
	padding: 0px 0px 0px 5px;
	margin: 0px 0px 0px 30px;
	background-color: transparent;
}
#tabs ul li::marker, #tabs .col_2 ul li::marker, .stili_elenco li::marker, .div_dettaglio_evento .col_2_n li::marker {
	content: url("../images/sfondo/icona_luoghi_m.png")!important;
	color: pink;
	font-size: 25px;
}
.stili_elenco li.all_menu_s{
	margin-left: 20px;
}	
.stili_elenco li,.div_dettaglio_evento .col_2_n li {
	padding-left: 10px;
}
.col_2 ol li {
	display: list-item;
}
/* CSS per il layout del contenitore */
.div_contenitore.slider .div_col_3 {
	width: 100%;
}
.div_contenitore.slider .col_3 {
	display: block;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
/* CSS per nascondere gli altri box e visualizzarne uno alla volta nello slider */
.div_contenitore.slider .slick-slide {
	display: flex;
	justify-content: center;
}
#tabs .allinea_testo .div_pul a {
	color: #FFF;
}
#tabs .allinea_testo .div_pul:before {
	background-image: url(../images/sfondo/icona_pulsante_b.svg);
	margin-top: 0px;
	position: relative;
	bottom: -10px;
}
@media screen and (max-width: 768px) {
	.div_contenitore.slider .div_col_3 {
		width: 100%;
	}
	.div_contenitore.slider .col_3 {
		margin: 0 10px;
	}
}
#tabs .div_luoghi .col_3 .div_pul a {
	justify-content: right;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #e30613!important;
}
.swiper.swiper-skitour {
	margin: 0px;
}
.swiper.swiper-skitour .swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	height: var(--swiper-pagination-progressbar-size, 10px)!important;
}
.div_intestazione.div_grigio, .div_trektour_int.div_grigio {
	padding-bottom: 30px;
}
.div_grigio.div_sagoma.margine_top {
	margin-top: 100px;
}
/*------------------------ CSS METEO ------------------------*/
/*------------------------ CSS METEO ------------------------*/
/*------------------------ CSS METEO ------------------------*/
/*------------------------ CSS METEO ------------------------*/
#div_meteo.lingua_meteo .altezza_descrizione.no_lingua {
	display: none !important;
}
#div_meteo.lingua_meteo.it .altezza_descrizione.no_lingua {
	display: block !important;
}
#div_meteo .testo_mini {
	font-size: 70%;
	text-align: right;
}
#div_meteo .testo_mini img {
	display: none;
}
#div_meteo .col_3 img {
	width: auto;
}
#div_meteo .col_3 {
	padding: 0px;
}
#div_meteo .testo_mini a {
	color: #000;
	text-decoration: none;
}
#tabs_meteo {
	font-size: 80%;
}
#tabs_meteo.ui-tabs .ui-tabs-panel {
	padding: 0px;
	margin: 0px;
}
#tabs_meteo .ui-widget-header {
	border: none;
}
#tabs_meteo.ui-tabs .ui-tabs-nav {
	padding: 0px;
}
#tabs_meteo.ui-tabs .ui-tabs-nav li {
	white-space: normal;
	list-style-type: none;
}
#tabs_meteo ul {
	margin: 0px;
	padding: 0px;
}
#tabs_meteo ul li {
	width: 33.3%;
	text-align: center;
	font-size: 90%;
	display: inline-table;
	margin: 0px !important;
}
#tabs_meteo.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	border: 1px solid #f2f2f2;
	padding: 10px;
}
#tabs_meteo.ui-tabs .ui-tabs-nav li {
	margin: 0px;
	border: none;
}
#tabs_meteo.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	padding: 0px;
}
#tabs_meteo .col_intestazione {
	width: 20%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#tabs_meteo .col_contenuti {
	width: 100%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#tabs_meteo .col_intestazione {
	display: none;
}
#tabs_meteo .box_temperatura.min {
	background-color: #0080ff;
}
#tabs_meteo .box_temperatura.max {
	background-color: #cc0000;
}
#tabs_meteo .col_contenuti .col_2:nth-child(2n+1), #tabs_meteo .col_contenuti .col_3:nth-child(2n+1), #tabs_meteo .col_contenuti .col_4:nth-child(2n+1), #tabs_meteo .col_contenuti .col_5:nth-child(2n+1) {
	background-color: #fcfcfc;
}
#tabs_meteo .col_2, #tabs_meteo .col_3, #tabs_meteo .col_4, #tabs_meteo .col_5 {
	float: left;
	text-align: center;
}
#tabs_meteo .col_2 {
	width: 50%;
}
#tabs_meteo .col_3 {
	width: 33.3%;
}
#tabs_meteo .col_4 {
	width: 25%;
}
#tabs_meteo .col_5 {
	width: 20%;
}
#tabs_meteo .colore {
	background-color: #f2f2f2;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 100%;/*color: #FFF;*/
}
#tabs_meteo .data_big {
	font-size: 140%;
}
#tabs_meteo .bordi_tondi {
	border-radius: 5px;
	padding: 5px;
	font-size: 80%;
	font-weight: bold;
}
#tabs_meteo .div_barra {
	padding: 10px;
	text-align: left;
}
#tabs_meteo .all_left {
	text-align: left;
	padding: 0px 10px 0px 10px;
}
#tabs_meteo .percentuale {
	width: 80%;
	border: solid 1px #ff8040;
	display: inline-table;
	height: 12px;
	max-width: 80px;
}
#tabs_meteo .percentuale.barra_0 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff8040+1,000000+20,ffffff+20,ffffff+20 */
	background: #ff8040; /* Old browsers */
	background: -moz-linear-gradient(left, #ff8040 1%, #ff8040 16.6%, #ffffff 16.6%, #ffffff 16.6%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff8040 1%, #ff8040 16.6%, #ffffff 16.6%, #ffffff 16.6%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff8040 1%, #ff8040 16.6%, #ffffff 16.6%, #ffffff 16.6%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8040', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.barra_1 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff8040+1,000000+20,ffffff+20,ffffff+20 */
	background: #ff8040; /* Old browsers */
	background: -moz-linear-gradient(left, #ff8040 1%, #ff8040 33.3%, #ffffff 33.3%, #ffffff 33.3%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff8040 1%, #ff8040 33.3%, #ffffff 33.3%, #ffffff 33.3%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff8040 1%, #ff8040 33.3%, #ffffff 33.3%, #ffffff 33.3%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8040', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.barra_2 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff8040+1,000000+20,ffffff+20,ffffff+20 */
	background: #ff8040; /* Old browsers */
	background: -moz-linear-gradient(left, #ff8040 1%, #ff8040 50%, #ffffff 50%, #ffffff 50%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff8040 1%, #ff8040 50%, #ffffff 50%, #ffffff 50%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff8040 1%, #ff8040 50%, #ffffff 50%, #ffffff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8040', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.barra_3 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff8040+1,000000+20,ffffff+20,ffffff+20 */
	background: #ff8040; /* Old browsers */
	background: -moz-linear-gradient(left, #ff8040 1%, #ff8040 66.6%, #ffffff 66.6%, #ffffff 66.6%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff8040 1%, #ff8040 66.6%, #ffffff 66.6%, #ffffff 66.6%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff8040 1%, #ff8040 66.6%, #ffffff 66.6%, #ffffff 66.6%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8040', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.barra_4 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff8040+1,000000+20,ffffff+20,ffffff+20 */
	background: #ff8040; /* Old browsers */
	background: -moz-linear-gradient(left, #ff8040 1%, #ff8040 83.3%, #ffffff 83.3%, #ffffff 83.3%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff8040 1%, #ff8040 83.3%, #ffffff 83.3%, #ffffff 83.3%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff8040 1%, #ff8040 83.3%, #ffffff 83.3%, #ffffff 83.3%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8040', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.barra_5 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff8040+1,000000+20,ffffff+20,ffffff+20 */
	background: #ff8040; /* Old browsers */
	background: -moz-linear-gradient(left, #ff8040 1%, #ff8040 100%, #ffffff 100%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff8040 1%, #ff8040 100%, #ffffff 100%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff8040 1%, #ff8040 100%, #ffffff 100%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8040', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.blu {
	border: solid 1px #0065A8;
}
#tabs_meteo .percentuale.blu.barra_0 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0065A8+1,000000+20,ffffff+20,ffffff+20 */
	background: #0065A8; /* Old browsers */
	background: -moz-linear-gradient(left, #0065A8 1%, #0065A8 16.6%, #ffffff 16.6%, #ffffff 16.6%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0065A8 1%, #0065A8 16.6%, #ffffff 16.6%, #ffffff 16.6%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0065A8 1%, #0065A8 16.6%, #ffffff 16.6%, #ffffff 16.6%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065A8', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.blu.barra_1 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0065A8+1,000000+20,ffffff+20,ffffff+20 */
	background: #0065A8; /* Old browsers */
	background: -moz-linear-gradient(left, #0065A8 1%, #0065A8 33.3%, #ffffff 33.3%, #ffffff 33.3%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0065A8 1%, #0065A8 33.3%, #ffffff 33.3%, #ffffff 33.3%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0065A8 1%, #0065A8 33.3%, #ffffff 33.3%, #ffffff 33.3%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065A8', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.blu.barra_2 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0065A8+1,000000+20,ffffff+20,ffffff+20 */
	background: #0065A8; /* Old browsers */
	background: -moz-linear-gradient(left, #0065A8 1%, #0065A8 50%, #ffffff 50%, #ffffff 50%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0065A8 1%, #0065A8 50%, #ffffff 50%, #ffffff 50%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0065A8 1%, #0065A8 50%, #ffffff 50%, #ffffff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065A8', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.blu.barra_3 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0065A8+1,000000+20,ffffff+20,ffffff+20 */
	background: #0065A8; /* Old browsers */
	background: -moz-linear-gradient(left, #0065A8 1%, #0065A8 66.6%, #ffffff 66.6%, #ffffff 66.6%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0065A8 1%, #0065A8 66.6%, #ffffff 66.6%, #ffffff 66.6%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0065A8 1%, #0065A8 66.6%, #ffffff 66.6%, #ffffff 66.6%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065A8', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.blu.barra_4 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0065A8+1,000000+20,ffffff+20,ffffff+20 */
	background: #0065A8; /* Old browsers */
	background: -moz-linear-gradient(left, #0065A8 1%, #0065A8 83.3%, #ffffff 83.3%, #ffffff 83.3%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0065A8 1%, #0065A8 83.3%, #ffffff 83.3%, #ffffff 83.3%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0065A8 1%, #0065A8 83.3%, #ffffff 83.3%, #ffffff 83.3%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065A8', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .percentuale.blu.barra_5 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0065A8+1,000000+20,ffffff+20,ffffff+20 */
	background: #0065A8; /* Old browsers */
	background: -moz-linear-gradient(left, #0065A8 1%, #0065A8 100%, #ffffff 100%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0065A8 1%, #0065A8 100%, #ffffff 100%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0065A8 1%, #0065A8 100%, #ffffff 100%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0065A8', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
#tabs_meteo .box_temperatura {
	width: 30px !important;
	text-align: center;
	background-color: #0FF;
	display: block;
	margin: 2px auto 2px auto;
	border-radius: 5px;
	padding: 5px;
	color: #FFF;
}
#tabs_meteo .dicitura {
	display: block;
	font-size: 70%;
	padding-bottom: 10px;
}
#tabs_meteo .no_mini {
	display: none;
	font-size: 80%;
}
#tabs_meteo .col_intestazione_mini {
	display: block;
}
#tabs_meteo .sfondo {
	background-color: #f2f2f2;
	padding: 10px;
	margin: 1px 0px 2px 0px;
}
#tabs_meteo .altezza_descrizione {
	display: block !important;
	padding-bottom: 5px;
}
#tabs_meteo .ui-state-default, #tabs_meteo .ui-widget-header .ui-state-default {
	border: 0px solid #aaaaaa;
	background: #FFF none 50% 50% repeat-x;
	font-weight: normal;
	color: #222;
}
#tabs_meteo .ui-widget-content .ui-state-active, #tabs_meteo .ui-widget-header .ui-state-active {
	border: 0px solid #aaaaaa;
	background: #f2f2f2 none 50% 50% repeat-x;
	font-weight: normal;
	color: #222;
}
#tabs_meteo .ui-state-active a, #tabs_meteo .ui-state-active a:link, #tabs_meteo .ui-state-active a:visited {
	color: #222 !important;
}
#tabs_meteo .ui-state-default a, #tabs_meteo .ui-state-default a:link, #tabs_meteo .ui-state-default a:visited {
	color: #222;
}
@media only screen and (min-width: 769px) {
#tabs_meteo .box_temperatura {
	display: inline-table;
	margin: 2px;
}
#tabs_meteo {
	font-size: 100%;
}
#tabs_meteo .col_intestazione {
	display: block;
}
#tabs_meteo .col_intestazione_mini {
	display: none;
}
#tabs_meteo .dicitura {
	display: none;
}
#tabs_meteo .col_contenuti {
	width: 80%;
}
#tabs_meteo ul li {
	width: 16.666%;
}
#tabs_meteo .altezza_div p {
	height: 36px;
}
#tabs_meteo .dicitura {
	display: none;
}
#tabs_meteo.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #f2f2f2;
	border-right-color: #f2f2f2;
	border-bottom-color: #f2f2f2;
	border-left-color: #f2f2f2;
}
}
@media only screen and (min-width: 1069px) {
#tabs_meteo .no_mini {
	display: inline;
}
}
/*------------------------ CSS METEO ------------------------*/
/*------------------------ CSS METEO ------------------------*/
/*------------------------ CSS METEO ------------------------*/
/*------------------------ CSS METEO ------------------------*/
#content-before-consent {
	padding: 20px;
	/*background-color: #f44336;*/
	background-color: rgba(244,151,26,0.8);
	color: white;
	opacity: 0.83;
	transition: opacity 0.6s;
	margin-bottom: 15px;
	font-family: Verdana, sans-serif;
	text-align: center;
	border: solid 1px gba(244,151,26,1);
	font-size: 12px;
}
#content-before-consent a {
	color: #FFF;
}
.col_3 .contenuti_box, #tabs_meteo.ui-tabs .ui-tabs-nav li, .col_3 .contenuti_box .titolo {
    border-radius: 8px!important;
}
.div_linea{
	border-top: 1px solid #ccc;
	padding-bottom: 30px;
}
#openSkiTour{
	cursor: pointer;
} 
.div_dettaglio_evento.div_sez_2 {
	margin: 0px;
} 
.div_dettaglio_evento .col_2_n  {
	text-align: left;
} 
.div_dettaglio_evento .col_2_n  h1 {
	text-align: left;
}
.div_dettaglio_evento .col_2_n.immagine_sfondo .all_immagine{
	 background-size: cover;
	 max-height: 800px!important;
}
.div_dettaglio_evento .pulsante_testo_top.margine.bottom{
	 text-align: right;
	 text-transform: uppercase;
	 font-weight: bold;
}
.div_dettaglio_evento .pulsante_testo_top.margine.bottom a{
	float:right;
}
.div_dettaglio_evento .pulsante_testo_top.margine.bottom img{
	transform: rotate(270deg);
	width: 20px!important;
}
.div_dettaglio_evento .div_sez_2 .all_immagine {
	margin: 0px;
}
@media only screen and (max-width: 769px) {
	.div_dettaglio_evento .col_2_n.immagine_sfondo .all_immagine{
		 height: 400px!important;
	}
}
/* -----------------------------
   Animazione all_immagine verso sinistra
------------------------------- */
.div_sez_2 .all_immagine {
    position: relative;
    overflow: hidden;
   /* margin: 50px 0;*/
}

.div_sez_2 .all_immagine::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateX(0);
}

.div_sez_2 .all_immagine.animate::before {
    animation: slideOut 0.5s ease-out forwards;
}

@keyframes slideOut {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* -----------------------------
   Animazione offerta-box fade-in
------------------------------- */
/* Fade-in per offerta-box e img_box */
.offerta-box,
.img_box,
.div_sez_1 {
    opacity: 0; /* invisibili all'inizio */
    transition: opacity 0.8s ease-out; /* durata del fade */
}

.offerta-box.animate-opacity,
.img_box.animate-opacity,
.div_sez_1.animate-opacity {
    opacity: 1; /* diventano visibili */
}
#tabs .div_col_2 .div_pul {
	width: 100%;
}
@media only screen and (max-width: 769px) {
	.div_sezione_home.div_sez_2 .div_col_2 {
		min-height: auto;
		margin-top: 50px;
	}
	.div_sezione_home .col_2_n.immagine_sfondo {
		display: none;
	}
}
#div_assicurazione {
	background-color: #1f438f;
	width: 120px;
	height: 120px;
	border-radius: 150px;
	text-align:center;
	display: table;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 80%;
	position: fixed;
	right: 2%;
	z-index: 30;
	transition: all .6s ease;
}
.div_assicurazione a {
	color: #FFF;
}
/* stato iniziale: nascosto e più in basso */
#div_assicurazione.hidden_p {
	opacity: 0;
	top: 40%;
	transform: translateY(30px);
}

/* stato dopo lo scroll */
#div_assicurazione.visible {
	opacity: 1;
	top: 5%;
	transform: translateY(0);
}

#div_assicurazione p {
   display: table-cell;
   vertical-align: middle;
}
@media only screen and (max-width: 769px) {
	#div_assicurazione {
		width: 80px;
		height: 80px;
		font-size: 50%;
	}
	#div_assicurazione.visible {
		top: 10px;
	}
}
.juicer-feed {
    background-color: #FFF!important;
}
.div_linea.comprensori {
	margin-top: 40px;
	margin-bottom:0px;
	padding-bottom: 0px;
}
@media only screen and (min-width: 769px) {
.div_linea.comprensori {
	margin-top: 100px;
}
}