
.galerie_container{	
	width : 95%;	
	margin : auto;
	margin-bottom : 40px;
}


.galerie_line{
	display : table;
	table-layout : fixed;
	width : 100%;
	vertical-align : top;
	
	border-collapse: separate;
    border-spacing: 6px 3px;
	
	box-sizing: border-box;
	overflow : hidden;	
}

.galerie_line > div{
	display : table-cell;
	height : 100%;
	width : 25%;
	box-sizing: border-box;
	/* border : 3px solid white; */
	overflow : hidden;
	table-layout : fixed;
	
}

.galerie_line > div>img{
	width : 100%;
	height :  auto;
	display : block;
}

.galerie_thumb:hover{
	cursor : pointer;
	opacity : 0.7;
}

.galerie_display{
	position : fixed;
	top : 0;
	left : 0;
	width : 100%;
	height : 100%;
	background-color : rgba(0,0,0,0.7);
	z-index : 10000;
	display : none;
}

.galerie_previous{	
	width : 25px;
	height : 25px;
	position : absolute;
	top : calc( 50vh - 10px );
	left : 30px;
	cursor  : pointer;
	background-image:url('back.png');
	background-size: contain;	
    background-repeat:no-repeat;
    background-position:50% 50%;
}
.galerie_close{	
	width : 21px;
	height : 21px;
	position : absolute;
	top : 20px;
	right : 28px;
	cursor  : pointer;
	background-image:url('close.png');
	background-size: contain;	
    background-repeat:no-repeat;
    background-position:50% 50%;
}
.galerie_next{	
	width : 25px;
	height : 25px;
	position : absolute;
	top : calc( 50vh - 10px );
	right : 30px;
	cursor : pointer;
	background-image:url('next.png');
	background-size: contain;	
    background-repeat:no-repeat;
    background-position:50% 50%;
}
.galerie_image{
	display : table;
	width : 90vw;
	height : calc(100vh - 40px);
	margin : auto;
	margin-top : 20px;
	background-size: contain;	
    background-repeat:no-repeat;
    background-position:50% 50%;
}
