.gp-grid {
	list-style: none;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
  max-width: 1600px;
}

.gp-grid li {
	display: inline-block;
	margin: 20px;
	vertical-align: top;
}

.gp-grid li > a {
	cursor: pointer;
}

.gp-grid li > a,
.gp-grid li > a img {
	border: none;
	outline: none;
	display: block;
	position: relative;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-ms-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
}

.gp-grid li > a img:hover {
	box-shadow: 0 0 15px #000;
	-webkit-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

.gp-grid li.gp-expanded > a::after {
	top: auto;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #f26c4f;
	border-width: 15px;
	left: 50%;
	margin: -20px 0 0 -15px;
}

.gp-expander {
	position: absolute;
	background: rgba(255,255,255,0.5);
	top: auto;
	left: 0;
	width: 100%;
	margin-top: 10px;
	text-align: left;
	height: 0;
	overflow: hidden;
}

.gp-expander-inner {
	padding: 50px 10px;
	height: 100%;
}

.gp-close {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.gp-close::before,
.gp-close::after {
	content: '';
	position: absolute;
	width: 100%;
	top: 50%;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.gp-close::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.gp-close:hover::before,
.gp-close:hover::after {
	background: #363636;
}

.gp-fullimg,
.gp-details {
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.gp-details {
	padding: 0 40px 0 20px;
}

.gp-fullimg {
	text-align: center;
}

.gp-fullimg img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
}

.gp-details h3 {
	font-weight: 700;
	font-size: 1.7em;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

.gp-details p {
	font-weight: 400;
	font-size: 1.3em;
	line-height: 1.6;

}

/*.gp-details a {
	font-weight: 700;
	font-size: 1em;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px;
	border: 3px solid #fff;
	display: inline-block;
	margin: 5px 0 0;
	outline: none;
}

.gp-details a::before {
	content: "";
	display: inline-block;
	margin-right: 10px;
}

.gp-details a:hover {
	background-color: #f26c4f;
}*/

.gp-loading {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ddd;
	box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	-webkit-animation: loader 0.5s infinite ease-in-out both;
	-moz-animation: loader 0.5s infinite ease-in-out both;
	animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@-moz-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@media screen and (max-width: 1000px) {

	.gp-expander h3 { font-size: 32px; }
	.gp-expander p { font-size: 13px; }
	.gp-expander a { font-size: 12px; }

}

@media screen and (max-width: 660px) {

	.gp-fullimg { display: none; }
	.gp-details { float: none; width: 100%; }

}

@media screen and (max-width: 320px ) {
	.gp-grid li { margin: 10px 0; }
}
