.gs_pin_area {
  /*background: #d1d1d1;*/
}

.gs_pin_area .gs-pins {
  margin: 0;
  padding: 0;
}
.gs-pins .gs-single-pin {
  list-style-type: none;
}
.gs_pin_theme1 .gs-pins .gs-single-pin {
  line-height: 0;
}

.gs-pin-details img {
  width: 100%;
}

/*Theme Two*/
.gs_pin_theme2 .gs-pin-title,
.gs_pin_theme5 .gs-pin-title {
	text-align: center;
}

/*Theme Three*/
.gs_pin_theme3 .gs-pins .gs-single-pin {
  line-height: 0;
}
.gs_pin_theme3 .gs-pins .gs-single-pin .gs-pin-title {
  line-height: 1.5;
}
.gs_pin_theme3 .gs-pin-details {
  position: relative;
}
.gs_pin_theme3 .gs-pin-link {
	position: absolute;
	top: 0;
	background: rgba(178,10,33, 0.7);
	display: block;
	height: 100%;
	width: 100%;
	padding: 15px;
	color: #fff;
	opacity: 0;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	font-size: 14px;
	padding-top: 20%;
}
.gs_pin_theme3 .gs-pin-details:hover .gs-pin-link {
	opacity: 1;
}
.gs_pin_theme3 .pin-ex-link {
  color: #fff;
  background: rgba(178,10,33, 1);
  padding: 12px 14px 10px;
  right: 15px;
  position: absolute;
  bottom: 15px;
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
  border-bottom: none;
  font-size: 20px;
	text-decoration: none;
}
.gs_pin_theme3 .pin-ex-link:hover {
	background: transparent;
	color: #fff;
}
.gs_pin_theme3 .pin-ex-link i.fa {
  margin: 0;
}

/*Theme four pop*/
.gs_pin_theme4 .gs-pins .gs-single-pin {
  line-height: 0;
}
.gs-pin-pop img {
  width: 100%;
}
.gs_pin_theme4 .gs-pin-pop {
	position: relative;
	overflow: hidden;
}
.gs_pin_theme4 .gs_pin_overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
}

.gs_pin_theme4 .gs_pin_overlay i {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto !important;
  background-color: #B20A21;
  font-size: 20px;
  color: #fff;
  vertical-align: middle;
  line-height: 50px;
  border-radius: 50%;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  text-align: center;
}

.gs_pin_theme4 .gs-pin-pop:hover .gs_pin_overlay {
  opacity: 1;
  visibility: visible;
}
.gs_pin_popup {
	position: relative;
	width: 60%;
	background: rgba(255,255,255,.7);
	margin: 0 auto;
	padding: 10px;
	overflow: hidden;
	text-align: center;
}
.gs_pin_popup .gs-pin-title {
    margin: 5px 0;
}
.gs_pin_popup .pin-ex-link {
	margin-left: 5px;
  padding: 5px 10px;
  color: #B20A21;
  font-size: 16px;	
}

button.mfp-close, 
button.mfp-arrow {
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}
.gs_pin_popup button.mfp-close:hover { 
  background: rgba(178,10,33, 0.6); 
}
button.mfp-arrow:hover,
button.mfp-arrow:active,
button.mfp-arrow:focus { 
    background: rgba(178,10,33, 0.6); 
    border-top: none;
}

/*Theme five grey*/

/*! Gray v1.4.5 (https://github.com/karlhorky/gray) | MIT */
.grayscale {
  /* Firefox 10-34 */
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='saturate' values='0'/></filter></svg>#grayscale");

  /*
    Chrome 19+,
    Safari 6+,
    Safari 6+ iOS,
    Opera 15+
  */
  -webkit-filter: grayscale(1);

  /* Firefox 35+ */
  filter: grayscale(1);

  /* IE 6-9 */
  filter: gray;
}

.grayscale.grayscale-fade {
  transition: filter .5s;
}

/* Webkit hack until filter is unprefixed */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .grayscale.grayscale-fade {
    -webkit-transition: -webkit-filter .5s;
    transition:         -webkit-filter .5s;
  }
}

.grayscale.grayscale-off,
.grayscale.grayscale-fade:hover {
  -webkit-filter: grayscale(0);
  filter:         grayscale(0);
}

/* Background element */
.grayscale.grayscale-replaced {
  -webkit-filter: none;
  filter:         none;
}

.grayscale.grayscale-replaced > svg {
  -webkit-transition: opacity .5s ease;
  transition:         opacity .5s ease;
  opacity: 1;
}

.grayscale.grayscale-replaced.grayscale-off > svg,
.grayscale.grayscale-replaced.grayscale-fade:hover > svg {
  opacity: 0;
}