/* FONTS */

@font-face {
	font-family: 'Text';
	src: url('../fonts/Arial.woff2') format('woff2'),
		url('../fonts/Arial.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Text';
	src: url('../fonts/Arial-Italic.woff2') format('woff2'),
		url('../fonts/Arial-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Text';
	src: url('../fonts/Arial-Bold.woff2') format('woff2'),
		url('../fonts/Arial-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Text';
	src: url('../fonts/Arial-BoldItalic.woff2') format('woff2'),
		url('../fonts/Arial-BoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Title';
	src: url('../fonts/ArialRounded.woff2') format('woff2'),
		url('../fonts/ArialRounded.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Hattinand';
	src: url('../fonts/Hattinand.woff2') format('woff2'),
		url('../fonts/Hattinand.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'icon';
	src: url('Jua-Regular.woff2') format('woff2'),
		url('Jua-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}



/* VARIABILI */
:root {

	/* FONT -- BODY */
	--font-family: 'Text';
	--font-family-LH: 1.8rem;
	--font-regular: 300;
	--font-bold: bold;
	--p: 1rem;
	--pLH: 1.6rem;

	/* FONT -- TITLE */
	--font-title: "Title";
	--h1: 3rem;
	--h1LH: 3rem;
	/* --h1Big: 3rem;
	--h1BigLH: 3.6rem; */

	/* -- */
	--h2: 1.5rem;
	--h2LH: 2.44rem;

	--script: 3.9rem;
	--scriptLH: 3.5rem;

	--fontIcon: 'icon';

	/* COLORS */
	--text: #222221;
	--white: #fff;
	--green: #8EB23D;
	--greenLight: #BFD081;
	--blue: #85A3C3;
	--blueLight: #AAC7EA;
	--purple: #883F67;
	--purpleOpacity: rgba(136, 63, 103, .6);

	/* BADGES */
	--spiritualita: #853f67;
	--arte-e-cultura: #80973d;
	--mare-e-paesaggi: #8088a8;

	--lightGray: #F0EBEB;
	--lightBeige: #ede8e8;
	--beige: #F1DECD;
	--darkBeige: #F0EBEB;
	--primary: #005c81;

	--link: #E5AF32;
	--linkHover: #D06F43;

	/* GLOBAL */
	--brder-radius: 0;
	--space: 100px;
	--transition: all .5s;

}

/* #region FORMATTING */

body,
html {
	font-family: var(--font-family);
	font-weight: var(--font-regular);
	color: var(--text);
	font-size: 18px;
	line-height: 29px;
	counter-reset: section;
}

h1,
.h1 {
	font-family: var(--font-title);
	font-size: var(--h1);
	line-height: var(--h1LH);
	font-style: normal;
	color: var(--text);
	margin-bottom: calc(var(--space) / 3);
	text-transform: uppercase;
}

h2,
.h2 {
	font-family: var(--font-title);
	font-weight: var(--font-light);
	text-transform: uppercase;
	font-size: 1.2rem;
	line-height: 1.6rem;
	margin-top: 0;
	margin-bottom: calc(var(--space) / 3);
}

.script {
	font-family: 'Hattinand';
	font-weight: normal;
	font-style: normal;
	font-size: var(--script);
	line-height: var(--scriptLH);
	color: var(--blue);
	/* counter-reset: section; */
}

p {
	font-family: var(--font-family);
	font-weight: var(--font-regular);
	line-height: var(--font-family-LH);
}

p+p:last-child,
.main-container p:last-child {
	margin-bottom: 0;
}

b,
strong {
	font-family: var(--font-family);
	font-weight: var(--font-bold);
}


i,
em {
	color: var(--text);
}


a:hover {
	text-decoration: none;
	color: var(--text);
}

p a {
	color: var(--link);
	display: inline-block;
}

p a:hover {
	color: var(--linkHover);
	text-decoration: underline;
}

.par {
	width: 100%;
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

.par.small {
	max-width: 700px;
}


/* #endregion FORMATTING */

/* #region MARGIN + PADDING */

.pad-y {
	padding-top: var(--space);
	padding-bottom: var(--space);
}

.pad-y-t {
	padding-top: var(--space);
}

.pad-y-b {
	padding-bottom: var(--space);
}

.pad-y-h {
	padding-top: calc(var(--space) / 2);
	padding-bottom: calc(var(--space) / 2);
}

.pad-y-h-t {
	padding-top: calc(var(--space) / 2);
}

.pad-y-h-b {
	padding-bottom: calc(var(--space) / 2);
}

.mar-y {
	margin-top: var(--space);
	margin-bottom: var(--space);
}

.mar-y-t {
	margin-top: var(--space);
}

.mar-y-b {
	margin-bottom: var(--space);
}

.mar-y-h {
	margin-top: calc(var(--space) / 2);
	margin-bottom: calc(var(--space) / 2);
}

.mar-y-h-t {
	margin-top: calc(var(--space) / 2);
}

.mar-y-h-b {
	margin-bottom: calc(var(--space) / 2);
}

.font-space {
	margin-right: 20px;
}

.font-space-less {
	margin-left: -20px;
}

.journal {
	left: 17px;
	margin-right: 5px;
}

/* #endregion MARGIN + PADDING */

/* #region COLORS */

.white {
	color: var(--white);
}

.text {
	color: var(--text);
}

.green {
	color: var(--green);
}

.link {
	color: var(--link);
}

.primary {
	color: var(--primary);
}

.bck-white {
	background-color: var(--white);
}

.bck-beige {
	background-color: var(--lightBeige);
}

.bck-light {
	background-color: var(--lightGray);
}

.bck-dark {
	background-color: var(--darkGray);
}

.bck-gradient {
	background: linear-gradient(var(--white), var(--lightBeige));
}

.bck-gradient.reverse {
	background: linear-gradient(var(--lightBeige), var(--white));
}

/* #endregion COLORS */

/* #region LINKS */

.btn,
.pos-link>a,
#form-contacts button[type="submit"] {
	background: var(--blue);
	font-size: 1rem;
	line-height: 1.3;
	padding: 20px 40px;
	border-radius: 50px;
	color: var(--white);
	border: none;
	display: inline-block;
	text-transform: uppercase;
}

.btn:hover,
.pos-link>a:hover,
#form-contacts button[type="submit"]:hover,
.link-popup:hover .btn {
	background: var(--blueLight);
	color: var(--white);
	border: none;
}

#form-contacts button[type="submit"] {
	margin-left: auto;
	margin-right: auto;
	max-width: 350px;
}

/* #endregion LINKS */

/* #region HEADER */

.top-menu {
	padding-top: 20px;
	padding-bottom: 20px;
	background: var(--white);
}

/* MENU */

header {
	z-index: 1112;
}

header .menu>span {
	display: block;
	text-align: center;
	font-family: var(--font-title);
	font-size: 0.889rem;
	line-height: 1;
	color: var(--text);
	top: 0;
	margin-top: 10px;
}

header .menu svg {
	overflow: visible;
}

header .menu:hover svg #top {
	transform: translateX(7px);
}

header .menu:hover svg #bottom {
	transform: translateX(-7px);
}

header .top-menu>.uk-container {
	max-width: 1600px;
}

header .main-logo,
footer .logo-footer {
	width: 220px;
}

header .wishlist-container {
	position: absolute;
	top: -22px;
}

header .wishlist {
	text-align: center;
	background: var(--beige);
	padding: 50px 18px 0 18px;
	position: absolute;
	top: -20px;
	right: 0;
	padding-bottom: 30px;
	border-bottom-left-radius: 60px;
	border-bottom-right-radius: 60px;
	min-width: 80px;
}

header .ow_mod-link {
	position: relative;
	top: 3px;
	padding-top: 70px;
	display: inline-block;
	text-align: center;
}

header .wishlist .ow-icon svg {
	color: var(--white);
	width: 32px;
}

header.no-slider .wishlist .ow-icon svg,
header .barra-fixed .wishlist .ow-icon svg {
	color: var(--text);
}

header .ow-icon .ow_mod-numberItems {
	color: var(--beige);
	font-size: 0.706rem;
	letter-spacing: 0.1em;
	display: inline-block;
	background: var(--purple);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	line-height: 1.5em;
	text-align: center;
	position: absolute;
	right: -30px;
	top: -44px;
	z-index: 1;
}

header .uk-sticky {
	height: auto !important;
}

/* LANG SWITCHER */

.lang-switcher {
	margin-left: calc(var(--space) / 2);
}

.lang-switcher ul>li {
	position: relative;
	display: inline-flex;
}

.lang-switcher ul>li>a {
	font-size: 0.889rem;
	line-height: 1;
	color: var(--text);
	width: 21px;
	text-align: center;
	display: block;
}

.offcanvas-container .lang-switcher ul>li>a:hover {
	color: var(--text);
}

/* .lang-switcher ul > li:not(:last-child) {
	margin-right: 10px;
} */

.lang-switcher ul>li:not(:last-child):after {
	content: '/';
	margin: 0 10px 0 12px;
}

.offcanvas-container .lang-switcher ul>li:not(:last-child):after {
	color: var(--text);
}

.lang-switcher ul>li:before {
	content: url(../images/active.svg);
	width: 22px;
	display: inline-block;
	position: absolute;
	left: -7px;
	bottom: -13px;
	opacity: 0;
	pointer-events: none;
}

.lang-switcher ul>li:hover:before,
.lang-switcher ul>li.uk-active:before {
	left: -1px;
	opacity: 1;
}

.uk-dropdown-nav>li.uk-active>a,
.uk-dropdown-nav>li>a:hover {
	color: var(--primary);
}

.uk-dropdown-nav>li>a {
	color: var(--text);
	display: block;
	text-align: center;
}

/* FIXED BAR */

/* FIXED BAR - NO SLIDER */

/* .no-slider .uk-sticky, */
.barra-fixed.uk-sticky {
	height: 80px !important;
}


header.no-slider .barra-fixed .top-menu,
header .barra-fixed .top-menu {
	background: var(--white);
	padding: 10px 0;
}

header.no-slider .top-menu {
	background: var(--lightBeige);
}

header .barra-fixed .top-menu {
	box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.1);
}

header .barra-fixed .wishlist-text {
	display: none;
}

header .barra-fixed .main-logo {
	width: 140px;
}

header .barra-fixed .ow_mod-numberItems {
	top: -45px;
}

header .barra-fixed .wishlist.ow_mod-link:after {
	top: 35px;
}

header .barra-fixed .menu>span {
	color: var(--text);
}

header.no-slider .uk-sticky .menu:before,
header.no-slider .uk-sticky .menu:after,
header .uk-sticky.barra-fixed .menu:before,
header .uk-sticky.barra-fixed .menu:after {
	border-top: solid 1px var(--text);
}

header .info-link {
	margin-left: calc(var(--space) / 3);
}

.info-link {
	width: 35px;
	height: 35px;
	background: var(--purple);
	border-radius: 15px;
	opacity: 1;
}

.info-link::before {
	content: url(../images/info-icon-white.svg);
	display: inline-block;
	width: 12px;
	height: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.info-link:hover {
	border-radius: 20px;
	opacity: .8;
}

/* SLIDER TEXT CONTAINER */

.slider-text-container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
}

/* #endregion HEADER */

/* #region OFFCANVAS */

.uk-offcanvas-bar a {
	color: var(--text);
}

.uk-offcanvas-bar {
	left: -350px;
	width: 100vw;
	padding: 0;
	background: var(--white);
}

#offcanvas .column {
	height: 100vh;
}

#offcanvas .bck {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#offcanvas .column.left {
	background-image: url(../images/offcanvas-left-image.jpg);
}

#offcanvas .column.right {
	background-image: url(../images/offcanvas-right-image.jpg);
}

#offcanvas .column:not(.center):before {
	content: '';
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	mix-blend-mode: color;
}

