/**
 * @file
 * Subtheme specific CSS.
 */
@font-face {
    font-family: 'Edition Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Edition Regular'), url('EDITION_.woff') format('woff');
}

:root {
	--main-color: #ffffff;
	--primary-color: #AB8049; /*AB8049*/
	--first-color: #966F40; /*AB8049*/
	--second-color: #000000;
	--third-color: #6d6d6d;
	--fourth-color: #000000;
	--fifth-color: #f2ece4;
	--title-color: #846138; /*AB8049*/
	--text-color: #846138; /*AB8049*/
	--second-text-color: #ffffff;
	--cta-color: #966F40; /*AB8049*/
	
	--font-family-primary: 'Rethink Sans';
	--font-family-secondary: 'Shippori Mincho';
	--h1-font-size: 3.2rem;
	--h2-font-size: 3.2rem;
	--h3-font-size: 1.5rem;
	--h4-font-size: 1.1rem;
	--title-line-height: 1.2;
	--body-font-size: 1rem;
	--event-date-size: 1rem;
	--footer-font-size: 0.94em;
	--body-letter-spacing: 0.10rem;
	--body-line-height: 1.5;
	--navbar-top-font-size: 0.9rem;
	--navbar-main-font-size: 1.05rem;
	
	--frame-thickness-rect: 86px;    /* (86px) spessore reale del bordo (px) */
    --slice-rect: 18%;               /* (12%) border-image-slice in percentuale: regola per adattare la griglia del tris */
    --frame-thickness-square: 86px;  /* (18%) spessore della cornice (px) da regolare */
    --slice-square: 18%;             /* border-image-slice — prova valori tra 60 e 95 (unitless) */
    --frame-thickness-circle: 50%;   /* spessore del bordo/cornice */
    --slice-circle: 50%;             /* border-image-slice - quanto "tagliare" l'immagine per il border-image (da regolare) */
	
	--pad-inline: 20px;    /* padding orizzontale del pulsante (lascia spazio per gli ornamenti) */
	--orn-width: 44px;     /* larghezza dell'ornamento */
	--orn-height: 44px;    /* altezza dell'ornamento */
	--orn-gap: 1px;       /* spazio visibile tra pill e ornamento (regola se serve) */
	
	--orn-arrow-width: 63px;
	--orn-arrow-height: 84px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    :root{
        /* renderizza thickness proporzionale alla larghezza */
        --frame-thickness-rect: calc((100vw - 48px) * 0.18); /*0.08*/
		--frame-thickness-square: calc((100vw - 48px) * 0.20); /*0.12*/
		--event-date-size: 0.75rem;
    }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
}
/* small screens: scala la thickness proporzionalmente per mantenere aspetto */
@media (max-width:720px){

}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    :root{
		--h1-font-size: 2.3rem;
		--h2-font-size: 1.9rem;
		--h3-font-size: 1.3rem;
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
	:root{
		--orn-arrow-width: 40px;
		--orn-arrow-height: 59px;
		--navbar-top-font-size: 0.8rem;
	}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    :root{
		--navbar-main-font-size: 0.94rem;
		--event-date-size: 0.6rem;
    }
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) { 
}
@media (min-width: 1200px) and (max-width: 1365.98px) {
    :root{
		--event-date-size: 0.7rem;
    }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
}
@media (min-width: 1366px) and (max-width: 1535.98px) {
    :root{
		--event-date-size: 0.8rem;
    }
}
@media (min-width: 1536px) and (max-width: 1919.98px) { 
    :root{
		--event-date-size: 0.9rem;
    }
}



.media--loading:not([data-animation])::before, 
.is-b-loading:not([data-animation])::before {
    background: #86744e !important;
}

.b-error.b-loaded {
    display: block !important;
}

.loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #fff;
	background-size: cover;
	background-position: 33%;
}
.loader:before {
	content:"";
	width: 100%;
    height: 100vh;
    position: absolute;
}
.loader:after {
	content:"";
	background-image: url(../img/Stemma_Duetorrihotels.png);
    width: 100%;
    height: 100vh;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px;
    -webkit-animation: flipY 2s infinite;
    animation: flipY 2s infinite;
    transition: 0.6s;
}


/* Flip Animation */
@keyframes flipX{
    from {
        -webkit-transform: rotateX(180deg);
    }
    
    to {
        -webkit-transform: rotateX(-180deg);
    }
    
}
@keyframes flipY{
    from {

		-webkit-transform: rotateY(0deg);
		-moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		-o-transform: rotateY(0deg);
		transform: rotateY(0deg);
    }
    
    to {
		-webkit-transform: rotateY(359deg);
		-webkit-transform: rotateY(359deg);
		-moz-transform: rotateY(359deg);
		-ms-transform: rotateY(359deg);
		-o-transform: rotateY(359deg);
		transform: rotateY(359deg);
    }
    
}



/* entire container, keeps perspective */
.flip-container {
	perspective: 1000px;
	
}
/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
	transform: rotateY(180deg);
}
.flip-container, .front, .back {
	width: 320px;
	height: 480px;
}
/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}
/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;

	position: absolute;
	top: 0;
	left: 0;
}
/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}
/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
}

.sr-only {
    margin: -1px !important;
}
.col-pad {
    padding: 0 5rem;
}
.col-margin-top {
	margin-top: 6rem;
}
.col-margin-bottom {
	margin-bottom: 6rem;
}


body.fontyourface {
	font-family: var(--font-family-primary);
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-weight: 400;
    line-height: var(--body-line-height);
}
body.fontyourface .node__content {
	margin-top: initial;
	font-size: var(--body-font-size);
}
p {
	letter-spacing: var(--body-letter-spacing);
}

#myBtnToTop {
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	
	display: none;
	position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--first-color);
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    font-size: 18px;
}
#myBtnToTop:hover {
  background-color: var(--second-color);
}

#iubenda-cs-banner .iubenda-cs-opt-group button.iubenda-cs-reject-btn.iubenda-cs-btn-primary {
    /*background-color: #1a1a1a!important;*/
}

.region-secondary-menu,
.region-top-header {
    width: 100%;
	margin: initial;
}
.region-top-header {
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.fontyourface h1, .fontyourface h2, .fontyourface h3, .fontyourface h4, .fontyourface h5, .fontyourface h6 {	
	font-family: var(--font-family-secondary);
    font-style: normal;
    font-weight: 300;
    text-align: left;
	position: relative;
}
.fontyourface h1 {
	font-size: var(--h1-font-size);
}
.fontyourface h2 {
	margin-bottom: 1rem;
    font-size: var(--h2-font-size);
}
.fontyourface h3 {
	font-size: var(--h3-font-size);
	text-transform: uppercase;
}
.fontyourface h4 {
	font-family: var(--font-family-primary);
	font-size: var(--h4-font-size);
	text-transform: uppercase;
	letter-spacing: var(--body-letter-spacing);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--title-color);
	line-height: var(--title-line-height);
}
.h2, h2 {
    color: var(--first-color);
}

.h3, h3 {
    font-size: var(--h3-font-size);
	color: var(--title-color);
}


h2.node__title {
	display: none;
}

.subtitle-small {
	font-style: italic;
    font-family: 'Roboto';
    font-size: small;
}

.spacing {
	height: 20px;
}
.overflow-hidden {
    overflow: hidden;
}
.nomargin {
    margin: 0 !important;
}
.no-margin-top {
	margin-top: 0 !important;
}
.padding-right {
	padding-right: 15px !important;
}
.padding-left {
	padding-left: 15px !important;
}
.padding-col {
	padding: 15px;
}
.wrapper {
    padding: 0 6rem;
}
.wrapper-top-bottom {
    padding: 6rem 0;
}
.wrapper-top {
    padding-top: 6rem;
}
.wrapper-bottom {
    padding-bottom: 6rem;
}
.between {
    margin: 8rem 0;
}
.no-padding {
	padding: 0 !important;
}
.no-padding-top {
	padding-top: 0 !important;
}
.bg01 {
    background-color: var(--fourth-color);
}
.bg02 {
	background-color: var(--third-color);
	color: var(--second-text-color);
}
.bg02 h1, .bg02 h2, .bg02 h3, .bg02 h4 {
	color: var(--second-text-color);
}

.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body a, body .link {
    color: var(--cta-color);
}
body a:hover,
body a:focus,
body .link:hover,
body .link:focus {
    color: var(--second-color);
}

a {
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    text-decoration: none;
}




legend {
    margin-bottom: 0rem;
    font-size: 1.2rem;
    padding-top: 1rem;
}

.btn-primary {
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	
	position: relative;
    display: inline-block;
    background-color: var(--first-color) !important;
	color: var(--second-text-color);
	border: none;
	padding: 10.5px var(--pad-inline);
	border-radius: initial;
	box-shadow: none !important;
	margin-left: var(--orn-width);
	margin-right: var(--orn-width);
	
	font-family: var(--font-family-primary);
	text-transform: uppercase;
	letter-spacing: var(--body-letter-spacing);
	font-weight: 400;
    font-size: var(--body-font-size);
	line-height: 1;
	/*font-size: 1.1rem;*/
}
.btn-primary.btn-large {
    width: calc(100% - (var(--orn-width) * 2));
	max-width: 290px;
}
.btn-primary::before,
.btn-primary::after{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: var(--orn-width);
	height: var(--orn-height);
	pointer-events: none;
	background: url(../img/button-ornament.png) no-repeat center/contain;
	
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
/* Lato sinistro: posiziona l'ornamento parzialmente fuori dal pill */
.btn-primary::before{
  left: calc(-1 * (var(--orn-width) - var(--orn-gap)));
  background-position: center center;
}
/* Lato destro: stesso ornamento ma specchiato (mirror) */
.btn-primary::after{
  right: calc(-1 * (var(--orn-width) - var(--orn-gap)));
  transform: translateY(-50%) scaleX(-1); /* specchia orizzontalmente */
  background-position: center center;
}
.btn-primary:hover, 
.btn-primary:focus {
    background-color: var(--second-color) !important;
	color: #fff !important;
}
.btn-primary:hover::before, 
.btn-primary:focus::before,
.btn-primary:hover::after,
.btn-primary:focus::after {
	background: url(../img/button-ornament-black.png) no-repeat center/contain;
}

/*
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
	background-color: var(--first-color) !important;
	color: #fff !important;
	box-shadow: none;
}
*/

.btn-secondary {
    color: var(--second-text-color);
	background-color: var(--first-color);
	border-color: var(--first-color);
	border: initial;
	border-radius: 20px;
	padding: .5rem 1rem;
	line-height: 25px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: var(--body-letter-spacing);
}
.btn-secondary.invert {
    background-color: var(--second-color);
	border-color: var(--second-color);
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--third-color);
    border-color: var(--third-color);
	color: var(--second-text-color);
}
.region-secondary-menu .btn-secondary {
	border-radius: initial;
	font-size: var(--navbar-top-font-size);
	text-transform: initial;
	letter-spacing: initial;
}


.btn-more {
    position: relative;
    display: inline-block;
    /*min-width: 150px;*/
    margin-top: 0.5rem;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0;

    color: var(--text-color);
	
	font-family: var(--font-family-primary);
	text-transform: uppercase;
	letter-spacing: var(--body-letter-spacing);
	font-weight: 400;
    font-size: var(--body-font-size);
	line-height: 1.1;
	
}
.btn-more:hover, 
.btn-more:focus {
	color: var(--second-color);
}
.btn-more::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    transform-origin: left;
}
.btn-more.invert::after {
    background-color: var(--second-text-color);
}
.btn-more:hover::after,
.btn-more:focus::after {
	background-color: var(--second-color);
}

.btn-more.btn-more-light {
    color: var(--second-text-color);
}
.btn-more.btn-more-light:hover, .btn-more.btn-more-light:focus {
    color: var(--second-color);
}
.btn-more.btn-more-light::after {
    background-color: var(--first-color);
}

