/*
 * Image Gallery Horizontal scroll (bas de page)
 */
 /*
div.images_horizontal_scroll {
	background-color: #fff;
    overflow: auto;
    white-space: nowrap;
    padding: 0px;
    display: flex;
}
div.images_horizontal_scroll img {
    padding: 0.5em 0.25em 0.5em 0.25em;
    vertical-align: middle;
    background: #1d242a;
    margin: 0px;
}
*/
/* Images Gallery AUTO Horizontal scroll */
.images_horizontal_auto_scroll {
    overflow: hidden;
    white-space: nowrap;
    padding: 0px;
    display: flex;
	height: 10em;

    .images_horizontal_auto_scroll_track {
        display: flex;
        animation: scroll 20s 0.5s linear infinite;
    }
}

.images_horizontal_auto_scroll:before, .images_horizontal_auto_scroll:after {
/*	content: "";
	position: absolute;*/
/*	height: 130px;
	width: 150px; */
	z-index: 2;
}

.images_horizontal_auto_scroll:after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.images_horizontal_auto_scroll:before {
	left: 0;
	top: 0;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-150px * 5));
	}
}

.image_carroussel {
	width:auto; 
	height:160px;
}


/*
    body {
      background-color: #111;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }
*/
.film-container {
    background-color: #000;
    padding: 20px;
    border: 6px solid #000;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    display: inline-block;
    position: relative;
}

.film-strip {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.film-strip.bottom {
    margin-top: 10px;
    margin-bottom: 0;
}

.hole {
    width: 10px;
    height: 15px;
    background-color: #ccc;
    border-radius: 2px;
}

.photo-wrapper {
    background-color: black;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-wrapper img {
    max-width: 300px;
    height: auto;
    border: 3px solid black;
}
