@import url('inter_external_css.css'); 
@import url('libre_baskerville_external_css.css'); 

html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) 
	{
  		html { font-family: 'Inter', sans-serif; }
	}

html, body { height: 100%; scroll-behavior: smooth;	} 

*{
 	 padding: 0px;
	margin: 0px;
	border: 0;
	font-family: inherit;
	box-sizing: border-box;
	transition: all 0.2s ease;
}

body {
	font-weight: 400;
	font-size: 0.94rem;
	line-height: 1.4;
	color: #212529;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

/* grids
--------------------------------------------- */

.card {
	background-color: #fff;
	display: block;
	padding: 15px;
	box-shadow: 0 0 0 3px #F4F4F4;
	border: 1px solid rgba(0,0,0,.125);
	/*
	margin: 0px auto 0px auto;
	*/
}

.container {
	width: 90%;
	margin: auto;
	max-width: 1140px;
}

.row {
	display: grid;
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	margin-bottom: 15px;
}

.nogap {
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	margin-bottom: 0px;
}

.no-row-gap {
	grid-row-gap: 0px;
	margin-bottom: 0px;
}

.row-1 				{	grid-template-columns: 1fr; }
.row-1-1 			{	grid-template-columns: repeat(2, 1fr); }
.row-1-1-1 			{	grid-template-columns: repeat(3, 1fr); }
.row-1-1-1-1 		{	grid-template-columns: repeat(4, 1fr); }
.row-1-1-1-1-1 		{	grid-template-columns: repeat(5, 1fr); }
.row-1-1-1-1-1-1	{	grid-template-columns: repeat(6, 1fr); }
.row-1-2 			{	grid-template-columns: 1fr 2fr; }
.row-2-1 			{	grid-template-columns: 2fr 1fr; }
.row-1-3 			{	grid-template-columns: 1fr 3fr; }
.row-1-4 			{	grid-template-columns: 1fr 4fr; }
.row-1-5 			{	grid-template-columns: 1fr 5fr; }
.row-1-18 			{	grid-template-columns: 1fr 18fr; }
.row-3-1 			{	grid-template-columns: 3fr 1fr; }
.row-1-2-2 			{	grid-template-columns: 1fr 2fr 2fr; }
.row-1-1-3 			{	grid-template-columns: 1fr 1fr 3fr; }
.row-3-2-1 			{	grid-template-columns: 3fr 2fr 1fr; }
.row-1-1-1-1-1-1-1-1-1-1-1-1-1-1-1-1-1-1-1-1 {	grid-template-columns: repeat(20, 1fr); }
.row-1-4-1 			{	grid-template-columns: 1fr 4fr 1fr; }
.row-1-3-1 			{	grid-template-columns: 1fr 3fr 1fr; }
.row-1-3-1-1-1 		{	grid-template-columns: 1fr 3fr 1fr 1fr 1fr; }
.row-1-3-3 			{	grid-template-columns: 1fr 3fr 3fr; }
.row-1-2-1-1-1 		{	grid-template-columns: 1fr 2fr 1fr 1fr 1fr; }
.row-02-1-3-1 		{	grid-template-columns: 0.2fr 1fr 3fr 1fr; }

.row-minmax 		{ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  }

.row-center { align-items: center; } /* vertical align */

.align-items-start { align-items: start; vertical-align: top; }
.align-items-end { align-items: end; vertical-align: bottom; }
.align-items-center { align-items: center; vertical-align: middle; }

.width-100 {
	width: 100%;
}

.line_under {border-bottom: 1px solid black; margin:20px 0px 20px 0px; height: 1px; }


@media only screen and (max-width: 576px) {	
	.row-sm 
		{
		display: block;
		width: 100%;
		}
	.row-sm > * 
		{
		margin-top: 10px;
		margin-bottom: 10px;
		}	
	}

@media only screen and (max-width: 768px) {	
	.row-md 
		{
		display: block;
		width: 100%;
		}
	.row-md > * 
		{
		margin-top: 10px;
		margin-bottom: 10px;
		}	
	}
	
@media only screen and (max-width: 992px) {	
	.row-lg 
	
		{
		display: block;
		width: 100%;
		}
	.row-lg > * 
		{
		margin-top: 10px;
		margin-bottom: 10px;
		}	
	}

@media only screen and (max-width: 1200px) {	
	.row-xl 
		{
		display: block;
		width: 100%;
		}
	.row-xl > * 
		{
		margin-top: 10px;
		margin-bottom: 10px;
		}	
	}



/* general
--------------------------------------------- */
	

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.hidden {
	display: none;
}

.bg-gray {
	background-color: #F4F4F4;
	background-color: #FEFAF0;
}

h1 {
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	font-size: 300%;
	font-weight:	700;
	padding: 1em 0px;
}

h2 {
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	font-size: 250%;
	font-weight:	700;
	padding: 0.5em 0px;
}

h3 {
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	font-size: 150%;
	font-weight: 700;
	padding: 0.5em 0px;
}

.subtitle {
	font-size: 150%;
	max-width: 36em;
	margin: auto;
}

a {	
	color: #415741;
}

a:hover img {
	opacity: 0.9;
}

.divider , hr {
	display: block;
	width: 60px;
	border-bottom: 6px solid #2D383E;
	margin: 20px 0px 20px 0px;
}

.dark { color: white; text-shadow: 1px 1px 1px rgba(0,0,0, 0.5); background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2)); } 

