/* Tooltip container */
.tooltip2 {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip2 .tooltiptext {
  visibility: hidden; 
  background-color: #46BBFF;
  color: white;
  text-align: center;
  padding-left: 5px 20px 5px 20px;
  border-radius: 6px;
  font-size:16px;
  font-weight:bold;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip2 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/*pour l'input file de la page planning*/
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn_upl{
  border: 2px solid white;
  color: white;
  background-color: rgb(91,192,222);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.datatables_filter_planning_repositionning{
    position: fixed;
	top:80px;
	left:70%;
	z-index:104;
}



.bandeau_page{
	border-radius:7px;
	display:inline;
	padding-left:10px;
	padding-right:200px;
	color:white;
	position:relative;
	top:15px;	
	background:linear-gradient(90deg, rgba(203,68,125,1) 44%, rgba(255,255,255,1) 100%);
}
.section-form{
	border:solid 1px grey;
	border-radius:15px;
	padding:15px
}
.section-form-titre{
	margin-top:-30px;
	margin-left:10px;
	background-color:white;
	padding-left:10px;
	text-wrap: no-wrap;
}
.form-group label{
	color:#006EB9;
	font-weight:500;
}
.form-group b{
	color:#006EB9;
	font-weight:500;
}
.form-group input, .form-group mail, .form-group number, .form-group select{
	color:rgb(100,100,100);
	background-color: rgb(245,245,245);
}
.form-group input:hover, .form-group input:focus, .form-group  select:hover, .form-group  select:focus{
	-webkit-box-shadow: 0px 0px 11px 3px rgba(250,204,93,0.63);
	-moz-box-shadow: 0px 0px 11px 3px rgba(250,204,93,0.63);
	box-shadow: 0px 0px 11px 3px rgba(250,204,93,0.63);
	border:solid 1px rgb(180,180,180);
	background-color: rgb(230,230,230);
	border:none;
}
.borderr{
	border:solid 1px red;
}
.borderb{
	border:solid 1px black;
}
.borderg{
	border:solid 1px grey;
}
.bgr{
	background-color: #828282;
}
.h100{
	height: 100%;
}
.bleuisy{
	color:#273456;
}
.button_plus{
	color:#FED057;
	border:none;
	outline: none;
	width:60px;
	height:60px;
	border-radius:30px;
	background-color:#828282;
	font-size:50px;
}
.button_plus:focus{
	outline: none;
}
.custom-file-label,
.custom-file-label::after {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  color: black;
}

.swal-overlay {
  background-color: rgba(130,130,130, 0.7);
}
.swal-button--del, .swal-button--del:hover{
	background-color: rgba(255,0,0, 0.6);
}

.display_liste th{
	color: white;
	background-color: #828282;
	font-size: 13px;
	border: solid 1px black;
	padding-left: 3px;
	padding-right: 3px;
}
.display_liste td{
	color: black;
	background-color: white;
	font-size: 13px;
	border: solid 1px black;
}
.option_bleu{
	color:#4D93D4;
}
.option_rose{
	color:#F58A8A;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10005; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
