/*! jQuery-Impromptu - v6.2.2 - 2015-11-14
* http://trentrichardson.com/Impromptu
* Copyright (c) 2015 Trent Richardson; Licensed MIT */
:root {
	--verde: #9eb031;
}
.jqifade{
	position: absolute; 
	background-color: #777777; 
}
iframe.jqifade{
	display:block;
	z-index:-1;
}
div.jqi{ 
	/* width: 800px;  */
	min-width: 600px; 
	min-width: 40%;
	max-width: 90%;
	font-family: 'Inter', sans-serif; 
	position: absolute; 
	background-color: #ffffff; 
	font-size: 11px; 
	text-align: left; 
	border: solid 1px #eeeeee;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	padding: 7px;
}
div.jqi .jqiclose{ 
	position: absolute;
	top: .5em; right: .5em; 
	width: 20px; 
	cursor: default; 
	color: #000;
	font-size:2em;
	cursor:pointer;
}
div.jqi .jqistate{
	background-color: #fff;
}
div.jqi .jqititle{
	padding: 5px 10px;
	font-size: 16px; 
	line-height: 20px; 
	border-bottom: solid 1px #eeeeee;
}
div.jqi .jqimessage{ 
	padding: 10px; 
	line-height: 1.5em; 
	color: #000; 
	overflow: auto;
	font-size: clamp(1em, 5vw, 1.3em);
}
div.jqi .jqibuttonshide{
	display: none;
} 
div.jqi .jqibuttons{ 
	text-align: center; 
	margin: 0 -7px -7px -7px;
	/* border-top: solid 1px #e4e4e4;  */
	/* background-color: #f4f4f4; */
	border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqibuttons button{ 
	margin: 0 0 0.5em 0;
	padding: .5em 1em;
	background-color: #fff;
	border: 2px solid var(--verde);
	border-radius:.5em;
	font-weight: normal; 
	/* border: none; */
	/* border-left: solid 1px #e4e4e4;  */
	/* color: var(--verde); */
	font-weight: bold; 
	font-size: 1.25em; 
	text-transform:uppercase;
	outline:none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
div.jqi .jqibuttons button.jqidefaultbutton{
	color: var(--verde);
}
div.jqi .jqibuttons button:hover {
	color: #fff;
	background-color: var(--verde);
	outline: none;
	cursor:pointer;
}
div.jqi .jqibuttons button[disabled]{
	color: #aaa;
}
.jqiwarning .jqi .jqibuttons{ 
	background-color: #b95656;
}

/* sub states */
div.jqi .jqiparentstate::after{ 
	background-color: #777;
	opacity: 0.6;
	filter: alpha(opacity=60);
	content: '';
	position: absolute;
	top:0;left:0;bottom:0;right:0;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
div.jqi .jqisubstate{
	position: absolute;
	top:0;
	left: 20%;
	width: 60%;
	padding: 7px;
	border: solid 1px #eeeeee;
	border-top: none;
	border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqisubstate .jqibuttons button{
	padding: 10px 18px;
}

/* arrows for tooltips/tours */
.jqi .jqiarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}

.jqi .jqiarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
.jqi .jqiarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }

.jqi .jqiarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
.jqi .jqiarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }

.jqi .jqiarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
.jqi .jqiarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }

.jqi .jqiarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
.jqi .jqiarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }

.popup_prenotazioni {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top:1em;
	width:100%;
}
.popup_prenotazione {
	box-sizing: border-box;
	flex:0 100%;
	border-radius: 1em;
	background-color: var(--verde);
	padding:1em 1.5em;
	margin-bottom:1em;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
@container (min-width: 600px) {
	.popup_prenotazione {
		flex:0 48%;
	}
  }
.popup_prenotazione ul {
	padding-left: 1em;
	list-style-type: square;
}
.popup_prenotazione ul li {
	padding: .25em;
	border-bottom: 1px solid #555;
}

/* Desktop version
@media (min-width: 800px) {
.popup_prenotazione {
	flex:0 48%;
}
} */