.btn-primary.icon.inverse,
.btn-primary.icon.inverse:hover, 
.btn-primary.icon.inverse:focus,
.btn-primary.icon.inverse:not(:disabled):not(.disabled).active, 
.btn-primary.icon.inverse:not(:disabled):not(.disabled):active, 
.show>.btn-primary.icon.inverse.dropdown-toggle {
    background-color: transparent !important;
    border-color: transparent !important;
	color: var(--text-color) !important;
	padding: 0;
	box-shadow: none;
	
	font-family: 'Roboto';
	font-weight: 300;
}
.dark .media-body .btn-primary.icon.inverse,
.dark .media-body .btn-primary.icon.inverse:hover, 
.dark .media-body .btn-primary.icon.inverse:focus,
.dark .media-body .btn-primary.icon.inverse:not(:disabled):not(.disabled).active, 
.dark .media-body .btn-primary.icon.inverse:not(:disabled):not(.disabled):active, 
.dark .media-body .show>.btn-primary.icon.inverse.dropdown-toggle {
	color: #fff !important;
}
.dark .media-body .btn-primary.icon.inverse:before {
	/*background-color: #99b0a2;*/
}
.dark .media-body .btn-primary.icon.inverse:hover:before {
    /*background-color: #a19376;*/
}
.btn-primary.icon.inverse:before {
	background-color: var(--first-color);
    padding: 15px;
	color: #fff !important;
	border: 1px solid var(--first-color) !important;
	
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	border-radius: initial;
}
.btn-primary.icon.inverse:hover:before {
	background-color: #a19376;
	border: 1px solid #a19376 !important;
}

.pagination {
	justify-content: center;
    margin: 2rem 0 0 0;
}
.pagination .page-item.active .page-link {
    background-color: var(--first-color);
    border-color: var(--first-color);
}
.pagination .page-link, 
.pagination .page-link:hover {
    color: var(--text-color);
}

table.custom-table tr th {
	background: #fff;
    border-bottom: 5px solid var(--first-color);
}
table.custom-table tr:nth-child(even) td {
	background: #fff;
}
table.custom-table tr:nth-child(odd) td {
	background: #f3f3f3;
}

.card {
	border-radius: .50rem;
}
.card img {
	border-radius: .50rem .50rem 0 0;
}

.bg-info {
    background-color: #f5f4f4 !important;
}
.bg-info-over {
    border-top: 1px solid var(--second-color);
	border-left: 1px solid var(--second-color);
}
.bg-info-under {
    border-bottom: 1px solid var(--second-color);
	border-right: 1px solid var(--second-color);
}


 
a.icon::before {
	/*display: none;*/
	margin-right: 0.5em;
}
a.icon svg {
    margin-right: 0.5em;
}
a.home::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f015";
}
a.telephone::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f098";
}
a.mailhome::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
}
a.maps::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f5eb";
}
a.concierge-bell::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f562";
}
a.briefcase::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0b1";
}
a.shield::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3ed";
}
a.whatsapp::before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 900;
    content: "\f232";
}
a.shop::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f07a";
}
a.accoglienza::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f236";
}
a.degustazione::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f72f";
}
a.arrow::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
}
a.newspaper::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f1ea";
}
a.check::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f14a";
}
a.camera::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f030";
}
a.calendar::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f274";
}
a.gift::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f06b";
}



a.icon.shop {
	background-color: #48423c !important;
	border: none;
	color: #fff !important;
}
a.icon.shop:hover {
	background-color: #4f4842 !important;
	border: none;
}
a.icon.degustazione {
	background-color: var(--first-color) !important;
	border: none;
	color: #fff !important;
}
a.icon.degustazione:hover {
	background-color: #a19376 !important;
	border: none;
}
a.icon.accoglienza {
	background-color: #a59680 !important;
	border: none;
	color: #fff !important;
}
a.icon.accoglienza:hover {
	background-color: #b4a590 !important;
	border: none;
}

.briciole .content > a {
	display: none;
}
.briciole .breadcrumb {
    border-radius: inherit;
    margin-bottom: 0;
	padding-left: 0;
	justify-content: center;
}

blockquote {
	font-size: 2rem;
	line-height: 2.5rem;
	margin: 0 0 2rem;
}
blockquote p {
	display: inline;
}
.home-page blockquote {
    font-size: 3rem;
	line-height: 3.5rem;
}
blockquote.invert {
	color: #fff;
    background: #7e7e81;
    padding: 1rem 3rem;
}
blockquote::before {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10d";
	padding-right: 15px;
}
blockquote::after {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10e";
	padding-left: 15px;
}

hr { 
	border: 0; 
	height: 1px;
	background: var(--first-color);
	background: linear-gradient(90deg,var(--fifth-color) 0%, var(--first-color) 50%, var(--fifth-color) 100%);
}

table {
    font-size: 0.8rem;
	font-family: 'Roboto';
}
dl, ol, ul {
    list-style-type: square;
}

.img-center,
.img-center img.b-lazy{
	margin-left: auto;
	margin-right: auto;
}
.no-lazy .media.media--ratio {
	display: inline;
}
.no-lazy .media.media--ratio img.media__element {
	position: relative;
	width: initial;
	object-fit: contain;
	max-width: 100%;
    height: auto;
}


ol.vertical-ordered-list {
	/*
	list-style-type: decimal;
	list-style-position: inside;
	*/
	list-style:none;
	
	counter-reset: item;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
ol.vertical-ordered-list li{
	counter-increment: item;
	margin: 0;
	padding: 1rem 1rem;
	position: relative;
	white-space: pre-line;
	letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-family-secondary);
    font-size: var(--h3-font-size);
	
}
/*
ol.vertical-ordered-list li::marker{
	content: counter(item, decimal-leading-zero) "\A";
	content: counters(item, ".", decimal-leading-zero) "\A";
	display: block;
	font-size: var(--h1-font-size);
	font-family: var(--font-family-secondary);
}
*/
ol.vertical-ordered-list li::before{
	content: counter(item, decimal-leading-zero);
	display: block;
	font-size: var(--h1-font-size);
	font-family: var(--font-family-secondary);
	line-height: var(--title-line-height);
	
	margin-bottom: 1.5rem;
}
/*
ol.vertical-ordered-list li::before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: var(--first-color);
    margin: 0 auto;
}
*/

ol.vertical-ordered-list li span.marker-line {
	display: block;
    width: 1px;
    height: 20px;
    background: var(--first-color);
    position: absolute;
    left: 50%;
    top: calc(var(--h1-font-size) + 26px);
}
ol.vertical-ordered-list li:last-child::after {
    content: "✻";
    display: block;
    margin: 2rem auto 0;
	font-size: var(--star-size);
    font-weight: var(--star-weight);
	padding-left: 4px;
}




/* INIZIO Branding Block*/
body.js-off-canvas-dialog-open #navbar-main .block-system-branding-block {
	display: none;
}
#navbar-main.navbar-expand-lg.affix .block-system-branding-block img {
	/*max-height: 70px;*/
}
.block-system-branding-block img {
    max-height: 80px;
    margin-bottom: 5px;
	padding: 0 25px;
	padding-bottom: 5px;
	
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.1s;
	
	/*filter: brightness(100);*/
}
nav.affix .block-system-branding-block img {
    max-height: 60px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-bottom: initial;
}
.landing-page nav.affix .block-system-branding-block img {
	/*filter: invert(100%);*/
}
/* FINE Branding Block*/


#block-sys-barrio-content {
    /*margin: 5rem 0;*/
}
.home-page #main-wrapper {
    /*display: none;*/
}
.maintenance-page #main-wrapper {
	display: block !important;
}

.breadcrumb {
    background-color: transparent;
}



.field--name-field-top-right img {
	margin-bottom: 15px;
}


.title-home-page {
	/*background: #f7f7f7;*/
}

.block-page-title-block h1 {
    text-align: center;
	font-size: var(--h1-font-size);
	margin-bottom: 2rem;
}
/*
.title-page {
	position: absolute;
    z-index: 1;
    margin-bottom: 30px;
    bottom: 0;
}
*/
.title-page h1 {
	color: var(--first-color);
	font-size: var(--h1-font-size);
}

/*.title-page h1:before,*/
/*
.title-page h1:after {
	content: "";
    border-bottom: 1px solid #fff;
    width: 100px;
    display: block;
	margin-left: auto;
    margin-right: auto;
}
.title-page h1:before {
	margin-bottom: 10px;
}
.title-page h1:after {
	margin-top: 10px;
}
*/

.landing-page .title-page {
	display: none;
}

.region-body-top {
	position: relative;
}
.region-body-bottom {
	overflow: hidden;
}

#block-webform .iti {
    display: block;
}



/************************ INIZIO Navbar Main ************************/

.block-language {
	display: inline-block;
}
.block-language .content {
	position: relative;
}
.block-language .dropdown-menu {
    left: inherit;
    min-width: 3rem;
	padding: 0.375rem 1rem;
	border-radius: initial;
	background-color: rgba(120,120,120,0.8);
	margin: 1rem 0 0;
	
	min-width: 100%;
	text-align: center
}
.block-language .dropdown-menu li a {
	color: var(--second-text-color);
}

.block-language button {
	font-size: var(--navbar-top-font-size);
	color: var(--second-text-color);
	cursor: pointer;
}

#navbar-main.affix .block-language button {
	color: var(--title-color) !important;
	cursor: pointer;
}
.block-language button::before {
	display: inline-block;
	width: 1px;
	content: "";
	height: 0.7rem;
	background: transparent;
	margin-right: 1rem;
}
#navbar-main.affix .block-language button::before {
	background: transparent !important;
}
.block-language button:hover {
	color: var(--second-text-color) !important;
}
.block-language button,
.block-language button:hover {
	border: none !important;
	margin: 0 !important;
	background: initial !important;
	outline: initial;
	padding: .5rem 1rem;
}
.block-language .btn:not(:disabled):not(.disabled):active,
.block-language .show>button.btn.dropdown-toggle,
.block-language .btn:focus {
	background: initial !important;
	box-shadow: initial;
}


.button-prenota {
	position: fixed;
    z-index: 1035;
    right: 0;
    top: 170px;
	
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.home-page .button-prenota {
    top: 86px;
}
#navbar-main.affix .button-prenota {
    top: 130px;
}

.button-prenota .book-now.btn-primary {
    color: var(--second-text-color);
	outline: none;
	box-shadow: none;
	margin-right: 0;
}
.button-prenota .book-now.btn-primary:hover,
.button-prenota .book-now.btn-primary:focus{
	outline: none;
	box-shadow: none;
}
/*
.openMenu .button-prenota .book-now.btn-primary {
    color: var(--second-text-color) !important;
}
*/

#navbar-main.affix .button-prenota .book-now.btn-primary:hover, 
#navbar-main.affix .button-prenota .book-now.btn-primary:focus {
    color: var(--second-text-color) !important;
	outline: none;
	box-shadow: none;
}

.button-prenota .book-now.btn-primary.icon.inverse,
.button-prenota .book-now.btn-primary.icon.inverse:not(:disabled):not(.disabled):active {
	padding: 10px 20px 10px 0;
    background: var(--first-color) !important;
    border: 1px solid var(--cta-color) !important;
	
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	font-size: 1.2rem;
}
.button-prenota .book-now.btn-primary.icon.inverse:before {
    margin-right: 20px;
}

.button-prenota .book-now.btn-primary.icon.inverse:hover{
	border: 1px solid var(--second-color) !important;
}


