.page_gallery {
    padding-bottom: 60px;
}
.page_gallery ._filter{
	float:right;
}
.page_gallery ._top{
	margin-top:10px;
	margin-bottom:15px;
}
.page_gallery ._filter select{
	min-width:280px;
}

.fancybox__gallery_items{
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
}
.fancybox__gallery_item{
	display: flex;
}
.fancybox__gallery_items a img{
	width:100%;
	object-fit: cover;
}
.fancybox__gallery_items .tall{
	grid-row: span 2;
}

@media(max-width:768px){
	.fancybox__gallery_items{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:480px){
	.fancybox__gallery_items{
		grid-template-columns: repeat(1, 1fr);
	}
}