/* Changement des propriétés du scrollrre*/
/*::-moz-scrollbar{
	width: 7px;
}

::-moz-scrollbar-track{
	background: #fff;
	padding: 1px;
}

::-moz-scrollbar-thumb{
	background: #444;
	padding: 1px;
}

::-webkit-scrollbar{
	width: 7px;
}

::-webkit-scrollbar-track{
	background: #fff;
	padding: 1px;
}

::-webkit-scrollbar-thumb{
	background: #444;
	padding: 1px;
}


.lightbox::-webkit-scrollbar{
	width: 7px;
}

.lightbox::-webkit-scrollbar-track{
	background: #fff;
	padding: 1px;
}

.lightbox::-webkit-scrollbar-thumb{
	background: #444;
	padding: 1px;
}*/

.lightbox{
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 1);
	overflow: auto;
	animation: lightboxIn .5s;
	transition: opacity .3s;
	z-index: 100;
}

.lightbox.fadeOut{
	opacity: 0;
}

.lightbox__next,
.lightbox__prev{
	border: none;
	background: url('./../../assets/files/imgs/icones/arrow.png') center center / 35px 35px;
	width:35px;
	height: 35px;
	position: fixed;
	top: 50%;
	right: 20px;
	margin-top: -50px;
	z-index: 11;
}

.lightbox__next:hover,
.lightbox__prev:hover{
	opacity: 1;
}

.lightbox__prev{
	right: auto;
	left: 0px;
	transform: rotate(180deg);
}

.lightbox__close{
	width: 30px;
	height: 30px;
	border: none;
	background: url('./../../assets/files/imgs/icones/close.png') center center / 30px 30px no-repeat transparent;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 12;
}

.lightbox__close:hover{
	opacity: 1;
}

.lightbox button{
	opacity: .5;
	transition: opacity .3s;
	cursor: pointer;
	text-indent: -3000px;
}

.lightbox button:hover{
	opacity: 1;
}


.lightbox__container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-height: 95vh;
	max-width: 95%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	overflow: hidden;
}


.lightbox__container img{
	display: inline-block;
	max-height: 85vh;
	animation: lightboxIn .5s;
}

.lightbox__loader{
	width: 50px;
	height: 50px;
	opacity: .5;
	background: url(imgs/loader.png);
}

@keyframes lightboxIn{
	from{opacity: 0;}
	to{opacity: 1;}
}


@media screen and (max-width: 520px){
	@media screen and (max-width: 700px){
	.lightbox__container{
		min-width: 70vw;
		max-height: 95vh;
		max-width: 100vw;
	}


	.lightbox__container img{
		width: 100%;
		height: auto;
	}
}

}