#navbar-main nav a {
	position: relative;
	font-size: var(--navbar-main-font-size);
	font-weight: 300;
	color: var(--first-color);
	text-transform: uppercase;
	letter-spacing: var(--body-letter-spacing);
}
#navbar-main nav a::before {
    content: "";
    display: block;
    width: calc(100% - 1rem);
    height: 1px;
    background-color: var(--cta-color);
    position: absolute;
    bottom: 0.8rem;
    left: 0.5rem;
    transition: 0.3s;
    transform-origin: left;
}
#navbar-main.navbar-expand-lg .navbar-nav .nav-item {
	margin: 0 0.5rem;
}
#navbar-main.navbar-expand-lg .navbar-nav .nav-link {
	padding: 0.5rem;
}
#navbar-main.navbar-expand-lg .navbar-nav .dropdown-menu {
	top: calc(100% + 0.4rem);
	background: rgba(255,255,255,0.8);
	border-radius: initial;
	min-width: 100%;
}
#navbar-main.navbar-expand-lg.affix .navbar-nav .dropdown-menu {
    margin-top: 12px;
}
#navbar-main .dropdown-item {
	/*background: rgba(0,0,0,0.5);*/
	padding: 0 0.5rem;
}
#navbar-main .dropdown-item:focus, 
#navbar-main .dropdown-item:hover,
#navbar-main .dropdown-item.active, 
#navbar-main .dropdown-item:active {
    background-color: initial;
}
#navbar-main .dropdown-item a {
	display: inline-block;
    /*font-size: 0.9rem;*/
	color: var(--text-color) !important;
	padding: 0.5rem;
}
/*
.navbar-expand-lg .navbar-nav {
	-ms-flex-direction: column;
	flex-direction: column;
}
*/

#navbar-main {
	background: inherit !important;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0.4rem 2rem;
	justify-content: space-between;
	
	-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
#navbar-main.affix {
    background: var(--second-text-color) !important;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 6px;
}


#navbar-main .navbar-toggler-icon {
    color: #45372a;
    line-height: 150%;
    font-size: 1.8rem;
}
#navbar-main button.navbar-toggler:focus,
#navbar-main .navbar-toggler-icon:focus {
	outline: none;
}

#navbar-main .navbar-toggler .navbar-toggler-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0c9";
}

#navbar-top nav a {
	color: var(--second-text-color);
	letter-spacing: var(--body-letter-spacing);
	font-weight: 300;
	font-size: var(--navbar-top-font-size);
	position: relative;
	line-height: 1rem;
}
#navbar-top .btn {
	line-height: 1rem;
}
#navbar-top nav a::before,
#navbar-top a.btn-secondary::before {
    content: "";
    display: block;
    width: calc(100% - 2rem);
    height: 1px;
    background-color: var(--second-text-color);
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    transition: 0.3s;
    transform-origin: left;
}
#navbar-top nav a:hover,
#navbar-main nav a:hover,
#navbar-main nav li.active a {
	/*color: var(--cta-color);*/
}

/************************* FINE Navbar Main *************************/


.view-all-nodes caption {
    caption-side: top;
}

.contextual-menu {
	background: #f9f9f9;
    border-radius: 4px;
    margin: 15px 0;
    text-transform: uppercase;
}
.contextual-menu-fixed-top {
	position: fixed;
/*
	top: 65px;
	z-index: 1;
	width: 100%;
*/	
    top: 160px;
    z-index: 1;
    width: auto;
    left: 0;
}
.contextual-menu-fixed-top.navbar-expand-lg .navbar-nav {
    -ms-flex-direction: column;
    flex-direction: column;
}

.contextual-menu a:hover, 
.contextual-menu a:focus, 
.contextual-menu .link:hover, 
.contextual-menu .link:focus,
.contextual-menu a.active {
    color: #a19376;
}


/* INIZIO underline e overline */
h2.overline:before,
h3.overline:before {
	content: "";
    border-bottom: 1px solid var(--title-color);
    width: 150px;
    display: block;
	margin-bottom: 10px;
}
h2.overline:before {
    border-bottom: 1px solid var(--first-color);
}

h2.underline:after,
h3.underline:after {
	content: "";
    border-bottom: 1px solid var(--title-color);
    width: 150px;
	display: block;
	margin-top: 15px;
}
h2.underline:after {
	content: "";
    border-bottom: 1px solid var(--first-color);
}

.overline.linecenter:before,
.underline.linecenter:after {
	margin-left: auto;
    margin-right: auto;
}

.location-home h2.underline:after,
.location-home h3.underline:after {
    border-bottom: 1px solid #fff;
}

/* FINE underline e overline */


.frame-rect::before {
    content: "";
    position: absolute;
    inset: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/*
	width: 100%;
	height: 100%;
	*/
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
    border: var(--frame-thickness-rect) solid transparent;
    border-image-source: url(../img/cornice-quadrata.png);
    border-image-slice: var(--slice-rect);
    border-image-width: var(--frame-thickness-rect);
    border-image-repeat: round;
	border-color: var(--first-color);
}
.frame-rect.luxury-frame::before {
    border-image-source: url(../img/cornice-quadrata-lux.png);
}
.frame-rect.business-frame::before {
    border-image-source: url(../img/cornice-quadrata-business.png);
}
.frame-rect.light-frame::before {
    border-image-source: url(../img/cornice-quadrata-light.png);
}
.frame-square::before {
    content: "";
    position: absolute;
    inset: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/*
	width: 100%;
	height: 100%;
	*/
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
    border: var(--frame-thickness-square) solid transparent;
    border-image-source: url(../img/cornice-quadrata.png);
    border-image-slice: var(--slice-square);
    border-image-width: var(--frame-thickness-square);
    border-image-repeat: round;
	border-radius: 0;
	border-color: var(--first-color);
}
.frame-square.luxury-frame::before {
    border-image-source: url(../img/cornice-quadrata-lux.png);
}
.frame-square.business-frame::before {
    border-image-source: url(../img/cornice-quadrata-business.png);
}
.frame-square.light-frame::before {
    border-image-source: url(../img/cornice-quadrata-light.png);
}
.frame-circle,
.frame-circle > div.media {
	border-radius: 50%;
}
.frame-circle::before {
	content: "";
    position: absolute;
    inset: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/*
	width: 100%;
	height: 100%;
	*/
	z-index: 2;
	pointer-events: none;
    border: var(--frame-thickness-circle) solid transparent;
    border-image-source: url(../img/cornice-tonda.png);
    border-image-slice: var(--slice-circle);
    border-image-width: var(--frame-thickness-circle);
    border-image-repeat: round;
	border-radius: 50%;
	border-color: var(--first-color);
}


.logo-home-page {
	margin-top: 2.5rem;
}
.logo-home-page img {
	max-height: 200px;
	width: auto;
}


/********************** INIZIO Custom OWL Theme **********************/
.hidden-photogallery .photogallery-owl {
	display: none;
}

.photogallery-owl .owl-carousel .owl-item img,
.single-foto-slide-owl .owl-carousel .owl-item img {
	/*padding: 40px;*/
}
.owl-theme .owl-controls,
.owl-theme .owl-dots {
	position: absolute;
	width: 100%;
	margin-top: -30px !important;
}
.photogallery-owl .owl-theme .owl-dots {
	margin-top: 10px !important;
}

.promo-owl .owl-theme .owl-controls, 
.promo-owl .owl-theme .owl-dots,
.page-promo-owl .owl-theme .owl-controls, 
.page-promo-owl .owl-theme .owl-dots,
.child-owl .owl-theme .owl-controls,
.child-owl .owl-theme .owl-dots,
.single-card-owl .owl-theme .owl-controls,
.single-card-owl .owl-theme .owl-dots,
.recensioni .owl-theme .owl-controls,
.recensioni .owl-theme .owl-dots {
    width: 100%;
    position: relative;
    margin-top: 15px !important;
}

.owl-theme .owl-dots .owl-dot span {
	background: transparent;
    border: 1px solid var(--first-color);
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--first-color);
}
/*********************** FINE Custom OWL Theme ***********************/




/************************ INIZIO Slideshow OWL ************************/
.slideshow-owl {
	margin-top: 2.5rem;
}
.slideshow-owl > div.content {
	position: relative;
}
.landing-page .slideshow-owl {
	display: none;
}
.slideshow-owl.col,
.slideshow-owl .col-auto {
	padding: 0;
}

.slideshow-owl .owl-carousel .owl-item .content-video-desktop .media,
.slideshow-owl .owl-carousel .owl-item .content-video-desktop .field--name-field-media-video-file div.field__item {
	/*height: 100vh;*/
}

.slideshow-owl .owl-carousel .owl-item .content-video-desktop img,
.slideshow-owl .owl-carousel .owl-item .content-video-desktop video {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	
	vertical-align: middle;
    position: relative;
    z-index: 1;
    padding: 35px;
}

.slideshow-owl .owl-stage .caption {
	position: absolute;
    top: calc(100vh - 25%);
    padding: 30px;
    color: #fff;
}
.slideshow-owl .owl-stage .caption h2,
.slideshow-owl .owl-stage .caption a {
	color: #fff;
	position: relative;
	margin-top: 0;
}
.slideshow-owl .owl-stage .caption h2,
.slideshow-owl .owl-stage .caption p {
    text-shadow: 0 0 6px #000;
    text-align: center;
    font-size: 1.5rem
}
.slideshow-owl .owl-stage .caption h2 {
    font-size: var(--h2-font-size);
}
/************************* FINE Slideshow OWL *************************/


/************************* INIZIO Servizi OWL *************************/
.servizi {
	/*margin: 0 0 5rem 0;*/
}
.servizi-owl {
	text-align: center;
	text-transform: uppercase;
}
.servizi h2 {
    font-size: 2.5rem;
}
.servizi .owl-carousel {
	text-align: center;
}
.servizi .owl-carousel .owl-item {
	margin: 1.5rem 0;
}
.servizi-owl .owl-carousel .owl-item img {
	width: auto;
	max-width: 80px;
	margin-left: auto;
    margin-right: auto;
}
.servizi svg,
.servizi i {
	font-size: 3.5rem;
	color: var(--third-color);
}
/************************** FINE Servizi OWL **************************/

.four-icons-fixed svg,
.four-icons-fixed i {
	font-size: 3.5rem;
	color: var(--third-color);
}
.four-icons-fixed .owl-carousel {
	text-align: center;
}

.container-thefork {
    height: calc(100vh - 125px);
    overflow-y: auto
}


/********************** INIZIO CKeditor Accordion **********************/
.ckeditor-accordion-container > dl {
    border: initial;
}
.ckeditor-accordion-container > dl dt > a, 
.ckeditor-accordion-container > dl dt > a:not(.button) {
	background-color: transparent;
	border: initial;
	border-bottom: 1px solid var(--first-color);
	font-size: var(--h3-font-size);
    text-transform: uppercase;
	color: var(--text-color);
	font-weight: 400;
	padding: 15px 15px 15px 50px;
}
.ckeditor-accordion-container > dl dt > a:hover, 
.ckeditor-accordion-container > dl dt > a:not(.button):hover {
    background-color: transparent;
    box-shadow: none;
    color: var(--text-color);
    text-decoration: none;
}
.ckeditor-accordion-container > dl dt.active > a {
    background-color: transparent;
	border-bottom: 0;
}


.ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle {
    display: inline-block;
    position: absolute;
    padding: 0;
    width: 30px;
    height: 30px;
    z-index: 1;
    top: calc(25% - 1px);
    left: 11px;
    box-sizing: border-box;
    background: var(--first-color);
    border-radius: 50%;
}
.ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle:before, 
.ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle:after {
    background: var(--second-text-color);
	top: calc(50% - 1px);
	width: 15px;
    height: 1px;
}
.ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle:before {
    left: 8px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.ckeditor-accordion-container > dl dt > a > .ckeditor-accordion-toggle:after {
    right: 7px;
    left: auto;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.ckeditor-accordion-container > dl dt.active > a > .ckeditor-accordion-toggle:before {
    transform: rotate(0deg);
}
.ckeditor-accordion-container > dl dt.active > a > .ckeditor-accordion-toggle:after {
    transform: rotate(0deg);
}

.ckeditor-accordion-container > dl dd {
    display: none;
    padding: 0 50px 0.1px 50px;
    margin: 0;
    border-bottom: 1px solid var(--first-color);
}
/*********************** FINE CKeditor Accordion ***********************/


/*********************** INIZIO Buoni Motivi OWL ***********************/
.buoni-motivi {
	padding: 10rem 0;
	overflow: hidden;
}

.buoni-motivi:before {
	content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
	/*background-image: url(../img/Stemma_Duetorrihotels.png);*/
	background-repeat: no-repeat;
	background-size: contain;
    background-position: 10% 0;
}

.buoni-motivi .row .col{
	margin: 15px 0;
}
/************************ FINE Buoni Motivi OWL ************************/


/*********************** INIZIO Location Home OWL ***********************/
.location-home {
    color: #fff;
    background-image: url(../img/location-home.jpg);
    /*min-height: 100%;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	overflow: hidden;
	position: relative;
	padding: 0;
}
.location-home > .content {
	width: 100%;
}
.location-home .contain {
	padding: 5rem 0;
}
.location-home h2,
.location-home h3 {
	color: #ffffff;
	position: relative;
}
.location-home a {
	color: #ffffff;
}
.location-home a:hover,
.location-home a:focus,
.location-home .link:hover,
.location-home .link:focus {
    color: #99b0a2;
}
.location-home .overlay {
	position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
	top: 0;
}
/************************ FINE Location Home OWL ************************/


/******************** INIZIO Overlay Card FrontPage ********************/
/*
.view-node-front.col,
.view-node-front .col-auto {
	padding: 0;
}
.view-node-front .card-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 0rem;
    -moz-column-gap: 0rem;
    column-gap: 0rem;
}
.view-node-front .card {
    border: none;
    border-radius: unset;
	margin-bottom: 0;
}
.view-node-front .card img {
    border-radius: initial;
}
.view-node-front .card-body {
	padding: 0;
}

.view-node-front .card .card-body .caption {
    position: absolute;
    top: 0;
    height: calc(100% - 20px);
    margin: 10px;
    border: 1px solid #ddd;
    text-shadow: 0 0 6px #000;
    padding: 25px;
    width: calc(100% - 20px);
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.view-node-front .card .card-body .caption h3{
	color: #fff;
}
.view-node-front .card .card-body .caption a.btn {
    text-shadow: none;
}
*/
/********************* FINE Overlay Card FrontPage *********************/


/********************* INIZIO Simple Node FrontPage *********************/
/*
.simple-node-front .view-content > .row {
	margin: 0;
	width: 100%;
}
.simple-node-front .view-content > .row > div {
	padding: 0;
}
.simple-node-front .photo-slide li.list-group-item {
	margin: 0;
    padding: 0;
    border: none;
}

.simple-node-front .views-field-field-foto {
	-ms-flex-order: 3;
    order: 3;
	
	margin-top: 10rem;
	margin-bottom: 2rem;
}
*/
/********************** FINE Simple Node FrontPage **********************/


/******************** INIZIO Minimal Card FrontPage ********************/
/*
.view-minimal-node-front .card-columns {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0rem;
    -moz-column-gap: 0rem;
    column-gap: 0rem;
}
.view-minimal-node-front .card {
    border-radius: initial;
	border: initial;
	margin: 3rem 0;
	
	position: relative;
    z-index: 0;
}
.view-minimal-node-front .card img {
    border-radius: initial;
}
.view-minimal-node-front .card:nth-child(odd) img {
	display: block;
	margin-left: 150px;
}
.view-minimal-node-front .card:nth-child(even) img {
	display: block;
    margin-left: auto;
    margin-right: 150px;
}
.view-minimal-node-front .card h3 {
    color: #fff;
}
.view-minimal-node-front .card .card-header {
	background: initial;
    border: initial;
    min-width: 150px;
}
.view-minimal-node-front .card:nth-child(odd) .card-header {
	float: left;
}
.view-minimal-node-front .card:nth-child(even) .card-header {
	float: right;
}
.view-minimal-node-front .card .card-body {
	background: var(--third-color);
    margin-top: -100px;
    padding-top: 100px;
	
	position: relative;
    z-index: -1;
}
.view-minimal-node-front .card:nth-child(odd) .card-body {
    margin-left: 50%;
}
.view-minimal-node-front .card:nth-child(even) .card-body {
    margin-right: 50%;
}
*/
/********************* FINE Minimal Card FrontPage *********************/

.scritta-verticale {
    font-size: 80px;
    color: gray;
    -webkit-transform: rotate(-90deg);
    position: absolute;
    transform: rotate(-90deg)!important;
    transform-origin: left top 0;
    white-space: nowrap;
}

/************************ INIZIO 3 Classic Card ************************/
.static-block-child .view-node-child > .row{
	margin: 0;
}
.bottom-promo-owl .view-node-child > .row {
	margin-right: -15px;
    margin-left: -15px;
}

.static-block-child .view-node-child .card-deck {
	margin: 0;
}

.static-block-child .view-node-child .card-deck .card {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
	margin: 30px;
	border-radius: initial;
	border: initial;
}

.static-block-child .view-node-child .card-deck .card .card-body {
    background: #f5f4f4;

	margin-left: 50px;
	margin-right: 50px;
	margin-top: -50px;
	position: relative;
}

.static-block-child .view-node-child .card-deck .card img {
	border-radius: initial;
}

.static-block-child .view-node-child h3 {
	margin: .5rem 0;
	font-size: 2rem;
	text-align: left;
}
/************************* FINE 3 Classic Card *************************/




.bs-region--top-left .media-wrapper:nth-child(1) > .media--image {
	height: 450px;
}
.bs-region--top-left .media-wrapper:nth-child(1) > .media--image > img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.bs-region--top-left .media-wrapper:nth-child(2) > .media--image {
	max-width: 50%;
    margin-top: -50px;
    float: right;
    margin-right: -30%;
}
.bs-region--top-left .media-wrapper:nth-child(3) > .media--image {
	max-width: 50%;
    margin-top: -50px;
    float: right;
    margin-right: 15px;
}



.scheda-tecnica  {
	/*margin: 3rem 0;*/
}
.scheda-tecnica .table-striped tbody tr:nth-of-type(odd) {
    background-color: #f5f4f4;
}
.scheda-tecnica .table-striped tbody td {
    text-align: center;
}
.scheda-tecnica .table > thead > tr > th {
	white-space: nowrap;
	padding-top: 30px;
	position: relative;
	background: #fff;
	text-align: center;
    border: initial;
	color: initial;
}
.scheda-tecnica .table > thead > tr > th a {
	color: initial;
}


.scheda-tecnica th.views-field-field-platea::before {
	content:url('../img/icon_rs_theatre.gif');
	position: absolute;
	left: calc(50% - 17px);
    top: 0;
}
.scheda-tecnica th.views-field-field-ferro-di-cavallo::before {
	content:url('../img/icon_rs_u-shaped.gif');
	position: absolute;
	left: calc(50% - 17px);
    top: 0;
}
.scheda-tecnica th.views-field-field-aula::before {
	content:url('../img/icon_rs_classroom.gif');
	position: absolute;
	left: calc(50% - 17px);
    top: 0;
}
.scheda-tecnica th.views-field-field-tavolo-unico::before {
	content:url('../img/icon_rs_hallow-square.gif');
	position: absolute;
	left: calc(50% - 17px);
    top: 0;
}
.scheda-tecnica th.views-field-field-banchetto::before {
	content:url('../img/icon_rs_rounds.gif');
	position: absolute;
	left: calc(50% - 17px);
    top: 0;
}
.scheda-tecnica th.views-field-field-cocktail::before {
	/*content:url('../img/icon_rs_reception.gif');*/
	content:url('../img/icon_rs_cocktail.gif');
	position: absolute;
	left: calc(50% - 17px);
    top: 0;
}


/********************** INIZIO grid of cards **********************/
/*
.view-node-promo .col-auto {
	padding: 0;
}
.view-node-promo .card-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 0rem;
    -moz-column-gap: 0rem;
    column-gap: 0rem;
}
*/

.block-views-blockthumbnail-promo-idee-eventi-focus-block-8,
.block-views-blockthumbnail-promo-idee-eventi-focus-block-9,
.block-views-blockthumbnail-promo-idee-eventi-focus-block-20 {
	overflow: hidden;
    position: relative;
}

.news-promo-event-section .b3cols-padding > div {
	padding-top: 2rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
    background: var(--main-color);
    border-radius: 280px;
    border: 1px solid var(--first-color);
}

.view-node-promo .card,
.child-owl .card,
.promo-owl .card,
.page-promo-owl .card,
.static-block-child .card,
.single-card-owl .card {
    border: 1px solid rgba(0, 0, 0, 0);
	border-radius: inherit;
	overflow: hidden;
    /*position: relative;*/
	background: transparent;
}
.view-node-promo .card-body,
.child-owl .card-body,
.promo-owl .card-body,
.page-promo-owl .card-body,
.static-block-child .card-body,
.single-card-owl .card-body {
	padding: 0px;
	height: 100%;
}


.child-owl .owl-carousel .owl-nav,
.promo-owl .owl-carousel .owl-nav,
.page-promo-owl .owl-carousel .owl-nav,
.photogallery-owl .owl-carousel .owl-nav {
	position: absolute;
    width: 100%;
    top: calc(50% - 2.5rem ); /*- 34px*/
    margin: 0;
}
.photogallery-owl .owl-carousel .owl-nav {
    top: calc(50%);
}
.child-owl .owl-carousel .owl-nav button,
.promo-owl .owl-carousel .owl-nav button,
.page-promo-owl .owl-carousel .owl-nav button,
.photogallery-owl .owl-carousel .owl-nav button {
	position: relative;
	margin: 0;
}
.child-owl .owl-carousel .owl-nav button.owl-prev,
.promo-owl .owl-carousel .owl-nav button.owl-prev,
.page-promo-owl .owl-carousel .owl-nav button.owl-prev,
.photogallery-owl .owl-carousel .owl-nav button.owl-prev {
	display: inline-block;
    float: left;
	margin-left: calc(-15px - var(--orn-arrow-width));
}
.child-owl .owl-carousel .owl-nav button.owl-next,
.promo-owl .owl-carousel .owl-nav button.owl-next,
.page-promo-owl .owl-carousel .owl-nav button.owl-next,
.photogallery-owl .owl-carousel .owl-nav button.owl-next {
	display: inline-block;
    float: right;
	margin-right: -15px;
}
.child-owl .owl-carousel .owl-nav button::before,
.promo-owl .owl-carousel .owl-nav button::before,
.page-promo-owl .owl-carousel .owl-nav button::before,
.photogallery-owl .owl-carousel .owl-nav button::before {
	content: "";
    position: absolute;
    display: inline-block;
    background: url(../img/arrow-ornament.png) no-repeat center / contain;
    padding: 0;
    /*top: calc(var(--orn-arrow-height)/4);*/
    left: 0;
    width: var(--orn-arrow-width);
    height: var(--orn-arrow-height);
	transform: translateY(-50%);
}
.child-owl .owl-carousel .owl-nav button.owl-next::before,
.promo-owl .owl-carousel .owl-nav button.owl-next::before,
.page-promo-owl .owl-carousel .owl-nav button.owl-next::before,
.photogallery-owl .owl-carousel .owl-nav button.owl-next::before {
	transform: translateY(-50%) scaleX(-1);
}
.child-owl .owl-carousel .owl-nav button span,
.promo-owl .owl-carousel .owl-nav button span,
.page-promo-owl .owl-carousel .owl-nav button span,
.photogallery-owl .owl-carousel .owl-nav button span {
	display: none;
}

.page-promo-owl {
	padding: 5rem 0;
}
.page-promo-owl {
	padding-top: 0;
}
.page-promo-owl .view-footer {
	padding-top: 1rem;
}
.page-promo-owl .view-footer h4 {
	text-align: center;
}

.promo-owl.dark,
.photogallery-owl.dark,
.bottom-promo-owl.dark {
	background: var(--second-color);
    margin: 5rem 0;
}
.bottom-promo-owl.dark {
    padding: 0 60px;
}
.bottom-promo-owl .view-content.row {
	/*margin: 0;*/
}
.home-page .promo-owl.dark {
    margin: 0;
}
.promo-owl.dark,
.photogallery-owl.dark {
	padding: 8.5rem 30px 8.5rem 30px;
	padding: 30px;
}
.photogallery-owl.dark {
	margin: 0;
	padding: 5rem 30px 5rem 30px;
}
.photogallery-owl.dark .owl-carousel .owl-stage-outer {
	overflow-x: clip;
    overflow-y: visible;
}

.bottom-promo-owl.dark {
	color: var(--second-text-color);
	color: initial;
}
.bottom-promo-owl .media-object {
	width: 100%;
}
.bottom-promo-owl .owl-theme .owl-controls, 
.bottom-promo-owl .owl-theme .owl-dots {
    margin-top: -40px !important;
    text-align: left;
    padding: 0 30px;
}
.insert-invert-column .bottom-promo-owl .owl-theme .owl-controls, 
.insert-invert-column .bottom-promo-owl .owl-theme .owl-dots {
    text-align: right;
}


.bottom-promo-owl .owl-carousel .owl-item .media.media--ratio {
	/*
    width: 50%;
    height: auto;
	padding-bottom: initial !important;
	*/
}
.bottom-promo-owl .owl-carousel .owl-item .card-image {
	position: relative;
}
.bottom-promo-owl .owl-carousel .owl-item img {
    bottom: initial;
	left: initial;
	right: initial;
	top: initial;
	width: 100%;
	height: auto;
	position: initial;
	z-index: initial;
}
.bottom-promo-owl .owl-carousel .owl-item .media-body {
	/*
    padding: 4rem;
	*/
}
.bottom-promo-owl .owl-carousel .owl-item .media-body .heading {
	display: none;
}

.promo-owl h2,
.page-promo-owl h2,
.child-owl h2,
.photogallery-owl h2 {
	text-align: center;
	margin-bottom: 2rem;
    font-size: var(--h2-font-size);
}
.block-views-blockthumbnail-promo-idee-eventi-focus-block-8 h3,
.block-views-blockthumbnail-promo-idee-eventi-focus-block-9 h3,
.block-views-blockthumbnail-promo-idee-eventi-focus-block-20 h3,
.block-views-blockread-xml-single-carousel-block-1 h3,
.block-views-blockread-xml-single-carousel-block-2 h3,
.block-views-blockread-xml-single-carousel-block-3 h3,
.block-views-blockread-xml-single-carousel-block-4 h3,
.block-views-blockread-xml-single-carousel-block-5 h3,
.block-views-blockread-xml-single-carousel-block-6 h3,
.block-views-blockread-xml-single-carousel-block-7 h3,
.block-views-blockread-xml-single-carousel-block-8 h3,
.block-views-blockread-xml-single-carousel-block-9 h3,
.block-views-blockread-xml-single-carousel-block-10 h3,
.block-views-blockread-xml-single-carousel-block-11 h3,
.block-views-blockread-xml-single-carousel-block-12 h3 {
	text-align: center;
	margin-bottom: 2rem;
    font-size: var(--h3-font-size);
}
.page-promo-owl h2 {
	text-align: left;
}
.promo-owl.dark h2,
.photogallery-owl.dark h2,
.bottom-promo-owl.dark h2 {
	color: var(--second-text-color);
	color: initial;
}

.page-promo-owl .card-group,
.promo-owl .card-group,
.view-node-promo .card-group,
.child-owl .card-group,
.static-block-child .card-group,
.single-card-owl .card-group {
	width: 100%;
}
.page-promo-owl .card-deck {
    margin-right: initial;
    margin-left: initial;
	z-index: 0;
}
.page-promo-owl .card-deck .card {
	border-radius: initial;
	border: initial;
	overflow: hidden;
}

.promo-owl .card-group .card-header,
.child-owl .card-group .card-header,
.page-promo-owl .card-group .card-header,
.single-card-owl .card-group .card-header {
	position: relative;
    background: transparent;
    border: initial;
    border-radius: initial;
    padding: 2.5rem 0px;
}
.single-card-owl .card-group .card-header {
    margin-top: 1rem;
	padding: 1.5rem 0px;
}
.promo-owl .card-group .card-header h3,
.child-owl .card-group .card-header h3,
.page-promo-owl .card-group .card-header h3,
.single-card-owl .card-group .card-header h4 {
	position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
}
.single-card-owl .card-group .card-header h4 div,
.news-promo-event-section h4 div {
	font-size: var(--event-date-size);
}
.single-card-owl .card-group .card-header .sub-title-card {
	position: relative;
	top: -1rem;
}
.single-card-owl .card-group .card-header .title-card {
	position: relative;
}
.single-card-owl.hidden-data-notizia .card-group .card-header .data-notizia {
	display: none;
}

.promo-owl .card-group .card-image,
.page-promo-owl .card-group .card-image,
.view-node-promo .card-group .card-image,
.child-owl .card-group .card-image,
.static-block-child .card-group .card-image,
.single-card-owl .card-group .card-image {
	position: relative;
}
.promo-owl .card-group .card img,
.page-promo-owl .card-group .card img,
.view-node-promo .card-group .card img,
.child-owl .card-group .card img,
.static-block-child .card-group .card img,
.single-card-owl .card-group .card img {
	border-radius: initial;
}
.page-promo-owl .card-deck .card-body {
	padding: 10px;
}
.promo-owl .card-group .card-body .caption,
.page-promo-owl .card-group .card-body .caption,
.view-node-promo .card-group .card-body .caption,
.child-owl .card-group .card-body .caption,
.static-block-child .card-group .card-body .caption,
.single-card-owl .card-group .card-body .caption {
	padding-top: 20px;
	padding-bottom: 60px;
}
.promo-owl .card-group .card-body .caption,
.child-owl .card-group .card-body .caption,
.page-promo-owl .card-group .card-body .caption,
.single-card-owl .card-group .card-body .caption {
	text-align: center;
}
.single-card-owl .card-group .card-body .caption {
    height: 180px;
}
.promo-owl .card-group .card-body .caption h4,
.page-promo-owl .card-group .card-body .caption h4,
.view-node-promo .card-group .card-body .caption h4,
.child-owl .card-group .card-body .caption h4,
.static-block-child .card-group .card-body .caption h4 {
    border-bottom: 1px solid var(--first-color);
	padding-bottom: .5rem;
}
.promo-owl .card-group .card-body .caption a.btn,
.page-promo-owl .card-group .card-body .caption a.btn,
.view-node-promo .card-group .card-body .caption a.btn,
.child-owl .card-group .card-body .caption a.btn,
.static-block-child .card-group .card-body .caption a.btn,
.single-card-owl .card-group .card-body .caption a.btn {
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
}
.promo-owl .card-group .card-body .caption a.btn-primary,
.child-owl .card-group .card-body .caption a.btn-primary,
.page-promo-owl .card-group .card-body .caption a.btn-primary,
.single-card-owl .card-group .card-body .caption a.btn-primary {
	left: 50%;
    transform: translate(calc(-50% - var(--orn-width)), 0);
}
/*********************** FINE grid of cards ***********************/


/*********************** INIZIO Photogallery ***********************/
.photogallery-owl .field__item {
	position: relative;
}
.photogallery-owl .col-auto {
	padding: 0;
}
.photogallery .views-view-grid {
	width: 100%;
}
.photogallery .row {
    /*padding: 15px 0px;*/
}
.photogallery h3 {
	margin-top: var(--h3-font-size);
}
.photogallery img {
	width: 100% !important;
	height: 100% !important;
	margin: 15px 0;
}
/************************ FINE Photogallery ************************/


/******************** INIZIO Contextual Contents ********************/
.contest-menu-desc,
.contest-menu-desc .col-auto {
	padding: 0;
}
.contest-menu-desc  .view-content {
	margin: 0;
}
.contest-menu-desc .views-row {
	overflow: hidden;
	width: 100%;
}
.contest-menu-desc .view-content .views-row:nth-child(odd){
	background-color: #f3f3f3;
}
.contest-menu-desc .views-row .container {
	margin-bottom: 6rem;
	margin-top: 6rem
}
.contest-menu-desc .col-lg-6:nth-child(odd) {
	padding-right: 30px;
}
.contest-menu-desc .col-lg-6:nth-child(even) {
	padding-left: 30px;
}

.contest-menu-desc .media-wrapper:nth-child(1) > .media--image {
	height: 450px;
}
.contest-menu-desc .media-wrapper:nth-child(1) > .media--image > img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.contest-menu-desc .img-to-left .media-wrapper:nth-child(2) > .media--image {
	max-width: 50%;
    margin-top: -50px;
    float: right;
    margin-right: -30%;
}
.contest-menu-desc .img-to-left .media-wrapper:nth-child(3) > .media--image {
	max-width: 50%;
    margin-top: -50px;
    float: right;
    margin-right: 15px;
}
.contest-menu-desc .img-to-right .media-wrapper:nth-child(2) > .media--image {
	max-width: 50%;
    margin-top: -50px;
    float: left;
    margin-left: -30%;
}
.contest-menu-desc .img-to-right .media-wrapper:nth-child(3) > .media--image {
	max-width: 50%;
    margin-top: -50px;
    float: left;
    margin-left: 15px;
}
/********************* FINE Contextual Contents *********************/


/*********************** INIZIO Press Area *************************/
.press-area .view-content .item {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    margin-top: 1rem;
}
.press-area .views-field-field-data-pubblicazione {
	min-width: 70px;
}
.press-area .views-field-nothing {
    flex: 1 1 auto;
}
.press-area .views-field-nothing-1 {
    align-self: flex-end;
    padding-right: 30px;
}
/************************** FINE Press Area *************************/

.instagram-feed  {
	margin-top: 5rem;
}
.instagram-feed h2 {
	text-align: center;
}


/*
.pannello-prenota {

	width: 100%;
	margin-left: auto;
	margin-right: auto;

	-ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
	
	-ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;

}
.pannello-prenota.booking-fixed-top {
    position: fixed;
    top: 90px;
    z-index: 3;
}
.pannello-prenota.booking-fixed-top .container {
	position: fixed;
	top: 75px;
	min-width: calc(100% - 30px);
}
*/
.pannello-prenota .container {
	position: absolute;
	width: 100%;
	top: 30%;
	z-index: 2;
	
    background: rgba(0,0,0,0.5);
	border-radius: 5px;
}
.pannello-prenota .content {
	z-index: 1035;
    background: var(--first-color);
    border-radius: 15px 0 0 15px;
    position: relative;
	/*padding-top: 15px;*/
	padding: 15px 5px;
	padding-top: 30px;
}
.pannello-prenota.booking-fixed-top .content {
    position: fixed;
    top: 130px;
    z-index: 1035;
}
.datepicker-fixed-top {
	top: 260px !important;
}
.pannello-prenota .close-booking {
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--second-text-color);
	cursor: pointer;
}
.pannello-prenota .form-group {
	margin: 0;
}
.pannello-prenota .form-control {
	padding: 0.175rem .75rem;
    height: auto !important;
	background: rgba(255,255,255,0.9);
	font-family: 'Roboto';
}
.pannello-prenota label {
	color: var(--second-text-color);
	margin-bottom: 0.1rem;
	font-size: 0.8rem;
}
.pannello-prenota .container-cta {
	margin: 15px 0 5px 0;
}
.pannello-prenota .modifica-prenotazione {
	/*font-size: 0.8rem;*/
	text-align: center;
    margin-bottom: 1rem;
}
.pannello-prenota a,
.pannello-prenota button {
	color: var(--second-text-color);
}

.pannello-prenota button.btn-secondary span {
	position: relative;
}
.pannello-prenota button.btn-secondary span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--second-text-color);
    position: absolute;
    bottom: 0.1rem;
    left: 50%;
    margin-left: -50%;
	
    transition: 0.3s;
    transform-origin: left;
}

