

/*Personnalisation liste déroulante personnalisé absence*/
#listeAbsence{
	position:absolute;
	background-color:white;
	z-index:3;
	width:520px;
}

.divSelection{
  display:flex;
  position:relative;
  border:1px solid #dcdcdc; 
  border-radius:5px; 
  padding:5px;
  cursor : pointer;
}

.divAbsence{
  display:flex;
  position:relative;
  padding:5px;
  cursor : pointer;
}

.divAbsence:hover{
  border-left : 3px solid var(--charte_violet);
  background-color: #005c9f25;
}
/* Personnalisation de l'en-tête du calendrier */
.ui-widget-header {
  background: white !important;
  border: none;
  color: #ffffff;
}
.ui-datepicker-month{
  text-transform : capitalize; 
}
.ui-datepicker-calendar{
  background: white !important;
}
/* Personnalisation des jours de la semaine */
.ui-datepicker-week-end {
  color: #ff0000;
}

.ui-datepicker-calendar>tbody>tr {
  background-color: white !important;
}
.ui-datepicker-calendar>thead>tr {
  background-color: white !important;
}
.ui-state-default {
  background: white !important;
}

.ui-datepicker-today>a{
  border: 1px solid var(--charte_violet) !important;
}

.ui-datepicker-current-day > a{
  background: var(--charte_violet) !important;
  color:white !important;
}
.highlighted-date{
  background: var(--charte_violet) !important;
  color:white !important;
}

.ui-datepicker-days-cell-over>a{
  background: var(--charte_violet) !important;
  color:white !important;
}

.selectJournee{
  width: 35%;
  margin: -5px;
  background: var(--charte_violet);
  border-radius: 5px;
  padding-top:5px;
  color: white;
  text-align: center;
 /* font-weight: bold; */
  height:30px;
}
.unselectJournee{
  width: 35%;
  margin: -5px;
  border-radius: 5px;
  padding-top:5px;
  color: var(--charte_violet);
  text-align: center;
 /* font-weight: bold; */
  height:30px;
}

.inputDate{
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  --scrollbar-width: 17px;
  --scrollbar-height: 17px;
  pointer-events: all;
  box-sizing: border-box;
  outline: none !important;
  font: inherit;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-top: 0;
  width: 40%;
  border: none;
  padding: 3px 8px;
  border-radius: 5px;
  background: #f2f4f7;
  cursor : pointer;
  transition : 0.5s;
}

.inputDate::placeholder{
  color : #999;
}


.inputDate:hover, .inputDate:focus{
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  --scrollbar-width: 17px;
  --scrollbar-height: 17px;
  pointer-events: all;
  box-sizing: border-box;
  outline: none !important;
  font: inherit;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-top: 0;
  width: 40%;
  border: none;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--charte_violet);
  color: #fff;
  transition : 0.5s;
}

.inputDate:hover::placeholder, .inputDate:focus::placeholder{
  color : white; 
}

.calendar {
 
	display:flex;
	FLEX-WRAP:wrap;
	ALIGN-ITEMS:flex-start;
	ALIGN-CONTENT:flex-start;
	justify-content :center;
	background-color: #fff;
	border: 1px solid #747474;
	border-radius: 5px;
	width: 50px;
	height: 50px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #333;
}

.day {
 /* font-weight: bold; */
	display:flex;
	ALIGN-ITEMS:center;
	ALIGN-CONTENT:center;
	justify-content :center;
	font-size: 17px;
	
	width:100%;

}

.month {
	display:flex;
	ALIGN-ITEMS:center;
	ALIGN-CONTENT:center;
	justify-content :center;
	text-transform: uppercase;
	font-size: 11px;
	border-top: 1px solid #e5e5e5;
}

.year {
  text-align: center;
  font-size: 10px;
 /* font-weight: bold; */
  padding: 3px;
  width: 100%;
}





.screenL{
    border:0px solid red !important;
    width:calc(100% - 500px);
    padding:10px;
}
    
.screenR{
    border:0px solid green !important;
}
.td-status span {
    position: relative;
    border-radius: 4px;
    padding: 4px 10px 4px 10px; 
	height:5px;
  font-weight:600;
  text-transform: uppercase;
	font-family: 'Lato', sans-serif;
}


.td-status .active {
    border:1px solid rgba(19, 223, 97, 0.3);
    background: rgba(24, 197, 89, 0.1);
    color: #18c559; 
  }



