/*Code pour popup d'information suplémentaire des enseignants. */
.popup_informations {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    z-index: 1;
}


.clignote {
    font-size:20px;
    color:green;
    animation: clignote 1s linear infinite;
  }
  @keyframes clignote {  
    50% { opacity: 0; }
  }