.pannello-prenota a:hover,
.pannello-prenota a:focus {
	color: var(--second-text-color);
}
.pannello-prenota .modifica-prenotazione a {
	color: var(--second-text-color);
}
.pannello-prenota .modifica-prenotazione i {
	margin-right: 10px;
}
.pannello-prenota .form-text {
    margin-top: 0;
}
.pannello-prenota .webform-flex .webform-flex--container {
	width: 100%;
}
.pannello-prenota .banner-in-pannello p {
	margin: initial;
	line-height: 1.2;
}
.pannello-prenota hr { 
	margin: 6px 0;
}
.pannello-prenota .btn-more {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.pannello-prenota .form-required::after {
	display: none;
}


.main-content .block-page-title-block {
	display: none;
}
.landing-page .main-content .block-page-title-block {
	display: block;
}
.main-content .field--name-field-copertina {
	display: none;
}
.landing-page .main-content .field--name-field-copertina {
	display: block;
	width: 100%;
}
.main-content .stemma {
	max-width: 30%
}

.node--view-mode-full .field--name-field-data-evento {
	/*text-align: center;*/
	margin-bottom: 1rem;
}
.node--view-mode-full .field--name-field-data-evento::before {
	margin-right: 0.5em;
	
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f274";
}


#block-webform {
	/*padding: 0 15px;*/
}
#block-webform > .content {
	padding: 30px;
    background: #f5f4f4;
}
/*
#block-webform .content > h2::before,
#block-webform .block-webform-block > h2::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f044";
	padding-right: 4px;
}
#block-webform .iti {
    display: block;
}
#block-webform .form-image {
	width: 100%;
    height: 100%;
	background: url(../img/ingresso.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
*/