#offcanvas .column .content {
	padding: var(--space) calc(var(--space) / 2);
	width: 100%;
}

#offcanvas .content .uk-nav {
	column-count: 2;
	text-align: left;
}

#offcanvas .off-menu .uk-nav li a {
	font-family: var(--font-title);
	text-transform: uppercase;
	font-size: 1rem;
	line-height: 1.3rem;
	margin-bottom: 0;
	position: relative;
	padding: 0 8px 0 0;
	left: 0;
	line-height: 1.5;
	margin-bottom: 10px;
	display: inline-block;
}

#offcanvas .off-menu .uk-nav li.uk-active a,
#offcanvas .off-menu .uk-nav li a:hover {
	color: var(--link);
	left: 27px;

}

#offcanvas .off-menu .uk-nav li a::before {
	content: url(../images/active.svg);
	width: 22px;
	display: inline-block;
	position: absolute;
	left: -27px;
	opacity: 0;
	top: -4px;
}

#offcanvas .off-menu .uk-nav li.uk-active a::before,
#offcanvas .off-menu .uk-nav li a:hover::before {
	left: -27px;
	opacity: 1;
}

#offcanvas .off-logo {
	top: calc(var(--space) / 2);
	left: 50%;
	transform: translateX(-50%);
}

#offcanvas .off-logo img {
	display: inline-block;
	width: 200px;
}

#offcanvas .off-social {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 25px calc(var(--space) / 2);
}

#offcanvas .off-social a svg {
	color: var(--blue);
	width: 30px;
}

#offcanvas .off-social a:hover svg {
	color: var(--link);
}

#offcanvas .spotify-container {
	bottom: 70px;
	right: 50px;
}

.uk-offcanvas {
	z-index: 1116;
}

#offcanvas .link-cultura img {
	width: 180px;
}

/* #endregion OFFCANVAS */

/* #region FOOTER */

footer a {
	color: var(--link);
}

footer a:hover {
	color: var(--linkHover);
}

footer .link-guida-container .btn {
	padding: 10 40px;
}

footer .link-cultura {
	opacity: 1;
}

footer .link-cultura:hover {
	opacity: .7;
}

footer .link-cultura img {
	width: 200px;
}

/* #endregion FOOTER */

/* #region CREDITS */

#credits .public img {
	width: 100%;
	max-width: 800px;
	margin: 25px auto;
}

#credits .omni {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #f7f7f7;
}

#credits .omni span {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 12px;
	color: #666;
	letter-spacing: 0.5px
}

#credits .omni a img {
	width: 80px;
	height: auto;
	margin-left: 5px;
}

/* #endregion CREDITS */

/* #region HOME */

/* ESPERIENZE */
.ehc .slider-exp-container .uk-slider-items>div,
.ehc .slider-exp-container .uk-slider-items>.uk-slide-active {
	position: relative;
	top: 0;
}

.ehc .slider-exp-container .uk-slider-items>.uk-active:not(.uk-slide-active)

/* ,
.ehc .slider-exp-container .uk-slider-items > .uk-slide-leave  */
	{
	top: calc(var(--space) * -1);
}

.ehc .uk-slider {
	overflow: visible !important;
}

.ehc .hide-x {
	overflow-x: clip;
}

.ehc .intro-container .text {
	margin-bottom: calc(var(--space) / 2 * -1);
}

.ehc .slider-exp-container .uk-slidenav {
	top: -15px;
	bottom: unset;
}

.ehc .slider-exp-container .uk-slidenav-previous {
	left: calc(50% - var(--space) / 1.25);
}

.ehc .slider-exp-container .uk-slidenav-next {
	right: calc(50% - var(--space) / 1.25);
}

.ehc .item .pos-link>div,
.evhc .item .pos-link>div,
.dhc .item .pos-link>div {
	color: var(--link);
}

.ehc .item .bottom .pos-title,
.ehc .item .bottom .pos-link,
.evhc .item .bottom .pos-title,
.evhc .item .bottom .pos-link,
.dhc .item .bottom .pos-title,
.dhc .item .bottom .pos-link {
	padding: 25px 15px;
	min-height: 90px;
}

.ehc .item .pos-link:before,
.evhc .item .pos-link:before,
.dhc .item .pos-link:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 60px;
	border-left: solid 1px var(--beige);
}

.ehc .item .bottom .h2,
.evhc .item .bottom .h2,
.dhc .item .bottom .h2 {
	font-size: 1rem;
	line-height: 1.3;
}

.ehc .bottom a .uk-icon,
.evhc .bottom a .uk-icon,
.dhc .bottom a .uk-icon {
	left: 0;
}

.ehc .bottom a:hover .uk-icon,
.dhc .bottom a:hover .uk-icon {
	left: 5px;
}

#interesse .spotify-container,
#interessi .spotify-container,
#destinazione .spotify-container,
#destinazioni .spotify-container,
.ehc .spotify-container,
.dhc .spotify-container {
	bottom: 5px;
	left: 5px;
	width: 123px;
	height: 123px;
}

#offcanvas .spotify-container img,
#interesse .spotify-container img,
#interessi .spotify-container img,
#destinazione .spotify-container img,
#destinazioni .spotify-container img,
.ehc .spotify-container img,
.dhc .spotify-container img {
	display: inline-block;
	width: 63px;
	height: 63px;
	transform: scale(1);
	transform-origin: center;
}

#offcanvas .spotify-container:hover img,
#interesse .spotify-container:hover img,
#interessi .spotify-container:hover img,
#destinazione .spotify-container:hover img,
#destinazioni .spotify-container:hover img,
.ehc .spotify-container:hover img,
.dhc .spotify-container:hover img {
	transform: scale(1.8);
	opacity: 1;
}

html[lang="it"] #offcanvas .spotify-container:before,
html[lang="it"] #interessi .spotify-container:before,
html[lang="it"] #interesse .spotify-container:before,
html[lang="it"] #destinazione .spotify-container:before,
html[lang="it"] #destinazioni .spotify-container:before,
html[lang="it"] .ehc .spotify-container:before,
html[lang="it"] .dhc .spotify-container:before {
	content: url(../images/ascolta-spotify-it.svg);
	display: inline-block;
	position: absolute;
	top: 12px;
	left: 12px;
	width: 100px;
	height: 100px;
	animation: rotate 12s linear infinite;
	animation-play-state: running;
}

html[lang="en"] #interesse .spotify-container:before,
html[lang="en"] #interessi .spotify-container:before,
html[lang="en"] #interesse .spotify-container:before,
html[lang="en"] #destinazione .spotify-container:before,
html[lang="en"] #destinazioni .spotify-container:before,
html[lang="en"] .ehc .spotify-container:before,
html[lang="en"] .dhc .spotify-container:before {
	content: url(../images/ascolta-spotify-en.svg);
	display: inline-block;
	position: absolute;
	top: 12px;
	left: 12px;
	width: 100px;
	height: 100px;
	animation: rotate 12s linear infinite;
	animation-play-state: running;
}

html[lang="it"] #offcanvas .spotify-container:before,
html[lang="en"] #offcanvas .spotify-container:before {
	content: url(../images/ascolta-spotify-it-dark.svg);
	display: inline-block;
	position: absolute;
	top: -19px;
	left: -19px;
	width: 100px;
	height: 100px;
	animation: rotate 12s linear infinite;
	animation-play-state: running;
}

html[lang="en"] #offcanvas .spotify-container:before {
	content: url(../images/ascolta-spotify-en-dark.svg);
}

#interesse .spotify-container:hover:before,
#interessi .spotify-container:hover:before,
#destinazione .spotify-container:hover:before,
#destinazioni .spotify-container:hover:before,
.ehc .spotify-container:hover:before {
	animation-play-state: paused;
}

@keyframes rotate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

#interesse .layout-header.spotify-on:after,
#interessi .spotify-on:after,
#destinazione .layout-header.spotify-on:after,
#destinazioni .spotify-on:after,
.ehc .spotify-on:after,
.evhc .img-container:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
}

#interesse .main-container .par.big {
	max-width: 960px;
}

