/* 20231124 CSS EVT Lightbox */
.clicable{
    cursor: pointer;
}
#lightBox{
    width: 100%;
    height: 100vh;
    background-color: #323232;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
}
#lightBox h3{
    text-align: center;
}
.lightBoxContent{
    height: inherit;
}

.hide{
    display: none;
}

.imgFullScreen{
    display: block;
    margin: auto;
    max-width: 90%;
    height: inherit;
    object-fit: contain;
}
.closeCursor{
    position: absolute;
    top: 0px;
    right: 3px;
    font-size: 2em;
    color: white;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Affichage du titre et de la description */
.titreLightbox{
    height: 20px;
    background-color: black;
    color: #ADADAD;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 1em;
    opacity: 50%;
}
.descriptionLightbox{
    display: table-cell;
    width: 100%;
    height: 20px;
    background-color: black;
    vertical-align:sub;
    color: #ADADAD;
    text-align: center;
    position: absolute;
    bottom: 10px;
    padding: 1em;
    opacity: 50%;
}