#block-webform form {
	line-height: 1.4;
	font-size: 1rem;
}

#block-webform form #edit-informativa{
	margin: 0;
}
#block-webform form label {
    margin-bottom: 0.2rem;
	font-weight: 600;
}
#block-webform form legend {
    font-size: 1rem;
}
#block-webform form .form-group {
    margin-bottom: 0.4rem;
}
	
form details.form-wrapper,
#block-webform details.form-wrapper {
	padding: 10px;
    border: 1px solid #ddd;
    margin: 10px 0;
}
.intl-tel-input {
    display: block;
}
fieldset.col-auto {
    padding: 0;
}
.form-text {
    margin-top: inherit;
}


.bottom {
	background: #ddd;
	padding: 4rem 0;
}
.bottom {
    color: #fff;
    padding: 0;
    background-image: url(../img/bgd-footer.jpg);
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.bottom:before {
	content: " ";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.bottom .contattaci {
    padding: 12rem 0;
}

.bottom h3,
.bottom p a {
    color: #c5c5b8;
}

.bottom .fa-inverse {
    color: #c5c5b8;
}


.badge-section img {
	max-height: 90px;
    width: auto;
	padding: 5px 10px;
}

.badge img {
	max-height: 65px;
	margin: 5px;
}

.badges {
	width: 100%;
	background: #e4e4e4;
    margin: 0 !important;
}
.badges .row {
    padding: 1rem 0;
}

.vantaggi {
	position: relative;
    width: 100%;
}

img.badge-sostenibilita.media__element {
	width: 300px;
	height: auto;
}
.banner-leading-app {
	background: #1a2430;
}

#eighty_hotel_reviews_widget {
	position: fixed !important;
    bottom: -15px !important;
    left: -90px !important;
    width: 400px !important;
    height: auto !important;
    z-index: 9999 !important;
    transform: translate(0, 0) !important;
    border-radius: 8px !important;
	bottom: -15px !important;
    top: initial !important;
}

.site-footer {
	background: var(--second-color) !important;
	padding: 0;
}
.site-footer .h3, .site-footer .h4, .site-footer h3, .site-footer h4 {
	color: var(--primary-color);
}

.site-footer .content {
    color: var(--fifth-color);
	font-size: var(--footer-font-size);
}
.site-footer nav.menu--footer,
.site-footer .footer-cta {
	width: 100%;
	margin: 0;
}
.site-footer nav.menu--footer .navbar-nav {
    -ms-flex-direction: column;
    flex-direction: row;
	-ms-flex-pack: center!important;
    justify-content: center!important;
}
.site-footer nav.menu--footer .navbar-nav .nav-item {
    padding: .5rem .5rem;
	font-size: var(--footer-font-size);
}
.site-footer .content .b3cols-padding > div:nth-child(2) a {
	display: inline-block;
    margin-bottom: 5px;
}
.site-footer .content a, 
.site-footer .content a.is-active,
.site-footer .content a:hover, 
.site-footer .content a:focus,
.site-footer nav.menu--footer .navbar-nav a.nav-link {
    color: var(--fifth-color);
	position: relative;
	font-size: var(--footer-font-size);
	padding: initial;
}
.site-footer .content a::after,
.site-footer nav.menu--footer .navbar-nav a.nav-link::after {
	content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--second-text-color);
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform-origin: left center;
    transition: 0.3s;
}
.site-footer .content .b3cols-padding > div:nth-child(2) a::after {
	bottom: 2px;
}

.site-footer .content a:hover::after,
.site-footer .content a:focus::after {
	background-color: var(--text-color);
}
.no-btn-underline a::after {
	content: initial !important;
}
.site-footer .content .social a::after {
	content: initial;
}

.site-footer ul.social {
    margin-bottom: 0;
	padding-left: initial !important;
}
.site-footer ul.social li a {
	color: var(--first-color);
	border: none;
}
.site-footer ul.social li a:hover,
.site-footer__top .content li a:hover, 
.site-footer__top .content li a:focus {
	color: #a19376;
	background: transparent;
}
.site-footer ul.social li a .svg-inline--fa.fa-stack-2x {
    height: inherit;
    width: inherit;
}

.site-footer__header .row,
.site-footer__top .row,
.site-footer__bottom .row {
	margin: 0;
}
.site-footer__bottom {
	border-top: initial;
	padding: 0 0 15px 0;
	margin: 0;
}
.site-footer__bottom .content {
	padding: initial;
}
.site-footer .block {
    border: none;
	padding: initial;
    margin: initial;
}
.site-footer__top .block-menu {
    margin: 20px 0;
	padding: 10px;
    border: none;
}
.site-footer .four-icons-fixed svg, .site-footer .four-icons-fixed i {
    font-size: 2rem;
    color: var(--third-color);
}


.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.videoWrapper.frame-rect iframe {
	padding: calc((var(--frame-thickness-rect)/2) - 8px)
}

/*
#sliding-popup .eu-cookie-compliance-secondary-button {
    cursor: pointer;
    margin-right: 5px;
    margin-top: 1em;
    vertical-align: middle;
    overflow: visible;
    width: auto;
    -moz-box-shadow: inset 0 1px 0 0 #ffffff;
    -webkit-box-shadow: inset 0 1px 0 0 #168d1a;
    background-color: #168d1a;
    border-radius: 6px;
    border: 1px solid #168d1a;
    color: #000;
    font-family: Arial,sans-serif;
    font-weight: bold;
    padding: 4px 8px;
    text-decoration: none;
	color: #fff;
}
*/


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	/*
	.main-content .block-page-title-block {
		display: block;
	}
	.title-page {
		display: none;
	}
	*/
	
	#navbar-main {
		min-height: 68px;
	}
	.block-system-branding-block img,
	nav.affix .block-system-branding-block img {
		max-height: 38px;
	}
	.home-page header #navbar-main.affix .block-system-branding-block {
		display: block;
		
		max-height: 55px;      /* scegli un valore >= altezza contenuto massima */
		padding: 0;
		opacity: 1;
	}
	
	.slideshow-owl .owl-stage .caption {
		position: relative;
		background: var(--first-color);
		border-radius: inherit;
		top: auto;
		padding: 50px;
	}
	.slideshow-owl .owl-theme .owl-controls, 
	.slideshow-owl .owl-theme .owl-dots {
		position: relative;
		margin-top: 0 !important;
	}
/*
	.pannello-prenota {
		max-width: 540px;
	}
*/
	.static-block-child .view-node-child .card-deck .card {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: 30px;
		margin-right: 30px;
		margin-top: -30px;
		position: relative;
	}
	.single-card-owl .card-group .card-body .caption {
		height: 210px;
	}
	.news-promo-event-section .container {
        padding-right: 30px;
		padding-left: 30px;
    }
	.news-promo-event-section h3 {
		width: 55%;
		margin-left: auto;
		margin-right: auto;
	}
	/*
	.view-minimal-node-front .card img {
		margin-left: initial !important;
		margin-right: initial !important;
	}
	.view-minimal-node-front .card .card-header {
		float: initial !important;
		position: absolute;
		top: 0;
	}
	.view-minimal-node-front .card .card-body {
		margin-top: initial;
		padding-top: 10px;
		margin-left: initial !important;
		margin-right: initial !important;
	}
	.scritta-verticale {
		font-size: 3rem;
		color: #fff;
		position: initial;
		-webkit-transform: initial;
		transform: initial !important;
		transform-origin: initial;
		text-shadow: 0 0 6px #000;
	}
	*/
	
	/*.promo-owl .card-deck .card,*/
	.page-promo-owl .card-deck .card {
		margin-right: 15px;
		margin-left: 15px;
	}
	.static-block-child .view-node-child .card-deck .card {
		margin: 15px;
	}
	
	.home-page blockquote {
		font-size: 2.5rem;
	}
	
	.logo-footer img {
		width: 100%;
		max-height: none !important;
	}
}

@media(max-width: 575.98px) and (orientation:portrait) {
    .slideshow-owl .owl-carousel .owl-stage-outer {
        /*height:calc(100vh - 180px)*/
    }

    .slideshow-owl .owl-carousel .owl-item .content-img {
        width: 200%;
        overflow: hidden
    }
	.slideshow-owl .owl-carousel .owl-item .content-img.content-video-mobile {
        width: 100%;
        overflow: hidden
    }

    .slideshow-owl .owl-carousel .owl-item img {
        /*height: calc(100vh - 180px);*/
        /*margin-left: -23%*/
    }

    .slideshow-owl .owl-carousel .owl-item .caption {
        /*margin-top: calc(-100vh + 126px);*/
		margin-top: -240px;
        background: transparent
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
	
	#navbar-main {
		min-height: 73px;
	}
	.block-system-branding-block img,
	nav.affix .block-system-branding-block img {
		max-height: 60px;
	}
	.home-page header #navbar-main.affix .block-system-branding-block {
		display: block;
		
		max-height: 60px;      /* scegli un valore >= altezza contenuto massima */
		padding: 0;
		opacity: 1;
	}
	
	.static-block-child .view-node-child .card-deck .card {
		-ms-flex: inherit;
		flex: inherit;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: initial;
		margin-right: initial;
		margin-top: initial;
		position: relative;
	}
	
	/*
	.view-minimal-node-front .container {
		max-width: 100%;
	}
	.view-minimal-node-front .card img {
		width: calc(100% - 150px);
	}
	.view-minimal-node-front .card:nth-child(odd) .card-body {
		margin-top: initial;
		padding-top: 10px;
		margin-left: 150px;
	}
	.view-minimal-node-front .card:nth-child(even) .card-body {
		margin-top: initial;
		padding-top: 10px;
		margin-right: 150px;
	}
	.view-minimal-node-front .card:nth-child(odd) .card-header {
		float: initial;
		bottom: 0;
		position: absolute;
	}
	.view-minimal-node-front .card:nth-child(even) .card-header {
		float: initial;
		bottom: 0;
		position: absolute;
		right: 0;
	}
	*/
	
	/*.promo-owl .card-deck .card,*/
	.page-promo-owl .card-deck .card {
		margin-right: 30px;
		margin-left: 30px;
	}
	.static-block-child .view-node-child .card-deck .card, {
		margin: 30px;
	}
	.news-promo-event-section .b3cols-padding > div {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }
	.news-promo-event-section h3 {
		width: 48%;
		margin-left: auto;
		margin-right: auto;
	}
}