.spotify-full {
	bottom: 0;
	left: 0;
	right: 0;
}

/* DESTINAZIONI */
.dhc .container {
	width: 100%;
}

.dhc .ba-container .container,
.container .img,
.container .slider {
	width: 100%;
	height: 100%;
	max-height: 1080px;
	aspect-ratio: 16 / 9;
}

.dhc .top .intro {
	left: 0;
	top: 0;
	width: 100%;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
	pointer-events: none;
	z-index: 3;
}

.dhc .container .img:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 150px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
	pointer-events: none;
	z-index: 1;
}

.dhc .foreground-img .info {
	z-index: 2;
	bottom: calc(var(--space) / 2);
	left: calc(var(--space) / 2);
	min-width: 270px;
}

.dhc .background-img .info {
	z-index: 2;
	bottom: calc(var(--space) / 2);
	right: calc(var(--space) / 2);
}

.dhc .background-img .info {
	min-width: 330px;
}

.dhc .background-img .flags img {
	width: 55px;
}

.dhc .container .slider-button .uk-inline>img {
	width: 140px;
	height: 135px;
	display: inline-block;
}

.dhc .slider-button .h2 {
	font-size: 0.889rem;
	line-height: 1.3;
	color: var(--text);
	text-align: center;
}

.dhc .slider-button .icon-hand {
	display: inline-block;
	width: 28px;
	position: relative;
}

.dhc .slider-button .hand-container:before {
	content: url(../images/arrow-slider-left-purple.svg);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 25px;
	width: 7px;
	transform: translateY(-50%);
	opacity: 0;
	animation: swipeLeft 1s linear infinite;
}

@keyframes swipeLeft {
	0% {
		left: 25px;
		opacity: 0;
	}

	50% {
		left: 17.5px;
		opacity: 1;
	}

	100% {
		left: 10px;
		opacity: 1;
	}
}

.dhc .slider-button .hand-container:after {
	content: url(../images/arrow-slider-right-purple.svg);
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 25px;
	width: 7px;
	opacity: 1;
	transform: translateY(-50%);
	animation: swipeRight 1s linear infinite;
}

@keyframes swipeRight {
	0% {
		right: 25px;
		opacity: 0;
	}

	50% {
		right: 17.5px;
		opacity: 1;
	}

	100% {
		right: 10px;
		opacity: 1;
	}
}



.dhc .slider-button .uk-overlay {
	padding: 20px;
}

.dhc .destinations-container {
	margin-top: 15px;
}

#itinerario .related .badge,
#destinazione .related .badge,
.dhc .destinations-container .badge {
	position: absolute;
	bottom: 25px;
	right: 25px;
	/* left: 25px; */
}

/* PEDALANDO - PASSEGGIANDO - PPHC */

.pphc .top .heart {
	width: 145px;
}

.pphc .top .uk-overlay {
	min-width: 320px;
}

.pphc .bottom .left {
	text-align: right;
}

.pphc .bottom a img {
	width: 100%;
	max-width: 420px;
	transform: scale(1);
	transform-origin: center;
}