.td-status .waiting {
    border : 1px solid rgba(56, 176, 249, 0.3);
    background: rgba(56, 176, 249, 0.1);
    color: #38b0f9; }


.td-status .danger {
    background: rgba(255, 63, 32, 0.1);
    border: 1px solid rgba(255, 63, 32, 0.3);
    color: #ff3f20; 
}

 
/*Style bouton*/
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
      border : none;
    padding: 10px 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
  
  .btn-3 {
      background-color : #eceef7;
    width: 130px;
    height: 40px;
    line-height: 42px;
    padding: 0;
      color : blue;
      border-radius : 5px;
    box-shadow: 0 0px 10px -5px rgb(232 235 242);
  }
  .btn-3 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .btn-3:before,
  .btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .btn-3:before {
    height: 0%;
    width: 2px;
  }
  .btn-3:after {
    width: 0%;
    height: 2px;
  }
  .btn-3:hover{
     background: transparent;
    box-shadow: none;
  }
  .btn-3:hover:before {
    height: 100%;
  }
  .btn-3:hover:after {
    width: 100%;
  }
  .btn-3 span:hover{
     color: rgba(2,126,251,1);
  }
  .btn-3 span:before,
  .btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .btn-3 span:before {
    width: 2px;
    height: 0%;
  }
  .btn-3 span:after {
    width: 0%;
    height: 2px;
  }
  .btn-3 span:hover:before {
    height: 100%;
  }
  .btn-3 span:hover:after {
    width: 100%;
  }

.help{
	display:none !important;
}
.helpdesk-button {
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 18px;
 /* font-weight: bold; */
  text-align: center;
  color: #fff;
  background-color: var(--charte_violet);
  border-radius: 50px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid var(--charte_violet);
}

.helpdesk-button:hover {
  background-color: white;
  color: var(--charte_violet);
  border: 2px solid var(--charte_violet);
}

.helpdesk-button i {
  margin-right: 10px;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.helpdesk-button:hover i {
  color: var(--charte_violet);
}




.user-profile {
  width: 200px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f8f8f8;
}

.user-profile i {
  font-size: 24px;
  color: var(--charte_violet);
  margin-right: 10px;
}

.user-profile .user-name {
  font-size: 18px;
 /* font-weight: bold; */
  color: var(--charte_violet);
}

/*Box cookies*/
.wrapper {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  position: fixed;
  right: -400px;
  bottom: 50px;
  max-width: 400px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
  z-index: 5;
  right: 20px;
}
.title-box {
  display: flex;
  align-items: center;
  column-gap: 15px;
  color: #4070f4;
  margin-bottom: 15px;
}
.title-box i {
  font-size: 32px;
}
.title-box h3 {
  font-size: 22px;
  font-weight: 500;
}
.info {
  margin-bottom: 15px;
}
.info p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.info p a {
  color: #4070f4;
  text-decoration: none;
}
.info p a:hover {
  text-decoration: underline;
}
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.button {
  width: calc(100% / 2 - 10px);
  padding: 8px 0;
  border: none;
  border-radius: 4px;
  background-color: #4070f4;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.button:hover {
  background-color: #031bf1;
}
.choisebutton-titreHabilitation{
  display:flex;
  justify-content:space-between;
  margin-bottom: 15px;
}
.button-titreHabilitation{
  width:20%;
  text-align:center;
  border: 2px solid #08d;
  border-radius:5px;
  font-size: 15px;
  margin-right: 15px;
 /* font-weight: bold; */
  cursor: pointer;
}
.choisebutton-titreHabilitation> .button-titreHabilitation:nth-last-child(1){
  margin-right: 0px;
}

.choisebutton-titreHabilitation > .select{
  background-color: #08d;
    color:white;
}
.sectionBarreLateral{
  cursor:pointer;
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
#calendar {
  overflow: hidden;
  width: 400px;
  margin: 0 auto;
}
.event-tooltip {
  top:10px;
  left: 300px;
  position: absolute;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}
/* styles.css */
#calendar {
  max-width: 1000px;
  margin: 0 auto;
}

/* Ajuster la taille des cellules du calendrier */
.fc-daygrid-day-frame {
  width: 25px;
  height: 25px;
  font-size: 12px;
}
.fc-daygrid-event{
  margin: 0 !important;
  margin-top: -7px !important;
  width: 200% !important;
}
.fc-sticky{
  font-size: 9px;
}
.fc-daygrid-day-number{
  font-size: 12px;
}
.fc-scroller{
  overflow: hidden !important;
}
.fc-scrollgrid{
  border-collapse : collapse !important;
  border-right-width : 0 !important;
}
.contenu, .menu{
  /* user-select: none; */
}

.blocEp{
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.blocEpTheme{
  cursor: pointer;
  width: 100%;
  color:var(--charte_violet);
  border-bottom: 2px solid #a6d0e0;
}
.blocEpTheme i{
  margin-right: 5px;
  margin-left: 15px;
  font-size: 20px;
}
.blocEpTheme span{
  font-size: 17px;
}
.blocEpTheme i ,.blocEpTheme span{
  margin-bottom: 10px;
  margin-top: 10px;
}