.bggrey {
	background-color: #FFF9CE
}

.gold { color: #415741; }

.img-round {    border-radius: 50%;     max-width: 100px;     display: block;     margin: 10px auto 10px auto; }

.prod_nome {
	min-height: 5.3em;
	padding-bottom: 1em;
}

.products .row a { text-decoration: none; }
.cart .row a { text-decoration: none; }

a.fuchsia , .fuchsia {	color: #415741; }

.relative {
	position: relative;
	}

.pad10 { padding: 10px;}
.margin-top-50 { margin-top: 50px; margin-bottom: 50px; }


/* 
--------------------------------------------- */

.header {
	background-color: #fff;
	position: fixed;
	width: 100%;
	padding: 10px 0px 0px 0px;
	border-bottom: 1px solid #DADCE0;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

.header-top {
	border-bottom: 1px solid #DADCE0;
	padding-bottom: 5px;
}

.header-top::after {
	display: block;
	clear: both;
	content: "";
}

.logo {
	width: 100px;
	max-width: 50%;
	display: block;
	padding: 0px 0px 0px 0px;
	margin-right: 20px; 
	float: left;
	display: inline-block;
}

/* menu
--------------------------------------------- */

#menu {
	text-align: center;
}

#menu li , #menu-contact li {
	list-style: none;
	display: inline-block;
	padding: 0px 0px;
	position: relative;
}	

#menu a:hover , #menu-contact a:hover , .menu-2 a:hover {
/*	color: #516C44; */
}

.menu-2 {
	display: block;
	float: right;
	font-weight: 500;
}

.menu-2 li {
	list-style: none;
	display: inline-block;
}

.menu-2 a , #menu a {
	text-decoration: none;
	/* color: #415741; */
	padding: 0.7em;
	margin: 4px;
	display: inline-block;
}

#menu a {
	/* color: inherit; */
	font-weight: 500;
}

#menu a:hover {
	/* color: #888888; */
}


.button , .button-simil {
	border-radius: 3px;
	border: 1px solid #415741;
	font-size: inherit;
	padding: 0.7em;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
}

.button-simil {
	cursor: inherit;
	border-color: #202427; 
}

a.button , .button a {
	text-decoration: none;
	color: #415741;
	font-weight: 700;
}

.button-full , #menu a.button-full ,  .menu-2 a.button-full {
	background-color: #415741;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #FFF !important;
}

a.button-full:hover , .button-full:hover {
	background-color: #516C44;
}


.mobile-only {
	display: none !important;
}

.full-width {
	width: 100%;
}



#menu ul {
	display: none;
}

#menu li:hover ul {
	display:	block;
	position: absolute;
	width: 350px;
	z-index: 5;
	/* background-color: rgba(255,255,255,0.95); */
	background-color: #FFF;
	padding: 1em;
	left: 0px;
	border-bottom: 1px solid #DADCE0;
	border-left: 1px solid #DADCE0;
	border-right: 1px solid #DADCE0;
}

#menu li:hover ul li {
	display: block;
	text-align: left;
	padding: 0px;
}

#menu li ul li a {
	padding: 0.2em;
	display: block;
}



#menu li ul li a:hover , #menu_top_prodotti:hover ul li a:hover {	
	text-decoration:	underline;
}



