.photos-loader {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
	.photos-loader-bg {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: #FFF;
		opacity: 0.8;
		z-index: 4;
	}
	.photos-loader-inside {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
	}
		.photos-loader-inside .loader {
			margin: auto;
		}

.grid {
}
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */
.grid-sizer,
.grid-item {
  width: 24%;
  margin: 0 1% 7px 0;
}

.grid-sizer.home,
.grid-item.home {
  width: 32.333%;
  margin: 0 1% 7px 0;
}
.grid-item {
  float: left;
}
	.grid-item img {
	  display: block;
	  max-width: 100%;
	}


.grid-item-content {
  -webkit-transition: width 0.4s, height 0.4s;
          transition: width 0.4s, height 0.4s;
}
	.grid-item:hover .grid-item-content {
	  cursor: pointer;
	}
	.grid-item.is-expanded,
	.grid-item.is-expanded .grid-item-content {
	  width: 680px;
	  height: auto;
	}
	.grid-item.is-expanded {
	  z-index: 2;
	}