/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
	
    .h2,h2 {
        font-size: var(--h2-font-size);
    }
    .h3,h3 {
        font-size: var(--h3-font-size);
    }
	
    #navbar-main {
        padding: 0.4rem 0.4rem;
    }

    .button-prenota a.btn-primary {
        font-size: 0.9rem;
    }

    .button-prenota a.concierge-bell::before {
        content: "";
        margin-right: 0;
    }

    .block-language {
        margin-right: 0;
    }

    .block-language button::before {
        display: inline-block;
        width: initial;
        content: "";
        height: initial;
        background: initial;
        margin-right: 0;
    }
	
    .block-page-title-block h1 {
        font-size: var(--h1-font-size);
    }
	.contattaci .container-fluid > .row > [class*="col"] {
		margin: 2rem 0;
	}
    .slideshow-owl .owl-stage .caption {
        padding: 15px;
    }

    .slideshow-owl .owl-stage .caption h3 {
        font-size: var(--h3-font-size);
    }

    .slideshow-owl .owl-stage .caption p {
        font-size: 1.1rem;
    }
	blockquote {
		font-size: 1.5rem;
	}
	
	.bottom-promo-owl .owl-theme .owl-dots {
		position: relative;
        margin-top: 0px !important;
        text-align: right;
        padding: 0 30px;
	}
	
	.footer-cta .btn-primary.icon.inverse:before {
		padding: 10px 15px;
		position: absolute;
		left: 0;
		top: -10px;
	}
	.footer-cta div.col-sm-6 > p {
		text-align: right;
	}
	
	.slideshow-owl .owl-carousel .owl-item .content-img.content-video-mobile video {
		min-width: 100%;
		min-height: 100%;
		width: 100%    !important;
		height: auto   !important;
		background-size: cover;
		/*margin-top: -75px;*/
	}
	
    .press-area .view-content .item {
        flex-direction: column;
        gap: initial;
        padding-bottom: 1rem;
    }

    .press-area .views-field-nothing-1 {
        text-align: end;
    }
	.press-area .views-field-nothing-1 .btn-more {
        margin-top: 1rem;
        margin-bottom: initial;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.slideshow-owl .owl-carousel .owl-item .content-img video {
		min-width: 100%;
		min-height: 100%;
		width: 100%    !important;
		height: auto   !important;
		background-size: cover;
	}
	.webform-flexbox {
		margin: 0 -0.5em;
	}
	
	.promo-owl,
	.child-owl,
	.page-promo-owl,
	.photogallery-owl {
		padding-left: calc(var(--orn-arrow-width) + 30px);
		padding-right: calc(var(--orn-arrow-width) + 30px);
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
	
	.wrapper-container .container {
		max-width: 100%;
	}
	
	#navbar-main {
		min-height: 73px;
	}
	.block-system-branding-block img,
	nav.affix .block-system-branding-block img {
		max-height: 60px;
	}
	.home-page header #navbar-main.affix .block-system-branding-block {
		display: block;
		
		max-height: 60px;      /* scegli un valore >= altezza contenuto massima */
		padding: 0;
		opacity: 1;
	}
	
	.site-footer .container {
		max-width: 100%;
	}
	
	.static-block-child .view-node-child .card-deck .card {
		-ms-flex: 0 0 41.6%;
		flex: 0 0 41.6%;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: initial;
		margin-right: initial;
		margin-top: initial;
		position: relative;
	}
	
	.bottom-promo-owl .owl-theme .owl-dots {
		padding: 0 15px;
	}
	.insert-invert-column .bottom-promo-owl .owl-theme .owl-dots {
		margin-left: 50%;
		margin-top: -15px !important;
	}
	.news-promo-event-section .b3cols-padding > div {
		padding-left: 45px !important;
        padding-right: 45px !important;
	}
	.news-promo-event-section h3 {
		width: 49%;
		margin-left: auto;
		margin-right: auto;
	}
	/*
	.view-minimal-node-front .container {
		max-width: 100%;
	}
	.view-minimal-node-front .card img {
		width: calc(100% - 150px);
	}
	.view-minimal-node-front .card:nth-child(odd) .card-body {
		margin-top: initial;
		padding-top: 10px;
		margin-left: 150px;
	}
	.view-minimal-node-front .card:nth-child(even) .card-body {
		margin-top: initial;
		padding-top: 10px;
		margin-right: 150px;
	}
	.view-minimal-node-front .card:nth-child(odd) .card-header {
		float: initial;
		bottom: 0;
		position: absolute;
	}
	.view-minimal-node-front .card:nth-child(even) .card-header {
		float: initial;
		bottom: 0;
		position: absolute;
		right: 0;
	}
	*/
	blockquote {
		font-size: 2rem;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    header {
        position:relative;
    }
	
	body .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-left], 
	body .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right] {
		bottom: 65px!important;
	}
	
	.block-system-branding-block img,
	nav.affix .block-system-branding-block img {
		margin-top: initial;
		margin-bottom: initial;
		padding-bottom: initial;
		padding: 0 5px;
	}
	#navbar-main .navbar-collapse > nav {
		height: calc(100vh - 125px);
	}
	
	#navbar-main .navbar-collapse .block-system-branding-block {
		display: none;
	}
	#navbar-main.navbar-expand-lg .navbar-nav .dropdown-menu {
		border: 1px solid transparent;
	}
	
	
	.home-page header .block-system-branding-block {
		/*display: none;*/
		
		overflow: hidden;
		max-height: 0;          /* collassato */
		padding: 0;             /* rimuove padding verticale quando chiuso */
		opacity: 0;
		transition:
		max-height 0.35s ease,
		padding 0.25s ease,
		opacity 0.25s ease;
	}

	
	.logo-home-page {
		margin-top: 1.5rem;
	}
	.logo-home-page img {
		max-height: 150px;
	}
	.slideshow-owl {
		margin-top: 1.5rem;
	}
	
	.region-secondary-menu, .region-top-header {
		-ms-flex-pack: center!important;
		justify-content: center!important;
	}
	/*
	.view-minimal-node-front .card-columns {
		max-width: 100%;
	}
	*/
	/*
	.view-node-front .card-columns {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	*/
	
	/*
	.view-node-promo .card-columns {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
    }
	*/
	
	.bottom:before {
		height: 100%;
	}
	
	.static-block-child .view-node-child h3 {
		margin: .5rem 0;
		font-size: 1.4rem;
	}
	
	
	#myBtnToTop {
		bottom: 80px;
	}
	.site-footer {
		padding: 35px 0 60px;
	}

	.fixed-mobile-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: var(--second-color);
		z-index: 999;
		color: var(--second-text-color);
		/*
		-webkit-box-shadow: 0px 12px 15px 10px rgba(158,158,158,0.4);
		-moz-box-shadow: 0px 12px 15px 10px rgba(158,158,158,0.4);
		box-shadow: 0px 12px 15px 10px rgba(158,158,158,0.4);
		*/
	}
	.fixed-mobile-bar ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		
		padding: 0;
		margin-bottom: 0;
	}
	.fixed-mobile-bar ul > li {
		display: block;
		
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		position: relative;
	}
	.fixed-mobile-bar ul > li > a {
		display: block;
		padding: 10px;
		font-size: 10px;
		line-height: 16px;
		text-align: center;
		color: #fff;
	}
	.fixed-mobile-bar ul li:before {
		display: initial;
		padding: initial;
		content: "";
	}
	.fixed-mobile-bar ul > li > a > i {
		font-size: 26px;
		color: #fff !important;
	}
	
	#navbar-top {
		background-color: var(--first-color) !important;
	}
	
    #navbar-main button.navbar-toggler {
        width: 64px;
    }

    #navbar-main button.navbar-toggler .navbar-toggler-icon,
	#navbar-main button.navbar-toggler .navbar-toggler-icon::before,
	#navbar-main button.navbar-toggler .navbar-toggler-icon::after {
        display: block;
        background-color: var(--cta-color);
        position: absolute;
        height: 2px;
        width: 38px;
        transition: transform 400ms cubic-bezier(0.23,1,0.32,1);
        border-radius: 2px;
    }

    #navbar-main button.navbar-toggler .navbar-toggler-icon::before {
        content: '';
        margin-top: -8px;
    }

    #navbar-main button.navbar-toggler .navbar-toggler-icon::after {
        content: '';
        margin-top: 8px;
    }
	
	#navbar-main {
		background: var(--main-color) !important;
	}
	
	#navbar-main .block-language button {
		color: var(--title-color);
	}
	.block-language button:hover,
	.block-language button.btn:not(:disabled):not(.disabled):active,
	.block-language .show>.btn.dropdown-toggle {
		color: var(--title-color) !important;
	}
	
	.slideshow-owl .owl-stage .caption {
		top: 40%;
	}
	
	header nav:first-of-type {
		padding-bottom: 0;
		padding-top: 0;
	}
	#navbar-top {
		padding: 0;
	}
	
	/*
	.menu--navigazione-secondaria li.nav-item a {
		width: 39px;
		overflow: hidden;
	}
	*/
	.menu--navigazione-accessoria a.icon:before{
		margin-right: 1rem;
	}
	.menu--navigazione-secondaria li.nav-item a,
	.menu--navigazione-accessoria  li.nav-item a {
		white-space: nowrap;
	}
	
	.home-page .logo-terra-nera {
		max-width: 40%;
	}
	/*
	.bottom-promo-owl .owl-carousel .owl-item .media.media--ratio {
		width: 100%;
	}
	.bottom-promo-owl .owl-carousel .owl-item img {
		width: 100%;
	}
	.bottom-promo-owl .owl-carousel .owl-item .media-body {
		padding: 1rem;
		position: fixed;
		background: rgba(0,0,0,0.5);
		height: 100%;
	}
	*/
	/*
	.simple-node-front .caption {
		padding: 0 0 30px 0;
	}
	*/
	
	.title-page {
		margin-bottom: 60px;
	}
	
	#eighty_hotel_reviews_widget {
		position: fixed !important;
		bottom: -15px !important;
		left: -90px !important;
		width: 400px !important;
		height: auto !important;
		z-index: 99 !important;
		transform: translate(0, 0) !important;
		border-radius: 8px !important;
		bottom: 45px !important;
		top: initial !important;
	}
	
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

	/*INIZIO dropdown menu on hover*/
	/*
	#navbar-main .dropdown-toggle::after {
		content: none;
	}
	#navbar-main li.menu-item--expanded::after {
		display: inline-block;
		width: 0;
		height: 0;
		margin-left: 0.255em;
		vertical-align: 0.255em;
		content: "";
		border-top: 0.5em solid;
		border-right: 0.3em solid transparent;
		border-bottom: 0;
		border-left: 0.3em solid transparent;
		position: absolute;
		top: calc(50% - 0.25em);
		right: 0;
		color: #fff;
		
		margin-right: 8px;
		cursor: pointer;
	}
	#navbar-main nav > ul > li.menu-item--expanded > a {
		padding: 0.8rem 0.4rem 0.8rem 0.8rem;
		margin: 0 26px 0 0;
	}
	*/
	/*FINE dropdown menu on hover*/
	
	#navbar-main.navbar-expand-lg {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#navbar-main.navbar-expand-lg .navbar-collapse {
		width: 100%;
	}
	
	.home-page header #navbar-main {
		max-height: 53px;
        overflow-y: hidden;

        /*Transition time is increased to accomodate the height */
        transition: max-height 0.25s linear;
	}
	.home-page header #navbar-main.affix {
		max-height: 123px;
	}
	.home-page header .block-system-branding-block {
		/*display: none;*/
		
		overflow: hidden;
		max-height: 0;          /* collassato */
		padding: 0;             /* rimuove padding verticale quando chiuso */
		opacity: 0;
		transition:
		max-height 0.35s ease,
		padding 0.25s ease,
		opacity 0.25s ease;
	}
	.home-page header #navbar-main.affix .block-system-branding-block {
		display: block;
		
		max-height: 70px;      /* scegli un valore >= altezza contenuto massima */
		padding: 0;
		opacity: 1;
	}

	header {
		/*
		position: absolute;
		width: 100%;
		z-index: 4;
		*/
		background: #fff;
	}
	.landing-page header {
		position: relative;
	}
	.landing-page header::before {
		content: "";
		position: absolute;
		top: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		/*background: rgba(0,0,0,0.8);*/
	}
	.region-secondary-menu {
		-webkit-box-pack: justify !important;
		-webkit-justify-content: space-between !important;
		-ms-flex-pack: justify !important;
		-moz-box-pack: justify !important;
		justify-content: space-between !important;
	}
	.region-top-header .block-system-branding-block img {
		max-height: 75px;
	}
	#navbar-top {
		background-color: var(--first-color) !important;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding: 0;
	}
	.landing-page #navbar-top {
		/*background: transparent !important;*/
	}
	
	.block-language {
		min-width: 111px;
	}

	/*#navbar-main RIMOSSO*/
	
	a.icon.riquadra {
		text-transform: uppercase;
		font-size: 0.8rem;
		
		margin: 0 6px;
		min-width: 130px;
		text-align: center;
		/*opacity: 0.8;*/
	}
	a.icon.riquadra:hover {
		color: #fff !important;
		/*opacity: 1;*/
	}
	a.icon.riquadra::before {
		display: block;
		text-align: center;
		margin: initial;
		font-size: 1.5rem;
	}
	
	/*
	.slideshow-owl .owl-carousel .owl-item .content-img::after {
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
	}
	*/
	
	.page-promo-owl {
		padding: 5rem 30px;
	}
	.page-promo-owl {
		padding-top: 0;
	}
	
	.pannello-prenota .container {
		position: relative;
	}
	.pannello-prenota {
		position: absolute;
		top: 0;
		overflow: hidden;
		padding: 0;
	}
	
	
	/*
	.simple-node-front .caption h2 {
		margin-bottom: 2rem;
		font-size: var(--h2-font-size);
	}
	*/
	/*.simple-node-front .caption a.btn,*/
	.bottom-promo-owl .caption a.btn,
	.location-home .contain a.btn,
	.bs-region--top-right .field--name-field-azione a.btn,
	.bs-region--top a.btn,
	.contest-menu-desc a.btn {
		margin-top: 0.5rem;
	}
	
	.image-spacing {
		padding: 0 4.5rem !important;
	}
	.bs-region--top-left,
	.bs-region--bottom-left,
	#block-webform .row > div:nth-child(1) {
		padding-right: 30px;
	}
	.bs-region--top-right,
	.bs-region--bottom-right,
	#block-webform .row > div:nth-child(1) {
		padding-left: 30px;
	}
	
	/*
	.simple-node-front .view-content > .container > .row {
		padding: 5rem 0;
	}
	*/
	
	/*
	.simple-node-front .view-content > .container > .row:nth-child(even) > div:nth-child(1) {
		-ms-flex-order: 2;
		order: 2;
		
		margin-left: 0 !important;
	}
	.simple-node-front .view-content > .container > .row:nth-child(even) > div:nth-child(2) {
		-ms-flex-order: 1;
		order: 1;
		z-index: 1;
		
		padding-left: 0;
        padding-right: 30px;
	}
	*/
	
	/*
	.simple-node-front .view-content > .container > .row:nth-child(even) > div:nth-child(3) .fotos {
		text-align: start;
	}
	.simple-node-front .view-content > .container > .row:nth-child(odd) > div:nth-child(2) {

	}
	.simple-node-front .view-content > .container > .row:nth-child(odd) > div:nth-child(3) .fotos {
		text-align: end;
	}
	.simple-node-front .caption {
		
	}
	.simple-node-front .fotos {
		margin-top: -6rem;
	}
	.simple-node-front .fotos img {
		margin: 0 15px;
		vertical-align: top;
	}
	*/
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

	/*
	.nav-mobile nav a {
		font-size: 0.95rem;
		padding: 0.3rem 1rem;
	}
	*/
	#navbar-main.navbar-expand-lg .navbar-nav .nav-item {
		margin: 0 0.25rem;
	}
	#navbar-main nav a {
		font-size: var(--navbar-main-font-size);
	}
	#navbar-main.affix nav a {
		font-size: var(--navbar-main-font-size);
	}

	.static-block-child .view-node-child .card-deck .card {
		-ms-flex: 0 0 43.6%;
		flex: 0 0 43.6%;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: initial;
		margin-right: initial;
		margin-top: initial;
		position: relative;
	}
	.single-card-owl .card-group .card-body .caption {
		height: 240px;
	}
	.news-promo-event-section h3 {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.news-promo-event-section h4 div {
		font-size: var(--event-date-size);
	}
	/*
	.simple-node-front .caption {
		
	}
	.simple-node-front .caption h2 {
		font-size: var(--h2-font-size);
	}
	*/
	.image-spacing {
		padding: 0 1rem !important;
	}
}