.pphc .bottom a .btn {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.pphc .bottom a:hover .btn {
	background: var(--blueLight);
}

.pphc .bottom a:hover img {
	scale: 1.05;
}

.pphc .bottom .center>div:before {
	content: url(../images/pp-arrow-top.svg);
	position: absolute;
	display: inline-block;
	width: 200px;
	top: 0;
	left: calc(var(--space) / 2 * -1);
	z-index: 1;
}

.pphc .bottom .center>div:after {
	content: url(../images/pp-arrow-bottom.svg);
	position: absolute;
	display: inline-block;
	width: 200px;
	bottom: 0;
	right: 0;
	z-index: 1;
}

/* EVENTS */

.evhc {
	background-image: url(../images/section-background.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

#evento .pos-date,
.evhc .item .pos-date {
	background: var(--link);
	border-radius: 23px;
	display: inline-block;
	width: 52px;
	height: 52px;
	position: relative;
	bottom: 25px;
	right: 25px;
	pointer-events: none;
}

#evento .pos-date>.content,
.evhc .item .pos-date>.content {
	position: absolute;
	width: 80px;
	/* background: #f00a; */
	left: 50%;
	line-height: 1.1;
	top: 50%;
	transform: translate(-50%, -50%);
}

#evento .pos-date>.content .h2,
.evhc .item .pos-date>.content .h2 {
	margin-bottom: 0;
	line-height: 1;
}

#evento .pos-date>.content .month,
.evhc .item .pos-date>.content .month {
	font-size: .8rem;
	line-height: 1;
}

#evento .pos-date>.content .from,
.evhc .item .pos-date>.content .from {
	font-size: .6rem;
	line-height: 1;
}

#eventi .items .item,
#itinerario .teaser-item .item,
#destinazioni .items .item,
.uk-slider-items .item {
	height: 100%;
	background: var(--white);
}

/* VETRINE DIGITALI */

.vdhc .intro-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
	z-index: 1;
}

.vdhc .uk-inline .link-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
	z-index: 1;
}

.vdhc .uk-slideshow-items,
.vdhc .uk-inline img {
	width: 100vw;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	max-height: calc(100vh - 88px);
}

.vdhc .uk-slideshow-nav {
	margin-bottom: 0;
	position: absolute;
	left: 0;
	top: -10px;
	right: 0;
	z-index: 1;
}

/* FOOTER */

footer .socials {
	margin-top: 30px;
	margin-bottom: 30px;
}

footer .socials a svg {
	color: var(--blue);
	width: 40px;
}

footer .socials a:hover svg {
	color: var(--link);
}

footer .logo-comune {
	width: 100%;
	max-width: 140px;
}

footer .riviera-logo img {
	width: 100%;
	max-width: 166px;
}

footer .others .mama {
	width: 100%;
	max-width: 123px;
}

.circuiti-container img,
footer .others .noi-marche {
	width: 100%;
	max-width: 92px;
}

footer .center .mail {
	color: var(--blue);
}

footer .center .mail:hover {
	color: var(--link);
}

.sub-footer {
	background-color: var(--lightBeige);
	padding: 20px 0 15px;
}

.sub-footer a:hover * {
	color: var(--link);
}

.sub-footer img {
	display: inline-block;
	width: 37px;
}

.sub-footer .text {
	font-size: .8rem;
	line-height: 1;
	text-align: left;
}

.sub-footer .flag-lilla {
	text-align: right;
}


/* SLIDER EVENTS TEXRT HOME */


.slider-home-events {
	background-color: var(--purple);
	padding-top: 45px;
	padding-bottom: 45px;
}

.slider-home-events .uk-slideshow-items .item {
	background: unset;
}

.slider-home-events .uk-slideshow-items {
	height: auto !important;
	min-height: 60px;
	overflow: visible;
}

.slider-home-events .uk-slideshow-items li {
	overflow: visible;
}

.slider-home-events .uk-slideshow {
	padding-left: calc(var(--space) / 2);
	padding-right: calc(var(--space) / 2);
	z-index: 1111;
	position: relative;
}

.slider-home-events .item .text {
	text-align: right;
	padding-right: calc(var(--space) * 1);
	padding-left: 15px;
}

.slider-home-events .item .event {
	padding-left: calc(var(--space) * 1);
	padding-right: 15px;
}


.slider-home-events .item .event:before {
	content: url(../images/icon-lamp.svg);
	position: absolute;
	left: -50px;
	top: -40px;
	width: 102px;
	display: inline-block;
}

.slider-home-events .pos-date {
	top: -15px;
	left: -29px;
	line-height: 1;
	width: 60px;
}

.slider-home-events .uk-slidenav {
	border: solid 2px #222221;
	background: var(--purple);
}

.slider-home-events .link:hover {
	color: var(--white);
}


/* #endregion HOME */

/* #region GLOBAL */


.main-container {
	position: relative;
	max-width: 1600px;
	margin-right: auto;
	margin-left: auto;
}

.main-container.vectors:before {
	content: url(../images/eg1.svg);
	display: inline-block;
	width: 285px;
	position: absolute;
	left: -100px;
	top: 0;
	opacity: .5;
	pointer-events: none;
}

.main-container.vectors:before {
	/* z-index: -1; */
}

.main-container.vectors:after {
	content: url(../images/eg2.svg);
	display: inline-block;
	width: 200px;
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: .5;
	pointer-events: none;
	/* z-index: -1; */
}

.divider-line {
	display: inline-block;
	margin: 0 auto;
	width: 340px;
}

.lh1 {
	line-height: 1;
}

.badge {
	font-size: 0.6rem;
	line-height: 1;
	display: inline-block;
	background-color: var(--lightGray);
	color: var(--text);
	text-transform: uppercase;
}

a.badge:hover {
	color: var(--white) !important;
	background: var(--text) !important;
}

.badge span,
.badge a {
	padding: 5px 8px;
	font-size: 0.6rem;
	line-height: 1;
	text-transform: uppercase;
	display: inline-block;
}

div.badge.default span,
a.badge.default {
	color: var(--text);
}

.badge.default a:hover {
	color: var(--text);
	background: var(--white);
}

div.badge.arte-e-cultura span,
a.badge.arte-e-cultura {
	color: var(--white);
	background: var(--arte-e-cultura);
}

.badge.arte-e-cultura a:hover {
	color: var(--text);
	background: var(--white);
}

div.badge.spiritualita span,
a.badge.spiritualita {
	color: var(--white);
	background: var(--spiritualita);
}

.badge.spiritualita a:hover {
	color: var(--text);
	background: var(--white);
}

div.badge.mare-e-paesaggi span,
a.badge.mare-e-paesaggi {
	color: var(--white);
	background: var(--mare-e-paesaggi);
}

.badge.mare-e-paesaggi a:hover {
	color: var(--text);
	background: var(--white);
}

/* TOO MANY CATEGORIES ... */


.box-demo {
	width: 100%;
	height: 400px;
	padding: 15px;
	background: #f00;
	display: block;
}

/* .box-filters .moduletable, */
.filters-container .uk-sticky {
	background: var(--lightGray);
	padding: 0 15px;
	height: auto !important;
}

.box-filters .ob-filter-container .h2 {
	margin-bottom: 0;
}

.box-filters .uk-list>:nth-child(n+2) {
	margin-top: 5px;
}

.box-filters .uk-list>li {
	line-height: 1;
	font-size: .85rem;
}

.box-filters .moduletable {
	padding: calc(var(--space) / 2) 0;
}

.accordion-filtro::-webkit-scrollbar,
.accordion-multirichiesta::-webkit-scrollbar {
	display: block !important;
	width: 10px;
}

.box-filters::-webkit-scrollbar-track {
	background: var(--white);
}

.box-filters::-webkit-scrollbar-thumb {
	background-color: var(--green);
	outline: none;
}

.box-filters .uk-accordion-title::before {
	top: -8px;
	position: relative;
}

.box-filters .uk-accordion {
	margin-bottom: 0;
}


.og-bar-mobile-fixed.hide {
	position: fixed;
	right: -25px;
	bottom: 25px;
	opacity: 0;
}

.og-bar-mobile-fixed {
	position: fixed;
	right: 25px;
	bottom: 25px;
	opacity: 1;
	z-index: 1115;
}

.ob-notfound {
	font-size: 1.2rem;
	text-transform: uppercase;
}

.layout-header,
.layout-header .og-video-browserplayer {
	/* height: 60vh; */
	height: calc(100vh - 144px);
	min-height: 450px;
	/* max-height: 650px; */
	background-size: cover;
	background-repeat: no-repeat;
}

.layout-header .og-video-browserplayer video {
	object-fit: cover;
	height: 60vh;
	width: 100%;
	min-height: 720px;
	background-size: cover;
	background-repeat: no-repeat;
}

.itemid-338 .layout-header {
	background-position: center;
}

.pos-unpublish strong {
	font-size: 1.3rem;
}

.pos-unpublish svg {
	width: 50px;
	margin-bottom: 10px;
}

.pos-unpublish svg g path {
	fill: #faa05a;
}

.pos-unpublish svg circle {
	fill: none;
	stroke: #faa05a;
	stroke-width: 4;
}

.pos-unpublish svg>path {
	fill: none;
	stroke: #faa05a;
	stroke-width: 4;
	stroke-dasharray: 28.27;
	stroke-dashoffset: 28.27;
}

.pos-unpublish svg>path.mouth-left {
	animation: drawLeftMouth 1.5s ease-out forwards infinite;
}

.pos-unpublish svg>path.mouth-right {
	animation: drawRightMouth 1.5s ease-out forwards infinite;
}

@keyframes drawLeftMouth {
	from {
		stroke-dashoffset: 28.27;
		/* Inizio dal centro */
	}

	to {
		stroke-dashoffset: 56.54;
		/* Completamento del sorriso a sinistra */
	}

}

@keyframes drawRightMouth {
	from {
		stroke-dashoffset: 28.27;
		/* Inizio dal centro */
	}

	to {
		stroke-dashoffset: 0;
		/* Completamento del sorriso a destra */
	}
}

.item a .img-container>img {
	opacity: 1;
	width: 100%;
}

.item a:hover .img-container>img {
	opacity: .8;
}

.uk-breadcrumb li:before {
	margin: 0 10px !important;
}

.uk-breadcrumb li a {
	font-size: .8rem;
	text-transform: uppercase;
	color: var(--blue);
}

.uk-breadcrumb li a:hover {
	color: var(--link);
}

.uk-breadcrumb>:last-child>span {
	display: none;
}

.schema-full .uk-breadcrumb li:last-child:after,
.schema-full-2 .uk-breadcrumb li:last-child:after,
.schema-full-3 .uk-breadcrumb li:last-child:after {
	content: url(../images/dot.svg);
	display: inline-block;
	width: 22px;
	height: 5px;
	top: -3px;
	position: relative;
}

.zoo-pagination {
	margin-top: calc(var(--space) / 2);
	text-align: center;
	padding: 0;
	text-align: right;
}

.zoo-pagination>.pagination-bg>*:not(:last-child) {
	margin-right: 10px;
}

.zoo-pagination>.pagination-bg>a {
	color: var(--blue);
}

.zoo-pagination>.pagination-bg>a:hover {
	color: var(--link);
}

.zoo-pagination>.pagination-bg>span {
	background: var(--darkBeige);
	padding: 5px 3px 1px;
	line-height: 1;
	width: 22px;
	height: 22px;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
}

.grecaptcha-badge {
	right: -350px !important;
}

.transition,
.transition:before,
.transition:after,
#destinazioni .items .image a img,
.schema-full .altra-immagine a.uk-icon,
.schema-full-3 .altra-immagine a.uk-icon,
.btn,
.uk-slidenav:hover,
.uk-breadcrumb li a,
.schema-full .pos-wishlist a,
.pos-link>a,
.items .teaser-item .image a img,
#ob-filtrozoo .items .item a>img,
footer a,
.events-default .evento a>img,
#evento .related-container a>img,
.ob-form-events .ob-filter-content li,
.zoo-pagination>.pagination-bg>a,
header .menu svg #top,
header .menu svg #bottom,
.lang-switcher ul>li:before,
header .wishlist,
.wishlist-item a,
footer .socials a svg,
.ehc .slider-exp-container .uk-slider-items .uk-active,
.item a .img-container>img,
.schema-full .fancy>.uk-icon:hover,
[class*=uk-modal-close-],
#offcanvas .off-menu .uk-nav li a,
#offcanvas .off-menu .uk-nav li a::before,
#offcanvas .off-social a svg,
#offcanvas .off-social a svg,
a.badge {
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-o-transition: var(--transition);
}

/* #endregion GLOBAL */

/* #region WISHLIST */

.wishlist-item {
	top: 25px;
	right: 25px;
}

.wishlist-item a {
	background: var(--white);
	border-radius: 23px;
	display: inline-block;
	width: 52px;
	height: 52px;
	position: relative;
}

.wishlist-item a:hover {
	background: var(--lightGray);
}

.wishlist-item a.uk-icon-heart:before,
.wishlist-item a.uk-icon-heart-o:before {
	content: url(../images/icon-heart-full-purple.svg);
	content: url(../images/icon-heart-empty-purple.svg);
	display: inline-block;
	width: 27px;
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
}


.wishlist-item a.uk-icon-heart:before {
	content: url(../images/icon-heart-full-purple.svg);
}

.wishlist-item a>span {
	display: none;
}

.pos-wishlist a>span {
	text-transform: uppercase;
}

header .wishlist:hover {
	background: var(--darkBeige);
}

header .wishlist .text .script {
	font-size: 1.889rem;
	line-height: .7;
	color: var(--text);
}

header .wishlist .text .h2 {
	font-size: 1rem;
	line-height: 1;
}

header .wishlist svg {
	display: none;
}

header .wishlist span {
	position: relative;
}

header .wishlist.ow_mod-link:after {
	content: url(../images/icon-heart-empty-purple.svg);
	display: inline-block;
	width: 33px;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
}

/* #endregion WISHLIST */

/* #region SCHEMA */

/* SCHEMA */

.schema-full .uk-breadcrumb {
	padding: calc(var(--space) / 2) 0 0;
	margin-bottom: 0;
}

.schema-full .altra-immagine,
.schema-full-3 .altra-immagine {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.schema-full .altra-immagine a img,
.schema-full-3 .altra-immagine a img {
	display: none;
}

.schema-full .altra-immagine a.uk-icon,
.schema-full-3 .altra-immagine a.uk-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .1);
	overflow: hidden;
}

.schema-full .altra-immagine a.uk-icon:hover,
.schema-full-3 .altra-immagine a.uk-icon:hover {
	background: rgba(0, 0, 0, 0);
}

.schema-full .altra-immagine a.uk-icon svg,
.schema-full-3 .altra-immagine a.uk-icon svg {
	display: none;
}

.schema-full .altra-immagine a.uk-icon:after,
.schema-full-3 .altra-immagine a.uk-icon:after {
	content: url(../images/icon-gallery.svg);
	position: absolute;
	bottom: 25px;
	right: 25px;
	display: inline-block;
	width: 35px;
	z-index: 2;
}

#evento .schema-full .altra-immagine a.uk-icon:after {
	content: url(../images/icon-gallery-full.svg) !important;
	width: 57px !important;
	right: unset;
	left: 50px;
}

#evento .schema-full .fancy>.uk-icon:before {
	content: unset;
}

.schema-full.destinazione-full .pos-wishlist {
	padding-bottom: 0;
	border-bottom: 0;
}

.schema-full .pos-wishlist a,
.schema-full-2 .pos-wishlist a,
.schema-full-3 .pos-wishlist a {
	color: var(--link);
}

.schema-full .pos-wishlist a:hover,
.schema-full-2 .pos-wishlist a:hover,
.schema-full-3 .pos-wishlist a:hover {
	color: var(--linkHover);
	text-decoration: none;
}

.schema-full .pos-wishlist .ow-icon.uk-icon-heart-o:before,
.schema-full-2 .pos-wishlist .ow-icon.uk-icon-heart-o:before,
.schema-full-3 .pos-wishlist .ow-icon.uk-icon-heart-o:before {
	content: url(../images/icon-heart-empty-purple.svg);
	display: inline-block;
	vertical-align: middle;
	animation: pulse 1s infinite alternate;
	width: 25px;
	position: relative;
	top: 2px;
	margin-right: 10px;
}

.schema-full .pos-wishlist .ow-icon.uk-icon-heart:before,
.schema-full-2 .pos-wishlist .ow-icon.uk-icon-heart:before,
.schema-full-3 .pos-wishlist .ow-icon.uk-icon-heart:before {
	display: inline-block;
	vertical-align: middle;
	animation: pulse 1s infinite alternate;
	width: 25px;
	position: relative;
	top: 2px;
	margin-right: 10px;
	content: url(../images/icon-heart-full-purple.svg) !important;
}

