/* CSS galeries intégrées */
.embed_galerie {
    margin:20px auto;
    
    background-image:url('gallery.svg');
    background-position:center;
    background-repeat:no-repeat;
    background-size:50px;    
    background-color:#fafafa;
    
    width:800px;
}

.gallery  .embed_galerie {
    width:100%;
}

.galerie_main img {
    object-fit: cover;
    object-position: center center;
    margin: auto;
    width: 100%;
    height: -webkit-fill-available;

}
.galerie_thumbnails img {
    object-fit: cover;
    object-position: center;
    width: -webkit-fill-available;
    height: -webkit-fill-available;

}
    

.galerie_thumbnails {
    padding: 10px 0 0 0;
    background-color:#fff;
}
.galerie_thumbnail_video {
    position: relative;
}
.galerie_thumbnail_video::before {
    content: '';
    position:absolute;
    background-image:url('video.svg');
    background-position:center;
    background-size:cover;
    width:24px;
    height:24px;
    top:1px;
    left:3px;
}
@media (max-width: 900px) {
    .embed_galerie {
        max-width:96%;
    }
    .galerie_thumbnail_video::before {
      width:80%;
      height:80%;
      top:10%;
      left:10%;  
      opacity:0.5;  
    }
}

/*
.embed_galerie .splide__slide {
  background-position: top center !important;
}
*/