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

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  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;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  padding: 30px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: #000;
}
@media screen and (max-width: 480px) {
	.lb-outerContainer {
		padding: 16px 16px 28px;
	}
}

.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: 40px;
  height: 40px;
  margin: 0 auto;
}
.lb-cancel .inr {
	position: relative;
	width: 100%;
}
.lb-cancel svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform-origin: center;
	animation: 1.0s linear infinite rotation;
}
@keyframes rotation {
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}
.lb-cancel svg:first-child {
	opacity: 0.55;
	animation-duration: 1.6s;
}


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

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

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-prev, .lb-nav a.lb-next {
	position: relative;
}
.lb-nav a.lb-prev:before, .lb-nav a.lb-next:before {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    width: 24px;
    height: 24px;
    transform: rotate(45deg) translatey(-50%);
}
.lb-nav a.lb-prev:before {
    left: 40px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
.lb-nav a.lb-next:before {
    right: 60px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}
@media screen and (max-width: 480px) {
	.lb-nav a.lb-prev:before, .lb-nav a.lb-next:before {
		width: 18px;
		height: 18px;
	}
	.lb-nav a.lb-prev:before {
		left: 30px;
	}
	.lb-nav a.lb-next:before {
		right: 40px;
	}
}

.lb-dataContainer {
  margin: 0 auto;
  padding-bottom: 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%;
      padding-top: 8px;
  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-number {
	position: absolute;
	left: 33px;
	bottom: 16px;
	display: block;
	/* clear: left; */
	font-size: 10pt;
	color: #eee;
}
@media screen and (max-width: 480px) {
	.lb-number {
		left: 18px;
	}
}

.lb-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 32px;
	cursor: pointer;
	z-index: 11;
}
.lb-close:before, .lb-close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 40%;
	background: #fff;
}
.lb-close:before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.lb-close:after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.lb-close:hover {
  cursor: pointer;
  opacity: 0.7;
}
