.photogallery-block{
	position: relative;
	padding: 25px 0;
	margin: 0 -15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
}
.photogallery-item{
	width: 50%;
	padding: 15px;
	height: auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.photogallery-item a{
	display: block;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.photogallery-sub-block{
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.photogallery-sub-block .photogallery-item{
	width: 100%;
	height: auto;
}
.photogallery-item img{
	max-width: none;
}
.photogallery-item.vertical img{
	width: 100%;
	height: auto;
}
.photogallery-item.horizontal img{
	width: auto;
	height: 100%;
}
.fancybox-container *{
	transition: 0.1s;
}
.fancybox-container .fancybox-bg{
	background: #eaeaea;
}
.fancybox-container.fancybox-is-open .fancybox-bg{
	opacity: 1;
}
.fancybox-container .fancybox-button{
	background: transparent;
}
.fancybox-container .fancybox-button:hover {
	color: #000;
}
.fancybox-container .fancybox-button,
.fancybox-container .fancybox-button:link,
.fancybox-container .fancybox-button:visited{
	color: rgba(0, 0, 0, 0.4);
}
.fancybox-container .fancybox-thumbs__list a:before{
	border-color: #ff662c;
	border-width: 3px;
}
.btn.show-more{
	display: flex;
	margin: 0 auto 40px;
}

@media (max-width: 992px){
	.photogallery-block{
		margin: 0 -10px;
	}
	.photogallery-item{
		padding: 10px;
	}
}
@media (max-width: 768px){
	.photogallery-block{
		margin: 0 -7px;
	}
	.photogallery-item{
		padding: 7px;
	}
	.photogallery-sub-block{
		width: 50%;
	}
}