/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 08 2024 | 16:21:20 */
.green {
  color: #32CD32;
  text-align: center;
  font-size: 18px;
}


.blue {
  color: #87CEEB;
  text-align: center;
  font-size: 12px;
}




/* pour le header fixe */
/* ancienne couleur #CEECF5 et ancien style left:0px pour avoir sur toute la ligne 
 #f1c40f  #3498db pour le tableau D6EEEE
 background-color: #6495ED; 
 */
#haut {
	border: 2px solid black; 
	padding: 5px;
	position:fixed;
	background-color: #FFFFFF;
        top: 10px; /* vaut mieux fixer les valeurs par défaut pour ne pas avoir de mauvaises surprises */
        text-align: right;
        right:10px
}




 /* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 250px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  
  -webkit-animation: fadeIn 120s;
  animation: fadeIn 120s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {

  from {visibility: visible;
  opacity: 1;}
  to {opacity: 0;}
  
}

@keyframes fadeIn {
  from {visibility: visible;
  opacity: 1;}
  to {opacity:0 ;}
} 


/* pour une plus jolie checkbox */
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 6px;
  left: 1px;
  height: 15px;
  width: 15px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color 
.container:hover input ~ .checkmark {
  background-color: #ccc;
}*/

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}