/*
Custom Css
*/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 11;
    animation: action 1s infinite alternate;
  }
  .img
  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }


.sortir
{
    background-color:white ;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-decoration: none;
    color: black;
    text-align: center;
    padding-top: 5px;
    border-radius: 5px;
}
#lightbox
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    display: none;

}
#lightbox.active
{
    display: flex;
}
#lightbox img
{
    width: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 50px auto;
}
.flex-center
{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-whitesmoke
{
    color: navy;
}
.fdc
{
    display: flex;
    flex-direction: column;
}
.infos
{
    border: 1px solid rgb(24, 24, 228);
    /* border: 1px solid rgb(31, 31, 189); */
    border-radius: 7px;
    padding: 7px;
    height: fit-content;
    gap: 5px;
}
.infos a
{
    text-decoration: none;
}
.infos h4,h5
{
    margin: 1px 0px;
}
.infos span
{
    margin-bottom: 5px;
    display: inline-block;
}
label span
{
    font-size: 1.2em;
    color: blue;
}
.btn a
{
    text-decoration: none;
}
.retour
{
    background-color: #062c33;
    position: absolute;
    top: 75px;
    left: 7px;
    padding: 0px 5px;
    border-radius: 5px;
    width: fit-content;
}
.img-container
{
    overflow-x: auto;
}
@media screen and  (min-width:280px) and (max-width:750px)
{
    #lightbox img
        {
            width: 90%;
            display: block;
            object-fit: cover;
            object-position: center;
            margin: 50px auto;
        }
}