.schema-full .pos-foto3d a:before {
	content: url(../images/icon-3d.svg);
	display: inline-block;
	width: 25px;
	margin-right: 10px;
	position: absolute;
	top: 1px;
	left: 0;
}

.schema-full .pos-foto3d {
	margin-top: 25px;
	padding-top: 25px;
	border-top: solid 1px var(--lightGray);
}

.schema-full .pos-foto3d a {
	color: var(--link);
	padding-left: 40px;
	text-decoration: none;
}

.schema-full .pos-foto3d a:hover {
	color: var(--linkHover);
	text-decoration: none;
}

.schema-full .pos-descrizione p:last-child {
	margin-bottom: 0;
}


@keyframes pulse {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

.schema-full .related-container .image img {
	border-radius: var(--brder-radius);
	width: 100%;
}

.schema-full .right .h2 {
	margin-bottom: 15px;
}

/* #endregion SCHEMA */

/* #region DESTINAZIONE RM */

.video-destinazioni-container video {
	aspect-ratio: 16 / 9;
	width: 100%;
}

#evento .related-container a>img,
.events-default .evento a>img,
#ob-filtrozoo .items .item a>img,
.items .teaser-item .image a img {
	opacity: 1;
}

#evento .related-container a:hover>img,
.events-default .evento a:hover>img,
#ob-filtrozoo .items .item a:hover>img,
.items .teaser-item .image a:hover img {
	opacity: .85;
}

#destinazione .pos-address {
	margin-top: 25px;
}

#destinazione .pos-address:before {
	content: url(../images/map-marker.svg);
	display: inline-block;
	width: 12px;
	position: relative;
	top: 0;
	margin-right: 5px;
}

#destinazione .teaser-item>.item {
	height: 100%;
	background: var(--white);
}

#modal-3d {
	padding: 40px;
	background: rgba(0, 0, 0, .8);
}

#modal-3d iframe {
	width: 100%;
	height: calc(100vh - 80px);
}

#modal-3d .uk-modal-close-full {
	padding: 10px;
	color: var(--white);
	background: var(--red);
	/* left: 0; */
	right: -40px;
	top: -40px;
}

#modal-3d .uk-modal-close-full:hover {
	padding: 10px;
	color: var(--white);
	background: var(--redDark);
}

.schema-full .fake-slider-container .uk-slideshow-items,
.schema-full .fake-slider-container .uk-slideshow-items img {
	width: 100%;
	/* height: 65vh;
	max-height: 750px; */
	height: calc(100vh - 144px);
	min-height: 600px;
	object-fit: cover;
	object-position: center;
	aspect-ratio: unset !important;
}

.schema-full .fancy>.uk-icon svg,
.schema-full .fancy>a>img {
	display: none;
}

.schema-full .fancy>.uk-icon {
	position: absolute;
	bottom: calc(var(--space) / 2);
	z-index: 1;
	/* left: calc(var(--space) / 2); */
	right: 40px;
	width: 57px;
	height: 57px;
	border-radius: 22px;
	display: inline-block;
	background: var(--white);
}

.schema-full .fake-slider-container .arrow-left {
	/* left: calc(var(--space) * 1 + 22px);
	right: unset; */
	right: 174px;
	left: unset;
}

.schema-full .fake-slider-container .arrow-right {
	right: 107px;
	left: unset;
	/* left: calc(var(--space) * 2 - 6px);
	right: unset; */
}

.schema-full .fake-slider-container .uk-slidenav {
	bottom: 22px;
	top: unset;
	position: absolute !important;
	z-index: 1;
}

.schema-full .fancy>.uk-icon:hover {
	background: var(--lightGray);
}

.fake-slider-container .uk-slideshow-items>* {
	width: 100%;
}

/* #evento .fancy>.uk-icon:before, */
.schema-full .fancy>.uk-icon:before {
	content: url(../images/icon-gallery.svg);
	display: inline-block;
	width: 40px;
	position: absolute;
	left: 50%;
	top: calc(50% - 7px);
	transform: translate(-50%, -50%);
}

/* #evento .fancy>.uk-icon:after, */
.schema-full .fancy>.uk-icon:after {
	content: 'GALLERY';
	display: inline-block;
	font-family: var(--font-title);
	text-transform: uppercase;
	line-height: 1;
	font-size: .45rem;
	left: 50%;
	transform: translateX(-50%);
	bottom: 8px;
	position: absolute;
	color: var(--text);
}

.schema-full .fake-slider-container:after {
	content: '';
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
	height: 245px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	pointer-events: none;
}

#destinazione .uk-breadcrumb li:nth-child(3) {
	/* display: none; */
}

#foto360-pannellum-viewer-1 {
	width: 100% !important;
	height: calc(100vh - 80px) !important;
}

#destinazioni.dhc .destinations-container {
	margin-top: 0;
}

#destinazione .fake-slider-container .img>img {
	width: 100vw;
	height: 60vh;
	min-height: 720px;
	background-size: cover;
	background-repeat: no-repeat;
	object-fit: cover;
	background-position: center;
}

#destinazione .categories>a:not(:last-child),
#destinazioni .categories>a:not(:last-child) {
	margin-right: 15px;
}

#destinazione .gallery-controller {
	bottom: 0;
	left: 0;
	width: 100%;
}


/* #endregion DESTINAZIONE RM */

/* #region ITINERARIO RM */

.lista-tappe {
	padding: calc(var(--space) / 2) 25px;
	font-size: .9rem;
	line-height: 1.1;
	text-align: left;
	list-style-type: none;
}

#itinerario .video {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	cursor: pointer;
	width: 100%;
}

#video-itinerario-container {
	/* max-width: 1800px; */
	max-width: 1920px;
	margin: 0 auto;
}

#video-itinerario-container:before,
#video-itinerario-container.pause:hover:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0);
	z-index: 1;
	pointer-events: none;
}

#video-itinerario-container.pause:before {
	background-color: rgba(0, 0, 0, .3);
}

#video-itinerario-container .fake-player {
	width: 123px;
	height: 123px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
	border-radius: 100px;
}

#video-itinerario-container.pause .fake-player {
	opacity: 1;
}

#video-itinerario-container.pause .fake-player:before {
	content: url(../images/player-video-it.svg);
	display: inline-block;
	position: absolute;
	width: 123px;
	height: 123px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

html[lang="it"] #video-itinerario-container.pause .fake-player:before {
	content: url(../images/player-video-it.svg);
}

html[lang="en"] #video-itinerario-container.pause .fake-player:before {
	content: url(../images/player-video-en.svg);
}

#video-itinerario-container.pause:hover .fake-player:after {
	transform: rotate(180deg);
}

#video-itinerario-container .video-3d-link {
	top: calc(var(--space) / 2);
	right: 25px;
	z-index: 2;
}

#video-itinerario-container .video-3d-link a strong {
	font-size: 1.2rem !important;
}

#itinerario .media-container .guide a,
#itinerario .media-container .gpx a {
	padding-left: 35px;
}

#itinerario .media-container .guide a:before {
	content: url(../images/icon-guide.svg);
	display: inline-block;
	width: 23px;
	position: absolute;
	left: 0;
	top: -2px;
}

#itinerario .media-container .gpx a:before {
	content: url(../images/icon-gpx.svg);
	display: inline-block;
	width: 24px;
	position: absolute;
	left: 0;
	top: -3px;
}

.itinerary-modal .uk-modal-dialog {
	width: auto !important;
}

.itinerary-modal .uk-modal-close-default {
	top: 0;
	right: 0;
	padding: 8px;
	background: var(--text) !important;
	color: var(--white);
}

.itinerary-modal .uk-modal-close-default:hover {
	background: var(--white) !important;
	color: var(--text);
}

#itinerario .media-container a:hover {
	color: var(--linkHover);
}

#itinerario .maplayout {
	height: 65vh !important;
	min-height: 350px;
	max-height: 700px;
}

.gm-style .gm-style-iw-c {
	border-radius: 0 !important;
	padding: 0 !important;
	-webkit-box-shadow: 0 2px 9px 0px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 9px 0px rgba(0, 0, 0, .2);
}

.gm-style .gm-style-iw-d {
	overflow: auto !important;
}

.gm-style .gm-style-iw {
	padding: 0 !important;
}

.info-window img {
	max-width: 270px !important;
	margin-bottom: 10px !important;
	border-radius: 0 !important;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.info-window strong {
	margin-bottom: 10px;
	font-size: 1rem;
	text-transform: uppercase;
	max-width: 240px !important;
	padding: 0 15px;
	text-align: center;
	font-weight: 500;
}

.gm-ui-hover-effect {
	position: absolute !important;
	top: 0;
	right: 0;
	background: rgba(255, 255, 255, .45) !important;
}

.gm-style-iw-ch {
	padding-top: 0 !important;
}

#modal-mappa_itinerario .uk-modal-dialog {
	border-radius: 0;
	padding: 0;
	width: auto;
	max-width: 1000px !important;
}

#modal-mappa_itinerario .uk-modal-dialog img {
	width: 1000px;
}

/* #endregion ITINERARIO RM */

/* #region EVENTO RM */

#evento .googlemapspro,
#evento .googlemapspro .maplayout {
	width: 100% !important;
	aspect-ratio: 1 / 1;
	height: auto !important;
}

#eventi .evento .pos-data:before,
#evento .pos-data:before,
#evento .related-container .date>span:before {
	content: url(../images/icon-calendar.svg);
	display: inline-block;
	width: 17px;
	position: relative;
	top: 2px;
	margin-right: 5px;
}

#eventi .evento .luogo-evento>span:before,
#evento .luogo-evento:before,
#alloggi .item .pos-indirizzo:before,
#evento .related-container .place>span:before {
	content: url(../images/map-marker.svg);
	display: inline-block;
	width: 13px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