.color-1 , a.color-1 { color: #D4006F; }
.color-2 , a.color-2 { color: #789904; }
.color-3 , a.color-3 { color: #00BBB4; }
.color-4 , a.color-4 { color: #3D7CC9; }
.color-5 , a.color-5 { color: #F5A800; }
.color-6 , a.color-6 { color: #D47E00; }
.color-7 , a.color-7 { color: #FFB4AB; }
.color-8 , a.color-8 { color: #B4BD00; }
.color-9 , a.color-9 { color: #9F9B9B; }

.button-grey {
	background-color: #ACACAC;
	border: 0px;
}

a.button-grey:hover {
	background-color: #ACACAC;
}


/*	================================================================ */

.main {
	padding-top: 142px;
}

p {
	padding: 0.5em 0px;
}

.main ul li {
	margin-left: 14px;
	padding: 0.5em 0px;
}

table {
	width: 100%;
	 border-collapse: collapse;
}

.table-tecnica tr td {
	border-bottom: 1px solid black;
	padding: 0.5em;
}

tr:nth-child(even) {background: #F4F4F4}
tr:nth-child(odd) {background: #FFF}

.table-tecnica div {padding: 0.3em; }
.table-tecnica div:nth-child(4n-1) { background-color: #F4F4F4; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC; }
.table-tecnica div:nth-child(4n)   { background-color: #F4F4F4; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC; }
.table-tecnica div:nth-child(2n)   { text-align: center;  }




.ristorante .table-tecnica div { padding: 20px; }

.nounder {
	text-decoration: none;
}


.b {
	font-weight: bold;
}

.vedi_carrello {
	border-radius: 3px;
	border: 1px solid #BDD101;
	background-color: #C6EB00;
	font-size: inherit;
	padding: 0.7em;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	margin-top: 10px;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
	padding-top: 23px;
	background-image: url(added_to_cart.svg);
	background-repeat: no-repeat;
	background-position: center top;
	position: absolute;
	left: 0px;
	top: 50px;
	z-index: 10;
	
}




/*	================================================================ */

	#big_header { 
		position: relative;
	/*	min-height: 60vh; */
	}

	#big_header_bg {
		background-position: center top;
		background-attachment:	fixed;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		z-index: -1;
		display: block;
		/*
		opacity: 0.2;
		filter: grayscale(100%);
		*/
	}
	

/*	================================================================ */

.footer_contatti_box , .footer_contatti_box_light {
	text-align: center;
	background-color: #FFBF00;
	background-color: #415741;
	padding: 30px 0px;
}

.footer_contatti_box_light {
	background-color: #FFF9CE;
	background-color: #EAC438;
	background-color: #DDA604;
}

.footer_contatti {
	background-color: #FFF;
	padding: 30px 30px;
	margin: 30px auto;
}


/*	================================================================ */

.subfooter {
	padding: 30px 0px 40px 0px;
	background-color: #1A1A1A;
	color: white;
	border-top: 2px solid black;
}

.subfooter a {
	color: #FFF;
}

.subfooter a:hover {
	text-decoration: none;
}

.subfooter li {
	list-style: square;
	padding: 0.5em 0px;
	margin-left: 14px;
}

.credits {
	opacity: 0.75;
}

/*	================================================================ */

#menu_swapper {
		display: none;
		float: right;
		margin-right: 20px;
		cursor: pointer;
		margin-top: 8px;
		padding: 5px 10px;
	}

#menu_swapper img {
	margin-right: 10px;
}

#menu_swapper:hover {
	background-color: #F1F3F4;
}

.mini-icon {
	height: 10px;
	margin-right: 10px; 
}

.mini-icon-2 {
	height: 16px;
	margin-right: 4px; 
	margin-bottom: -3px;
}

#prenota_fast { float: right; display: none; text-align: center; margin-right: 10px; }


/* ============================================================= */

label {
	margin: 2em 0px 0.5em;
	display: block;
	text-align: left;
	font-weight: bold;
}

.checkout label {
	margin-top: 0px;	
}


input, textarea, select {
	margin: 0px auto;
	padding: 0px;
	background-color: White;
	outline: none;
	border: 1px solid #FFBF00;
	border: 1px solid grey;
	font-family: 	inherit;
	font-size: 100%;
	padding: 1em;
	line-height: 1.5em;
	border-radius: 3px;
	display: block;
	width: 100%;
	transition: all 0.2s ease;
	}

input[type='checkbox'] , input[type='radio'] 
	{
		display: inline;
		width: auto;
	}

.inline {
	display: inline !important;
}	


input[type='reset'] 
	{
		display: inline;
	}
	
textarea {
	height: 11.3em;
}


input , textarea , .button
	{
	box-shadow: 0 0 0 3px #F4F4F4;
/*	color: black; */
	}
	
input:hover , textarea:hover , .button:hover
	{
	box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.2);
	}

.alert {
	border-radius: 0.25rem;
	padding: 1em;
	margin: 0.5em 0;
}

.alert-success {
	color: #155724;
	background-color: #D4EDDA /* #CCFFCC */ /* #D4EDDA */;
	border: 1px solid #c3e6cb;
	border: 1px solid #9AC0A3;
}

.button-hair {
	box-shadow: none;
}

	
/* video
============================================================= */


.iframe-560-315 {
	position: relative;
	width: 100%;
	height: 0px;
	/* padding-bottom: 57%; */
	padding-top: 56.25%;
}

.iframe-video-youtube {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}			

/* ============================================================= */

#lightbox_viewer_box > * , #lightbox_img_box > * {
	box-sizing: border-box;
}

#lightbox_viewer_closer_2 {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	text-align: center;
	z-index: 20;
	background-color: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
  	align-items: center;
}
			
#lightbox_viewer_closer {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	text-align: center;
	z-index: 21;
	
  }

#lightbox_img_box {
	animation-iteration-count:1;
	animation:slightbox 0.1s;
}			

@keyframes slightbox
{
	 0%   {
		opacity: 0.1;
	 } 
	 
	 50%   {
		opacity: 100.0;
	 } 
	 
}

			
#lightbox_img_box {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
	top: 0%;
	left: 0;  
	right: 0;  
	margin: auto;	
	/*
	animation:slightbox 0.7s;
	animation-iteration-count:1;
	*/
	position: relative;

}	

#lightbox_img_box img {		
	max-width: 100%;
	max-height: 85vh;
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 24;
	border: 1px solid rgba(255, 255, 255, 0.50);
	animation:slightbox 0.7s;
	animation-iteration-count:1;
	background-color: white;
	vertical-align: top;
}
	
	
#lightbox_viewer_closer img:hover {
	opacity: 1;
}	

	
a#lightbox_viewer_prev , a#lightbox_viewer_next {
	display: block;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 45%;
	z-index: 26;
	transition: all 0.2s ease;
	/* background-color: rgba(0,0,0,0.3); */
	text-decoration: none;
	color: #fff;
	font-size: 60px;
	/*	padding-top: calc(25% - 20px); */
	opacity: 0.5;
	outline: 0;
}

