body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
	width: 100%;
	height: 100%;
  z-index: 9999;
  background-color: #535A5F;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
  display: none;
}

.lightbox {
  position: fixed;
  left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.lb-prev, .lb-next {
  cursor: pointer;
  display: block;
	padding: 30px;
	width: 20px;
	height: 30px;
	background-size: 20px 30px !important;
}

.lb-nav a.lb-prev {
  left: -100px;
  background: url(../images/icon_pfeil_links_weiss.svg) center no-repeat;
}
.lb-nav a.lb-next {
  right: -100px;
  background: url(../images/icon_pfeil_rechts_weiss.svg) center no-repeat;
}


.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-close {
	position: fixed;
	top: 150px;
	right: 150px;
  width: 50px;
  height: 50px;
  background: url(../images/icon_close.svg) center no-repeat transparent;
	background-size: contain;
  display: none;
}

.lb-close:hover {
  cursor: pointer;
  display: block;
}

@media (max-width: 1024px) {
	.lb-close {
		top: 20px;
		right: 20px;
	}
	.lb-nav a.lb-prev {
		left: 0;
	}
	.lb-nav a.lb-next {
		right: 0;
	}
}