#evento .pos-dove .luogo-evento {
	margin: 20px 0;
	/* padding-bottom: 20px;
	border-bottom: solid 1px var(--beige); */
}

#evento .pos-quando,
#evento .pos-informazioni-aggiuntive {
	margin-top: 20px;
	padding-top: 20px;
	border-top: solid 1px var(--beige);
}

#evento .pos-orario:before {
	content: url(../images/icon-clock.svg);
	display: inline-block;
	width: 16px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

#servizio-privavto .uk-breadcrumb li:last-child a,
#shopping-full .uk-breadcrumb li:last-child a,
#ristorante .uk-breadcrumb li:last-child a,
#alloggio .uk-breadcrumb li:last-child a,
#evento .uk-breadcrumb li:last-child a {
	display: none;
}

/* FILTRI FRONTPAGE */


.ob-form-events .ob-filter-content ul {
	list-style: none;
	padding-left: 0;
}

.ob-form-events .ob-filter-content li {
	text-transform: uppercase;
	font-weight: var(--font-bold);
	display: inline-block;
	margin: 0 10px;
	color: var(--link);
}

.ob-form-events .ob-filter-content li label {
	cursor: pointer;
}

.ob-form-events .ob-filter-content .ob-filter-active,
.ob-form-events .ob-filter-content li:hover {
	color: var(--linkHover)
}

.ob-form-events input[type="checkbox" i],
.ob-filter-content input[type="checkbox" i] {
	display: none;
}

.ob-form-events .ob-filter-content label:before {
	width: 40px;
	display: inline-block;
	vertical-align: middle;
}

#eventi.evhc {
	background-image: none;
}

#evento .pos-immagine-principale>.uk-position-relative>img {
	width: 100%;
}

/* LINK VIDEO STREAMING */
.link-evento-diretta {
	bottom: calc(var(--space) / 2);
	left: calc(var(--space) / 2);
	background: var(--white);
	width: auto;
	display: inline-block;
	padding: 15px;
	box-shadow: 0 0 9px rgba(0, 0, 0, .1);
	z-index: 1;
}

.link-evento-diretta .text:before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	top: 0px;
	background: #de7365;
	border-radius: 30px;
	text-align: center;
	color: var(--white);
	position: relative;
	margin-right: 10px;
	opacity: 1;
	animation: diretta 1s ease-out forwards infinite;
}

@keyframes diretta {
	0% {
		opacity: 0;
	}

	49% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}

}

.link-video-diretta {
	margin-top: 20px;
	padding-top: 20px;
	border-top: solid 1px var(--beige);
}

.link-video-diretta .uk-icon svg,
.link-evento-diretta .uk-icon svg {
	position: relative;
	top: -2px;
}


.link-video-diretta a .text {
	color: var(--link);
}

.link-video-diretta a svg,
.link-video-diretta a svg {
	color: var(--purple);
}

.link-video-diretta a:hover svg,
.link-video-diretta a:hover svg,
.link-video-diretta a:hover .text {
	color: var(--purple);
}

.evhc .no-data .img-container::after {
	content: unset !important;
}

/* #endregion EVENTO RM */

/* #region INTERESSE RM */

#interesse .pos-events-related .intro:before {
	content: url(../images/icon-calendar.svg);
	display: inline-block;
	width: 23px;
	position: relative;
	top: 2px;
	margin-right: 5px;
}

#interesse .pos-events-related .event-related a {
	color: var(--link);
}

#interesse .pos-events-related .event-related a:hover {
	color: var(--linkHover);
}

#interesse .pos-events-related .event-related:last-child .h2 {
	margin-bottom: 0;
}

#interesse .slider-exp-container>.main-container {
	padding: 0 !important;
}

#interesse .main-container .content {
	z-index: 1;
	position: relative;
}

#interesse #ob-filtrozoo .items .item>.bck-light {
	background-color: var(--white) !important;
}

/* #endregion INTERESSE RM */

/* #region ALLOGGI RM */

.schema-full-3 .top .category {
	margin-right: 15px;
}

.schema-full-3 .top .pos-classificazione .uk-icon {
	top: -3px;
}

.schema-full-3 .top .pos-classificazione .uk-icon:not(:last-child) {
	margin-right: 5px;
}

#servizio-privavto .pos-telefono:before,
#shopping-full .pos-telefono:before,
#alloggio .pos-telefono:before,
#ristorante .pos-telefono:before {
	content: url(../images/icon-phone.svg);
	display: inline-block;
	width: 16px;
	position: relative;
	margin-right: 5px;
}

#servizio-privavto .pos-mail:before,
#shopping-full .pos-mail:before,
#alloggio .pos-mail:before,
#ristorante .pos-mail:before {
	content: url(../images/icon-email.svg);
	display: inline-block;
	width: 16px;
	position: relative;
	margin-right: 5px;
}

#servizio-privavto .pos-website:before,
#shopping-full .pos-website:before,
#alloggio .pos-website:before,
#ristorante .pos-website:before {
	content: url(../images/icon-website.svg);
	display: inline-block;
	width: 16px;
	position: relative;
	margin-right: 5px;
}

#servizio-privavto .pos-indirizzo:before,
#shopping-full .pos-indirizzo:before,
#alloggio .pos-indirizzo:before,
#ristorante .pos-indirizzo:before {
	content: url(../images/icon-marker.svg);
	display: inline-block;
	width: 11px;
	position: relative;
	margin-right: 10px;
	left: 3px;
}

#alloggio .pos-ospiti:before {
	content: url(../images/icon-user.svg);
	display: inline-block;
	width: 16px;
	position: relative;
	margin-right: 5px;
}

#servizio-privavto .pos-orario:before,
#shopping-full .pos-orario:before,
#ristorante .pos-orario:before {
	content: url(../images/icon-clock.svg);
	display: inline-block;
	width: 16px;
	position: relative;
	margin-right: 5px;
}

#servizio-privavto .pos-contacts a,
#shopping-full .pos-contacts a,
#alloggio .pos-contacts a,
#ristorante .pos-contacts a {
	color: var(--link);
}

#servizio-privavto .pos-contacts a:hover,
#shopping-full .pos-contacts a:hover,
#alloggio .pos-contacts a:hover,
#ristorante .pos-contacts a:hover {
	color: var(--linkHover);
}

#servizio-privavto .pos-contacts .contact:not(:last-child),
#shopping-full .pos-contacts .contact:not(:last-child),
#alloggio .pos-contacts .contact:not(:last-child),
#ristorante .pos-contacts .contact:not(:last-child) {
	margin-right: 10px;
}

#alloggio .codice-container>span {
	font-size: .8rem;
	line-height: 1;
}

#alloggio .pos-services .check-list {
	column-count: 4;
	padding-left: 0;
	list-style-type: none;
}

#alloggio .pos-services .check-list>li {
	position: relative;
	padding-left: 25px;
	padding-right: 5px;
	color: var(--white);
	text-transform: uppercase;
	display: block;
}

#alloggio .pos-services .check-list>li:before {
	content: url(../images/icon-check-white.svg);
	position: absolute;
	top: -2px;
	left: 0;
	width: 14px;
	display: inline-block;
}

#ob-filtrozoo .items .item>.bck-light {
	background-color: rgba(241, 222, 205, .3);
}

#ob-filtrozoo .item .info-container {
	padding: 25px;
	line-height: 1;
}

.icon-star:before {
	content: url(../images/icon-star.svg);
	display: inline-block;
	width: 18px;
}

.stars>span:not(:last-child) {
	margin-right: 5px;
}

#ob-filtrozoo .item a.text:hover {
	color: var(--link);
	text-decoration: underline;
}

#ob-filtrozoo .item .pos-sito:before {
	content: url(../images/icon-web.svg);
	display: inline-block;
	width: 17px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

#ob-filtrozoo .item .pos-numero:before {
	content: url(../images/icon-phone.svg);
	display: inline-block;
	width: 17px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

#alloggi .item .pos-mail:before,
#ristoranti .item .pos-mail:before {
	content: url(../images/icon-mail.svg);
	display: inline-block;
	width: 17px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}

/* COMMENTATO PER RICHIESTA CAMBIO FORMATO DA COMUNE */
/* #ob-filtrozoo .item .img-container img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
} */

#ob-filtrozoo .box-filters label {
	line-height: 1;
	font-size: 1rem;
}

/* #endregion ALLOGGI RM */


/* #region RISTORANTI RM */

#ristorante .pos-menu .uk-icon {
	position: relative;
	top: -2px;
}

/* #endregion RISTORANTI RM */

/* #region PAGES */


/* 404 */
#forseo_error_page_content {
	padding: var(--space) 25px;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	text-align: center;
}

/* CONTACTS */
#map-container iframe {
	width: 100%;
	height: 65vh;
	min-height: 400px;
	max-height: 650px;
}

#map-container:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: var(--lightBeige);
	display: block;
	mix-blend-mode: multiply;
}

.contcts-container .address:before {
	content: url(../images/map-marker.svg);
	display: inline-block;
	width: 18px;
	position: relative;
	top: 2px;
	margin-right: 10px;
}

.contcts-container .phone:before {
	content: url(../images/icon-phone.svg);
	display: inline-block;
	width: 21px;
	position: relative;
	top: 1px;
	margin-right: 10px;
}

.contcts-container .email:before {
	content: url(../images/icon-mail.svg);
	display: inline-block;
	width: 21px;
	position: relative;
	top: 2px;
	margin-right: 10px;
}

#info-modal a,
.contcts-container .contacts a {
	color: var(--text);
	transition: none !important;
}

#info-modal a:hover,
.contcts-container .contacts a:hover {
	color: var(--link);
	text-decoration: underline;
	transition: none !important;
}

.video-pedalando iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.info-point:before {
	content: url(../images/info-point.svg);
	display: inline-block;
	width: 37px;
	margin-right: 10px;
	position: relative;
}

.og-bar-mobile-fixed .info-point:before {
	width: 50px;
	height: 50px;
	margin-right: 0;
}

