/* Modale */
.modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
    z-index: 6;
}

.modal.show{
    display: initial;
}

.modal-content{
    width: 90%;
    margin: auto;
    max-width: 1200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-content img{
    width: 100%;
}

.close{
    color: white;
    font-size: 2em;
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 15;
}

.galerie img {
    cursor: pointer;
}

.body-overflow-hidden{
    overflow: hidden;
}