@media (max-width: 1199.98px) { 
	/*
	.simple-node-front .caption {
		
	}
	.simple-node-front .view-content > .row:nth-child(even) > div:nth-child(2) {
		padding: 0 1rem;
	}
	*/
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    .slideshow-owl .owl-carousel .owl-stage-outer {
		/*height: 100vh;*/
    }

	
	.location-home,
	.bottom	{
		background-attachment: fixed;
		height: 100vh;
	}
	.location-home .overlay {
		height: 100vh;
	}
	.bottom .contattaci {
		padding: 7rem 0 12rem 0;
	}
	
	/*
	.child-owl .owl-carousel .owl-stage div.active:nth-child(even) {
		border-left: 1px solid var(--first-color) !important;
	}
	*/
}

@media (min-width: 1200px) and (max-width: 1365.98px) {
	#navbar-main.navbar-expand-lg .block-system-branding-block img {
		padding: 0;
	}
	/*
	#navbar-main nav a {
		font-size: 1.1rem;
	}
	#navbar-main.affix nav a {
		font-size: 1.1rem;
	}
	*/
	
	.static-block-child .view-node-child .card-deck .card {
		/*
		-ms-flex: 0 0 28%;
		flex: 0 0 28%;
		*/
		-ms-flex: 0 0 41.3%;
		flex: 0 0 41.3%;
		margin: 50px;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: 30px;
		margin-right: 30px;
		margin-top: -30px;
		position: relative;
	}
	.single-card-owl .card-group .card-body .caption {
		height: 220px;
	}
	.news-promo-event-section h3 {
		width: 75%;
		margin-left: auto;
		margin-right: auto;
	}
	.news-promo-event-section h4 div {
		font-size: var(--event-date-size);
	}
	.pannello-prenota.col-xl-2 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.pannello-prenota.offset-xl-10 {
		margin-left: 75%;
	}
	
	body.fontyourface {
		line-height: var(--body-line-height);
	}
	/*
	.simple-node-front .caption {
		
	}
	.simple-node-front .view-content > .row:nth-child(even) > div:nth-child(2) {
		padding: 0 1rem;
	}
	*/
	.image-spacing {
		padding: 0 2rem !important;
	}
}

@media (max-width: 1365.98px) {
	body.fontyourface {
		line-height: var(--body-line-height);
	}
}

@media (min-width: 1366px) and (max-width: 1535.98px) {
	.wrapper-container .container {
		max-width: 1280px;
	}
	/*
	#navbar-main nav a {
		font-size: 1.25rem;
	}
	#navbar-main.affix nav a {
		font-size: 1.25rem;
	}
	*/
	.static-block-child .view-node-child .card-deck .card {
		/*
		-ms-flex: 0 0 29%;
		flex: 0 0 29%;
		*/
		-ms-flex: 0 0 42.6%;
		flex: 0 0 42.6%;
		margin: 50px;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: 30px;
		margin-right: 30px;
		margin-top: -30px;
		position: relative;
	}
	.single-card-owl .card-group .card-body .caption {
		height: 200px;
	}
	.news-promo-event-section h3 {
		width: 65%;
		margin-left: auto;
		margin-right: auto;
	}
	.pannello-prenota.col-xl-2 {
		-ms-flex: 0 0 21%;
		flex: 0 0 21%;
		max-width: 21%;
	}
	.pannello-prenota.offset-xl-10 {
		margin-left: 79%;
	}
	
	body.fontyourface {
		line-height: var(--body-line-height);
	}
	/*
	.simple-node-front .caption {
		
	}
	*/
	.image-spacing {
		padding: 0 4rem !important;
	}
}

@media (max-width: 1535.98px) {
	/*
	.simple-node-front .caption h2 {
		margin-bottom: 1rem;
	}
	.simple-node-front .caption a.btn {
		margin-top: 1rem;
	}
	*/
}

@media (min-width: 1536px) {
	/*
	#navbar-main .dropdown-item a {
		font-size: 1.2rem;
	}
	#navbar-main.affix .dropdown-item a {
		font-size: 1.2rem;
	}
	*/
	
	/*.single-card-owl .owl-item .col-12*/
	.static-block-child .col-xl-4,
	.view-node-promo .col-xl-4,
	.promo-owl .owl-item .col-12,
	.child-owl .owl-item .col-12,
	.page-promo-owl .owl-item .col-12,
	.photogallery-owl .owl-item .col-12 {
	    padding-right: 30px;
		padding-left: 30px;
	}
	.news-promo-event-section .b3cols-padding > div {
		padding-left: 50px !important;
        padding-right: 50px !important;
	}
	.news-promo-event-section h3 {
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1536px) and (max-width: 1919.98px) { 
	.wrapper-container .container {
		max-width: 1440px;
	}
	.static-block-child .view-node-child .card-deck .card {
		/*
		-ms-flex: 0 0 29.4%;
		flex: 0 0 29.4%;
		*/
		-ms-flex: 0 0 43.5%;
		flex: 0 0 43.5%;
		margin: 50px;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: 50px;
		margin-right: 50px;
		margin-top: -50px;
		position: relative;
	}
	
}

@media (min-width: 1920px) {
	.wrapper-container .container {
		max-width: 1536px;
	}
	.static-block-child .view-node-child .card-deck .card {
		/*
		-ms-flex: 0 0 29.4%;
		flex: 0 0 29.4%;
		*/
		-ms-flex: 0 0 43.5%;
		flex: 0 0 43.5%;
		margin: 50px;
	}
	.static-block-child .view-node-child .card-deck .card .card-body {
		margin-left: 50px;
		margin-right: 50px;
		margin-top: -50px;
		position: relative;
	}
	.news-promo-event-section h3 {
		width: 55%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 2000px) {
	.container {
        max-width: 1440px;
	}
	.wrapper-container .container {
		max-width: 1640px;
	}
	/*
	.slideshow-owl .owl-carousel .owl-item .content-img video {
		height: 100vh !important;
		width: auto !important;
	}
	*/
	.slideshow-owl .owl-carousel .owl-item img {
		/*height: 100vh;*/
		width: auto;
	}
}