/*/ Polylog SA (c) 2023 /*/

/*/ Diagramme de Gantt /*/

.fwk-gantt { 
	margin: 30px;
	border-radius: var(--round1);
	padding: 0;
	overflow: hidden;
	position: relative;
	background: var(--gray1);
	}

/*/ Tableau /*/

.fwk-gantt td { 
	border-bottom: 5px solid var(--white); 
	height: 50px;
	max-width: 200px;
	padding: 15px;
	font-size: inherit; 
	line-height: 20px;
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis;
	}

.fwk-gantt td.gantt-cell-shadowed {
	background: var(--gray2);
	}

.fwk-gantt td.fwk-gantt-cell-header { 
	font-weight: 600;
	background: var(--mid1);
	color: var(--white); 
	}
	
.fwk-gantt td.fwk-gantt-cell-title { 
	border-right: 5px solid var(--white); 
	font-weight: 600;
	}

.fwk-gantt td.fwk-gantt-cell-none { 
	border-color: transparent;
	border-right: 5px solid var(--white); 
	}
			
.fwk-gantt td.fwk-gantt-cell-day { 
	width: 50px !important;
	min-width: 50px !important;
	max-width: 50px !important;
	height: 50px !important;
	min-height: 50px !important;
	max-height: 50px !important;
	text-align: center;
	}
	
.fwk-gantt td.fwk-gantt-cell-task { 
	padding: 0;
	width: 50px !important;
	min-width: 50px !important;
	max-width: 50px !important;
	height: 50px !important;
	min-height: 50px !important;
	max-height: 50px !important;
	vertical-align: top;
	text-align: center;
	}
	
.fwk-gantt td.fwk-gantt-cell-task:hover { 
	cursor: pointer;
	}
	
/*/ Tâche /*/

.fwk-gantt .fwk-task { 
	z-index: 10;
	position: absolute;
	display: block;
	width: 50px; 
	height: 50px;
	margin: auto;
	border-radius: var(--round1);
	}
	
/*/ Titre de la tâche /*/

.fwk-gantt .fwk-task-label { 
	z-index: 50;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 20px;
	margin: auto 20px;
	text-align: center;
	font-size: 10px;
	line-height: 20px;
	font-weight: 600;
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis;
	}
	
/*/ Barre de progression sur la tâche /*/

.fwk-gantt .fwk-task-progress { 
	z-index: 30;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	background: var(--dark1);
	opacity: 0.2;
	border-radius: var(--round1);
	}
	
/*/ Redimensionner la tâche /*/

.fwk-gantt .fwk-task-resize { 
	z-index: 40;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 5px;
	height: 15px;
	width: 5px;
	font-size: 6px;
	text-align: center;
	line-height: 10px;
	background: var(--white);
	border-radius: var(--round1);
	}
	
.fwk-gantt .fwk-task-resize.task-resize-right { 
	left: auto;
	right: 0;
	}