a#lightbox_viewer_prev svg , a#lightbox_viewer_next svg {
	position: absolute;
  	top: 50%;
	transform: translateY(-50%);
}

a#lightbox_viewer_next svg {
  	right: 20px;
}

	
a#lightbox_viewer_prev {
	text-align: left;
	padding-left: 20px;
}

a#lightbox_viewer_next {
	text-align: right;
	padding-right: 20px;
}		
		
a#lightbox_viewer_next {
	left: auto;
	right: 0px;
}

a:hover#lightbox_viewer_prev {
	/* background-color: rgba(0, 0, 0, 0.1); */
	/* background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0)); */
	opacity: 0.8;
}	

a:hover#lightbox_viewer_next {
	/* background-color: rgba(0, 0, 0, 0.1); */
	/* background-image: linear-gradient(to right, rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.5)); */
	opacity: 0.8;
}
	
#lightbox_viewer_closer_top {
	display: block;
	background-color: rgba(0, 0, 0, 0.85);
	position: absolute;
	z-index: 28;
	top: -10px;
	right: -10px;
	font-size: 12px;
	text-decoration: none;
	padding: 7px 12px;
	color: #fff;
	border-radius: 50%;
}


#lightbox_label {
	position: absolute;
	z-index: 28;
	top: 100%;
	left: 0%;
	width: 100%;
	font-size: 12px;
	text-decoration: none;
	padding: 7px 12px;
	color: #fff;
}



/* ============================================================= */

/*	
@media only screen and (max-width: 479px) {
*/

@media only screen and (max-width: 800px) {

	h1 {
	font-size: 200%;
	}
	h2 {
    font-size: 180%;
	 }	
	subtitle {
	    font-size: 120%;
	}	


	.main {
		padding-top: 60px;
	}

	.menu-2 {
		display: none;
	}

	#menu_swapper {
		display: block;
	}
	
	.box_nav #menu {
		display: none;
	}
	
	.box_nav_show #menu {
		display:	block;
		max-height: 80vh;
		overflow: auto;
		clear: both;
		padding-top: 0em;
		padding-bottom: 2em;
	}
	
	#menu li:hover ul {
		display:	none;
	}
	
	#menu li:hover ul li {
		display:	none;
	}
	
	#menu li {
		display: block;
		text-align: center;
	}
	
	#menu li a {
		display: block;
		padding: 0.35em;
	}
	
	.mobile-only { display: block !important; }
	
	.desktop-only {	display: none ; }
	
	.logo {
		max-width: 30%;
		}	

	#prenota_fast {  display: block; }

	}
	

	
	
	
.animation_fadein
{
  -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}	