
.wrapperGannt {
	/* max-width: 14200px; */
	width: calc((100vw * var(--NumeroBullettAnni)) + 80px);
	min-width: 700px;
	height: 30vh;
	margin: 0 auto;
	padding: 40px;
	position: absolute;
	left: 0px;
	top: 30%;
	z-index: 1000;
}

.gantt {
	display: grid;
	border: 0;
	border-radius: 0px;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	/* box-shadow: 0 75px 125px -57px #000000; */
	/* background-color: white; */
}


.gantt__ogniriga {
	display: grid;
	/* grid-template-columns: 150px 1fr; */
	grid-template-columns:  1fr;
	/* ! DEFAULT COLOR TUTTE LE RIGHE*/
	border: var(--bordiGantt) solid white;
}

.gantt__ogniriga.anno {
	/* ! RIGA INTESTAZIONE */
	color: #fff;
	/* background-color: rgb(207, 96, 207) !important; */
	border: var(--bordiGantt) solid blue;                  /* ! BORDO SOTTO RIGA INTESTAZIONE */
	grid-template-columns: repeat(var(--anni), 1fr);            /* ! NUMERO DI COLONNE della RIGA INTESTAZIONE */
}

.gantt__ogniriga.mese {                                          /* ! RIGA INTESTAZIONE */
	color: #fff;
	/* background-color: purple !important; */
	border: var(--bordiGantt) solid red;                        /* ! BORDO SOTTO RIGA INTESTAZIONE */
	grid-template-columns: repeat(var(--numeroMesi), 1fr);           /* ! NUMERO DI COLONNE della RIGA MESI */
}

/* .gantt__ogniriga.mese .first__cell { */
	/* ! PRIMA CELLA RIGA INTESTAZIONE */
	/* border-top: 0 !important; */
	/* background-color: pink !important; */
/* } */

.gantt__ogniriga.anno div
	{
	text-align: left;
	font-size: 16pt;
	align-self: center;
	font-weight: bold;
	padding: 10px 0;
	padding-left: 10px;
}

.gantt__ogniriga.anno span
	{
	text-align: center;
	font-size: 10px;
	align-self: center;
	font-weight: bold;
	padding-top: 8px; 
	margin-left: 6px;
	margin-right: 6px;
}

.gantt__ogniriga.mese span {
	text-align: center;
	font-size: 10pt;
	/* height: 20px; */
	/* padding-left: 6px; */
	margin-top: 30px;
}


.gantt__ogniriga.lineeVertMesi {                            	/* ! Righe Verticali tra le cell */
	/* ! RIGHE SCHELETRO */
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: transparent;
	grid-template-columns: repeat(var(--numeroMesi), 1fr);      	/* ! Numero di colonne */
}
.gantt__ogniriga.lineeVertMesi span {                            /* ! Righe Verticali tra le cell */
	display: block;
	border-right: 1px dashed rgba(152, 93, 247, 0.367);
	margin-bottom: 45px;
	margin-top: 5px;
}

.gantt__ogniriga.lineeVertMesi span.ultimoMese {                 /* ! Righe Verticali tra le cell */
	display: block;
	border-right: 0px solid rgba(152, 93, 247, 0);
	margin-bottom: 45px;
}

.gantt__ogniriga.lineeVertAnni {                            	/* ! Righe Verticali tra le cell */
	/* ! RIGHE SCHELETRO */
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: transparent;
	grid-template-columns: repeat(var(--anni), 1fr);            	/* ! Numero di colonne */
}

.gantt__ogniriga.lineeVertAnni span {
	display: block;
	border-left: 2px dotted rgba(200, 167, 255, 0.467);    	/* ! Righe Verticali anni */
}

.gantt__ogniriga.lineeVertAnni span:first-of-type
	{
	display: block;
	border-left: 4px solid rgb(255, 255, 255, 1);     	/* ! Righe Verticali Anni prima cella */
}

.gantt__ogniriga.lineeVertAnni span:last-of-type {
	display: block;
	border-right: 4px solid rgba(255, 255, 255, 1);   	/* ! Righe Verticali Anni prima cella */
}




.gantt__ogniriga.lineeVertMesi span.marker {                  /* ! EVIDENZAZIONE COLONNE  */
	background-color: rgba(10, 52, 68, 0.23);
	z-index: 2;
}



.gantt__ogniriga ul {
	border: solid var(--bordiGantt) red;
	padding-top: 10px;                                      /* ! spazio intorno alle barre */
	padding-bottom: 10px;
	padding-left: 0px;
	
}

.gantt__ogniriga .barre {
	list-style: none;
	display: grid;
	/* padding-top: 20px;  */
	/* padding-bottom: 20px; */
	/* padding-left: 0px; */
	/* padding-right: 8px; */
	margin: 0px;
	/* margin-right: 160px; */
	grid-template-columns: repeat(var(--numeroMesi), 1fr);      	/* ! lunghezza riga dell'evento  */
	grid-gap: 10px 0;                                           	/* ! spazio tra righe evento multiple */
	/* border-top: 0px solid black; */
}

.gantt__ogniriga .barre li {
	font-weight: 500;
	text-align: left;
	font-size: 8pt;
	min-height: 15px;
	background-color: gray;                       /*! Colore di default riga evento */
	padding: 5px 22px;
	color: #fff;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	border-radius: 50px;
	margin-right: 10px;
	margin-left: 10px;
	opacity: .4;
}

.gantt__ogniriga .barre li:hover {
	opacity: 1;
}

.gantt__ogniriga .barre li.striscie {
	background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 12px);
}
























/* .gantt__ogniriga .barre li:before,
.gantt__ogniriga .barre li:after {
	content: "";
	height: 100%;
	top: 0;
	z-index: 4;
	position: absolute;
	background-color: rgba(207, 9, 9, 0.3);
}

.gantt__ogniriga .barre li:before {
	left: 0;
}

.gantt__ogniriga .barre li:after {
	right: 0;
} */




/* .gantt__ogniriga.lineeVertMesi:after { */
/* grid-row: 1; */
/* grid-column: 0; */
/* background-color: #a9b31645; */
/* z-index: 2; */
/* height: 100%;  */
/* } */



/* .gantt__ogniriga-first__cell { */
/* background-color: navy; */
/* border-width: 1px 0 0 0; */
/* border-color: rgba(194, 15, 15, 0.1); */
/* border-style: solid; */
/* padding: 15px 0; */
/* font-size: 13px; */
/* font-weight: bold; */
/* text-align: center; */
/* } */


/* .gantt__ogniriga:nth-child(odd) { */
/* background-color: navy; */
/* ! COLOR RIGHE DISPARI*/
/* } */

/* .gantt__ogniriga:nth-child(even) { */
/* background-color: rgba(141, 23, 23, 0.699); */
/* } */


/* .gantt__ogniriga:nth-child(odd) .gantt__ogniriga-first__cell { */
/* ! PRIMA CELLA DELLE RIGHE DISPARI */
/* background-color: yellow; */
/* } */

/* .gantt__ogniriga:nth-child(3) .gantt__ogniriga .barre { */
/* border-top: 0; */
/* } */

/* .gantt__ogniriga:nth-child(3) .gantt__ogniriga-first__cell { */
/* border-top: 0; */
/* } */

/* .gantt__ogniriga.vuota { */
/* ! RIGA VUOTA */
/* background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 12px); */
/* z-index: 1; */
/* } */

/* .gantt__ogniriga--vuota .gantt__ogniriga-first__cell { */
/* border-width: 1px 1px 0 0; */
/* } */