.og-bar-mobile-fixed {
	display: none;
}

/* WISHLIST */
.omni-pagine-wishlist .moduletable h1.uk-margin-remove-bottom {
	font-size: 1.5rem;
	margin-bottom: calc(var(--space) / 2) !important;
	line-height: 1.3;
}

#servizi-privavti .left .uk-list li:last-child {
	display: none;
}



/* #endregion PAGES */

/* #region OVERRIDE CSS */

.fancybox__container {
	z-index: 9999 !important;
}

.uk-modal {
	z-index: 9999;
}

.uk-offcanvas-bar .uk-close,
[class*=uk-modal-close-] {
	top: -5px;
	right: -5px;
	padding: 15px;
	background: var(--linkHover);
	color: var(--white);
	border-top-right-radius: 30px;
	border-radius: 18px;
}

.uk-offcanvas-bar .uk-close {
	top: 10px;
	right: 10px;
}

.uk-offcanvas-bar .uk-close:hover,
[class*=uk-modal-close-]:hover {
	background: var(--link);
	color: var(--white);
}

.come-arrivare-container .uk-accordion-title {
	display: block;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--white);
	background: var(--blue);
	padding: 10px 25px 5px;
	border-radius: 25px;
	box-shadow: 0 0 1px rgba(0, 0, 0, .01);
	margin-bottom: 0;
	line-height: 1;
}

.come-arrivare-container .uk-accordion-title:hover {
	background: var(--blueLight);
	color: var(--white);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.come-arrivare-container .uk-open>.uk-accordion-title::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.come-arrivare-container .uk-accordion-title::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

#modal-3d .uk-modal-close-full {
	padding: 10px;
	color: var(--white);
	background: var(--link);
	right: -40px;
	top: -40px;
}

#modal-3d .uk-modal-close-full:hover {
	padding: 10px;
	color: var(--white);
	background: var(--linkHover);
}

.uk-notification-message {
	background: var(--white);
	color: var(--text);
	font-size: .8rem;
	line-height: 1.1;
	box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.1);
}

.uk-dotnav>li>* {
	width: 20px;
	height: 20px;
	background-color: var(--white);
	border: solid 1px var(--purple);
}

.uk-dotnav>li>*:hover,
.uk-dotnav>.uk-active>* {
	background-color: var(--purple);
	border-color: var(--purple);
	border: solid 1px var(--purple);
}

.uk-slidenav {
	width: 57px;
	height: 57px;
	border-radius: 22px;
	display: inline-block;
	background: var(--beige);
}

.uk-slidenav:hover {
	background: var(--lightBeige);
}

.uk-slidenav svg {
	display: none;
}

.uk-slidenav::before {
	display: inline-block;
	width: 15px;
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.uk-slidenav-previous::before {
	content: url(../images/arrow-slider-left.svg);
}

.uk-slidenav-next::before {
	content: url(../images/arrow-slider-right.svg);
}

.uk-tooltip {
	background: var(--purpleOpacity);
	color: var(--white);
	font-size: .8rem;
	text-transform: uppercase;
	font-family: var(--text);
	border-radius: 15px;
}

.uk-sticky {
	height: 1px !important;
	margin-top: -1px !important;
}

.uk-breadcrumb {
	margin-bottom: 0;
}

.uk-modal-body {
	border-radius: 30px;
}


.eb-close {
	top: 0 !important;
	right: 0 !important;
	padding: 0 !important;
	background: var(--linkHover) !important;
	color: var(--white) !important;
	border-radius: 0 !important;
	width: 50px !important;
	height: 50px !important;
}

.eb-close:hover {
	background: var(--link) !important;
}

.eb-close>span {
	display: var(--eb-close-button-icon, none);
	font-size: 1em;
	padding: 0 !important;
	line-height: 1 !important;
	margin-top: -5px;
}

.eb-1 .eb-dialog {
	box-shadow: 0 2px 9px 0px rgba(0,0,0,.08);
}

/* #endregion OVERRIDE CSS */

/* #region FORM */

.rsform-type-submitbutton {
	text-align: center;
}

.rsform-error {
	border-color: #dc8d99 !important;
	background: #fff7f8 !important;
	color: #f0506e !important;
	font-weight: bold !important;
}

.rsform-error::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #f0506e !important;
}

.rsform-error::-moz-placeholder {
	/* Firefox 19+ */
	color: #f0506e !important;
}

.rsform-error:-moz-placeholder {
	/* Firefox 18- */
	color: #f0506e !important;
}

.rsform-error::-ms-input-placeholder {
	/* Edge 12-18 */
	color: #f0506e !important;
}

.uk-input,
.uk-select,
.uk-select:not([multiple]):not([size]) {
	height: 50px;
}

.uk-input::placeholder,
.uk-textarea::placeholder {
	color: var(--text);
}

fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

/* #endregion FORM */

/* RESPONSIVE */

@media(min-width:1920px) {
	.video-destinazioni-container video {
		width: 100vw;
		max-height: 1080px;
		object-fit: cover;
		object-position: center;
	}
}

@media(max-width:1919px) {}

@media(max-width:1699px) {
	#offcanvas .column:not(.center) {
		width: 30%;
	}

	#offcanvas .column.center {
		width: 40%;
	}
}

@media(min-width:1600px) {}

@media(max-width:1599px) {}

@media(max-width:1499px) {
	#offcanvas .column:not(.center) {
		width: 22%;
	}

	#offcanvas .column.center {
		width: 56%;
	}
}

@media(max-width:1399px) {

	.pphc .bottom a img {
		max-width: 330px;
	}

	.pphc .bottom .left {
		text-align: left;
	}

	.pphc .bottom .right {
		text-align: right;
	}

}

@media(max-width:1280px) {
	.pphc .bottom .center {
		width: 50%;
	}

	.pphc .bottom .left,
	.pphc .bottom .right {
		width: 25%;
	}

	.pphc .bottom .center>div:before {
		left: 0;
	}

	#offcanvas .column:not(.center) {
		width: 20%;
	}

	#offcanvas .column.center {
		width: 60%;
	}

}

@media(max-width:1200px) {

	:root {
		--h1: 2.6rem;
		--h1LH: 2.6rem;
	}

	.schema-full .left {
		padding-right: 30px;
	}

	#alloggio .pos-services .check-list {
		column-count: 3;
	}

	#alloggi .cin-container,
	#alloggi .cin-container .pos-cin,
	#alloggi .cin-container .pos-cir {
		display: block !important;
	}

	#alloggi .cin-container .pos-cir {
		margin-top: 5px;
	}

	#alloggi .cin-container .separator {
		display: none !important;
	}

}

/* @media(min-width:1200px) and (max-width:1599px) {} */

@media(min-width:960px) and (max-width:1199px) {}

@media(max-width:960px) {

	.schema-full .left {
		padding-right: 0;
		border-right: none;
	}

	.filters-container .uk-sticky {
		height: auto !important;
		min-height: unset;
		max-height: unset;
		overflow-y: unset;
	}

	.pphc .bottom .center {
		width: 100%;
		-ms-flex-order: -1;
		-webkit-order: -1;
		order: -1;
	}

	.pphc .bottom .left,
	.pphc .bottom .right {
		width: 50%;
		-ms-flex-order: 9;
		-webkit-order: 9;
		order: 9;
	}

	.pphc .bottom .center>.pad-y {
		padding-top: calc(var(--space) / 2);
		padding-bottom: calc(var(--space) / 2);
	}

	.pphc .bottom .center>div:before,
	.pphc .bottom .center>div:after {
		content: unset;
	}

	.pphc .bottom .left {
		text-align: center;
		padding-right: 15px;
	}

	.pphc .bottom .right {
		text-align: center;
		padding-right: 15px;
	}

	.pphc .bottom .left img,
	.pphc .bottom .right img {
		width: 100%;
	}

	.vdhc .uk-slideshow-items .intro-container {
		padding-top: calc(var(--space) / 2);
		padding-bottom: 25px;
	}

	.vdhc .uk-slideshow-items .link-container {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.vdhc .uk-slideshow .uk-position-center-right {
		right: 0;
	}

	.vdhc .uk-slideshow .uk-position-center-left {
		left: 0;
	}

	.vdhc .uk-slideshow .script {
		margin-bottom: 10px !important;
		font-size: 2.4rem;
	}

	#offcanvas .column:not(.center) {
		display: none;
	}

	#offcanvas .column.center {
		width: 100%;
	}

	.noleggio-container .items .main-container>.uk-grid>* {
		width: 100%;
	}

	/* .video-destinazioni-container video {
		aspect-ratio: 1 / 1;
		object-fit: cover;
		object-position: center;
	} */

	.slider-home-events {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	.slider-home-events .item .event {
		padding-left: calc(var(--space) * .75);
	}

	.slider-home-events .item .text {
		padding-right: calc(var(--space) * .75);
		padding-left: 15px;
	}

	.sub-footer .flag-blu,
	.sub-footer .flag-lilla {
		text-align: center;
	}

	.sub-footer .flag-blu {
		-ms-flex-order: -1;
		-webkit-order: -1;
		order: -1;
		justify-content: center;
	}

}

@media(min-width:768px) and (max-width:960px) {}

