/* Galerie photos Instagram
---------------------------------------------------------------------- */
.bloc-instagram { display: block; position: relative; height: 33vw; overflow: hidden; }
.bloc-instagram .btn-prev,
.bloc-instagram .btn-next { position: absolute; top: 50%; z-index: 100; cursor: pointer; }
.bloc-instagram .btn-prev { left: 0; }
.bloc-instagram .btn-next { right: 0; }
.bloc-instagram .btn-prev::before {
	content: '\f053';
	font-family: 'FontAwesome';
	font-weight: bold;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	padding: 20px 10px 20px 30px;
	position: absolute;
	left: -25px;
	top: -26px;
	color: white;
}
.bloc-instagram .btn-next::before {
	content: '\f054';
	font-family: 'FontAwesome';
	font-weight: bold;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	padding: 20px 30px 20px 10px;
	/*margin-left: 50%;*/
	position: absolute;
	left: -23px;
	top: -26px;
	color: white;
}

.bloc-instagram .instagram-slide { position: absolute; display: none; transition: left 0.6s ease-in-out; height: 33vw; }
.bloc-instagram .instagram-slide.active,
.bloc-instagram .instagram-slide.prev-slide,
.bloc-instagram .instagram-slide.next-slide { display: block; width: 100vw; }
.bloc-instagram .instagram-slide.active { left: 0; }
.bloc-instagram .instagram-slide.prev-slide { left: -100vw; }
.bloc-instagram .instagram-slide.next-slide { left: 100vw; }

.bloc-instagram .instagram-slide > ul { display: block; font-size: 0; }
.bloc-instagram .instagram-slide > ul > li { display: inline-block; position: relative; width: 16.5%; overflow: hidden; }
.bloc-instagram .instagram-slide > ul > li::before { content: ''; display: block; margin-top: 100%; }
.bloc-instagram .instagram-slide > ul > li a { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.bloc-instagram .instagram-slide > ul > li .media-overlay {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	font-size: 12px;
}

.bloc-instagram .instagram-slide > ul > li img { width: 100%; transition: all 0.3s ease; }
.bloc-instagram .instagram-slide > ul > li:hover img { transform: scale(1.1); }
.bloc-instagram .instagram-slide > ul > li:hover .media-overlay { display: flex; justify-content: center; align-items: center; }

.bloc-instagram .like-counter{ display: block; padding-left: 28px; position: relative; line-height: 24px; }
.bloc-instagram .like-counter:before { position: absolute; left: 0; top: 0; content: ''; background-image: url('/img/social/instalike-white.png'); height: 24px; width: 24px; }

@media all and (max-width: 800px) {
	.bloc-instagram .instagram-slide > ul > li { width: 16.666666666%; }
	.bloc-instagram, .bloc-instagram .instagram-slide { height: 66.666666666vw; }
}