@media(max-width:767px) {

	.layout-header,
	.layout-header .og-video-browserplayer,
	/* #itinerario .video, */
	#destinazione .fake-slider-container .img>img,
	.schema-full .pos-immagine-principale>.uk-position-relative>img {
		aspect-ratio: 1 / 1;
		object-fit: cover;
		object-position: center center;
		height: auto;
		min-height: auto;
	}

	#video-itinerario-container .video-3d-link {
		bottom: 25px;
		right: 25px;
	}

	#alloggio .pos-services .check-list {
		column-count: 2;
	}

	#video-itinerario-container .video-3d-link {
		position: unset !important;
		text-align: center;
		padding-top: calc(var(--space) / 2);
	}

	#video-itinerario-container.pause:before {
		aspect-ratio: 16 / 9;
	}

	#video-itinerario-container.pause .fake-player:before {
		width: 25px;
		height: 25px;
	}

	#video-itinerario-container.pause:before {
		background-color: rgba(0, 0, 0, 0);
	}

	#video-itinerario-container.pause .fake-player:before,
	#video-itinerario-container .fake-player {
		display: none;
	}

	.beimage-container {
		display: none;
	}

	.dhc .top .intro {
		position: unset !important;
		background-image: unset;
		padding-top: 0;
	}

	.dhc .top .intro .h1 {
		color: var(--text) !important;
	}

	.dhc .top .intro .script {
		color: var(--blue) !important;
	}

	.ehc .main-container .intro-container {
		margin-bottom: calc(var(--space) * 1.5);
	}

	.dhc .destinations-container {
		margin-top: 0;
	}

	.vdhc .uk-slideshow-items,
	.vdhc .uk-inline img {
		aspect-ratio: 1 / 1 !important;
		max-height: 767px;
	}

	header .menu-container .info-link,
	header .menu-container .lang-switcher {
		display: none !important;
	}

	header .top-menu .uk-width-2-5 {
		width: 20%;
	}

	header .top-menu .uk-width-1-5 {
		width: 60%;
	}

	header .top-menu .wishlist-container .wishlist-text {
		display: none;
	}

	header .main-logo {
		width: 150px;
	}

	header .ow_mod-link {
		padding: 0 !important;
		/* padding: 125px 0px 0 0px !important; */
	}

	header .ow-icon .ow_mod-numberItems {
		/* top: -100px; */
		top: -25px;
	}

	.og-bar-mobile-fixed {
		display: block;
	}

	header .ow_mod-link:hover,
	header .wishlist {
		background: unset;
		text-align: right;
	}

	header .wishlist-container {
		position: unset;
	}

	header .wishlist.ow_mod-link:after {
		position: unset;
		display: inline-block;
		width: 33px;
	}

	.top-menu {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	#offcanvas .column .content {
		padding: var(--space) 25px;
	}

	#offcanvas .content .uk-nav {
		column-count: 1;
	}

	#offcanvas .column.center {
		display: block !important;
	}

	#offcanvas .off-logo {
		transform: unset;
		position: unset !important;
		padding-top: 25px;
		padding-left: 25px;
		text-align: left;
	}

	#offcanvas .column .content {
		padding: var(--space) 0;
	}

	#offcanvas .column .content .off-menu {
		padding-left: 25px;
	}

	#offcanvas .off-social {
		padding: calc(var(--space) / 2) 25px 0;
		position: unset !important;
		text-align: left !important;
	}

	.slider-home-events {
		display: none;
	}

	header {
		overflow: hidden;
	}
}

@media(min-width:640px) and (max-width:959px) {}

@media(max-width:639px) {

	/* VARIABILI */
	:root {

		/* FONT -- TITLE */
		--font-title: "Title";
		--h1: 1.9rem;
		--h1LH: 2.5rem;

		--script: 2.8rem;
		--scriptLH: 3rem;

		/* GLOBAL */
		--space: 75px;
	}

	header>.barra-fixed {
		display: none !important;
	}

	#itinerario .media-container .gpx+div {
		margin-top: 25px;
		padding-top: 25px;
		border-top: solid 1px var(--white);
	}

	.schema-full-3 .top .category {
		margin-right: 0;
		margin-bottom: 25px !important;
		display: block;
	}

	.schema-full-3 .pos-category {
		display: block;
	}

	#servizio-privavto .pos-contacts .contact,
	#shopping-full .pos-contacts .contact,
	#alloggio .pos-contacts .contact,
	#ristorante .pos-contacts .contact {
		display: block;
	}

	#servizio-privavto .pos-contacts .contact:not(:last-child),
	#shopping-full .pos-contacts .contact:not(:last-child),
	#alloggio .pos-contacts .contact:not(:last-child),
	#ristorante .pos-contacts .contact:not(:last-child) {
		margin-right: 0;
		margin-bottom: 10px !important;
	}

	.ehc .slider-exp-container .uk-slidenav-previous {
		left: calc(50% - var(--space) * 1);
	}

	.ehc .slider-exp-container .uk-slidenav-next {
		right: calc(50% - var(--space) * 1);
	}

	.dhc .uk-slider-items,
	.ehc .uk-slider-items,
	.evhc .uk-slider-items {
		padding-left: 15px;
		padding-right: 15px;
	}

	.uk-position-center-right {
		right: 15px;
	}

	.uk-position-center-left {
		left: 15px;
	}

	footer .center {
		-ms-flex-order: -1;
		-webkit-order: -1;
		order: -1;
		margin-top: 0 !important;
	}

	footer .left {
		-ms-flex-order: 0;
		-webkit-order: 0;
		order: 0;
		margin-top: calc(var(--space) / 2) !important;
		margin-bottom: calc(var(--space) / 2) !important;
	}

	.schema-full .fake-slider-container .uk-slidenav {
		bottom: 8px;
	}

	/* .schema-full .fake-slider-container .arrow-left {
		left: calc(var(--space) * 1 + 35px);
	}

	.schema-full .fake-slider-container .arrow-right {
		left: calc(var(--space) * 2 + 32px);
	} */

	.schema-full .uk-breadcrumb {
		padding: calc(var(--space) / 1) 0 0;
	}

	#alloggi .item .info-container {
		line-height: 1.3;
	}

	.info-point:before {
		top: 5px;
	}

	.og-bar-mobile-fixed .info-point:before {
		top: 0;
	}

	.link-evento-diretta {
		bottom: 15px;
		left: 15px;
		padding: 15px 10px;
	}

	/* .list {
		column-count: 2;
	} */


}

@media(max-width:480px) {

	*+.uk-grid-margin,
	.uk-grid+.uk-grid,
	.uk-grid>.uk-grid-margin {
		margin-top: 25px;
	}

	.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
		margin: 0 15px;
	}

	#alloggio .pos-services .check-list {
		column-count: 1;
	}

	.pphc .bottom .left,
	.pphc .bottom .right {
		width: 100%;
	}

	.pphc .bottom .uk-grid>div:nth-child(1) {
		margin-bottom: calc(var(--space) / 2);
	}

	.pphc .bottom .right,
	.pphc .bottom .left {
		padding-right: 0;
	}

	.sub-footer img {
		width: 32px;
	}

	.sub-footer .text .h2 {
		font-size: .93rem;
		line-height: 1;
	}

	#ob-filtrozoo .item .info-container {
		margin-top: 0;
	}

	#ob-filtrozoo .item .contacts {
		margin-bottom: 0 !important;
	}

	#ob-filtrozoo .item .contacts a {
		display: inline-block !important;
		width: 100%;
		margin-bottom: 10px;
	}

	#ob-filtrozoo .cin-container .pos-cir {
		margin-top: 10px;
	}

	#info-modal a,
	#info-modal span:not(.h1) {
		font-size: .75rem;
		line-height: 1;
	}

	.contcts-container .address:before {
		width: 13px;
		margin-right: 7px;
	}

	.contcts-container .email:before,
	.contcts-container .phone:before {
		width: 16px;
		margin-right: 7px;
	}

	#offcanvas .spotify-container img {
		width: 45px;
		height: 45px;
	}

	html[lang="it"] #offcanvas .spotify-container:before {
		top: -19px;
		left: -19px;
		width: 82px;
		height: 82px;
	}

	#offcanvas .spotify-container {
		bottom: 68px;
		right: 45px;
	}

	#ob-filtrozoo .item .info-container {
		padding: 25px 15px;
	}

	.btn,
	.pos-link>a,
	#form-contacts button[type="submit"] {
		padding: 15px 30px;
	}

	/* .list {
		column-count: 1;
	} */

	.schema-full .fancy>.uk-icon {
		right: 15px;
	}

	.schema-full .fake-slider-container .arrow-right {
		right: 82px;
	}

	.schema-full .fake-slider-container .arrow-left {
		right: 149px;
	}

	#destinazione .categories>a:not(:last-child),
	#destinazioni .categories>a:not(:last-child) {
		margin-right: 5px;
	}

	#destinazione .badge span,
	#destinazione .badge a,
	#destinazioni .badge span,
	#destinazioni .badge a {
		padding: 5px 5px;
	}

	#n2-ss-2-align,
	.slider-home,
	.slider-home video {
		height: 50vh !important;
		aspect-ratio: 1 / 1 !important;
	}

	#eventi .items .item,
	#itinerario .teaser-item .item,
	#destinazioni .items .item,
	.uk-slider-items .item {
		height: auto;
		background: var(--white);
	}

	.schema-full .fake-slider-container .uk-slideshow-items,
	.schema-full .fake-slider-container .uk-slideshow-items img {
		aspect-ratio: 1 / 1 !important;
		object-fit: cover;
		object-position: center center;
		height: auto;
		min-height: auto;
	}

	.sub-footer .uk-flex {
		display: block !important;
		text-align: center;
	}

	.sub-footer img {
		display: block !important;
		width: 40px;
		margin: 0 auto 10px auto !important;
	}

	.sub-footer .flag-lilla {
		margin-right: 0 !important;
		margin-bottom: 15px;
	}

	.sub-footer .text {
		text-align: center;
	}

	.logo-cultura-container {
		text-align: left !important;
	}

}


@media(min-width:960px) and (max-height:700px) {

	#offcanvas .bck {
		display: block !important;
	}

	#offcanvas .column .content {
		width: auto;
		padding: 0 calc(var(--space) / 2);
	}

	#offcanvas .off-logo {
		position: unset !important;
	}

	#offcanvas .off-logo {
		position: unset !important;
		transform: unset;
		padding: 25px 0 25px;
	}

	#offcanvas .off-social {
		position: unset !important;
		margin-top: 25px;
	}

	#offcanvas .column {
		height: 100%;
	}

	/* #offcanvas .spotify-container {
		bottom: 35px;
		right: 35px;
	} */

}