body.lb-disable-scrolling {
    overflow: hidden;
    position: static;
    height: 100vh;
    width: 100vw;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(255,255,255,.9);
  display: none;
}

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

.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;
  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 {
  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 {
}
.lb-nav a.lb-prev::after {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 15px;
    top: calc(100% + 25px);
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-135deg) translateY(-50%);
    color: #666;
}

.lb-nav a.lb-next {
}
.lb-nav a.lb-next::after {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    right: 15px;
    top: calc(100% + 25px);
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg) translateY(-50%);
    color: #666;
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *: ;
    zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    position: absolute;
    position: a;
    bottom: calc(100% - -35px);
    left: 50%;
    transform: translateX(-50%);
}

.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: 2.0rem;
    color: #000;
    line-height: 0;
    transform: translateY(10px);
    display: block;
}

/*Smartphone*/
@media screen and (max-width: 767px) {
	.lb-data .lb-caption {
		font-size: 1.6rem;
	}
}

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

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

.lb-data .lb-close {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
	top: 0;
    right: -4px;
}
.lb-data .lb-close::before,
.lb-data .lb-close::after {
    display: block;
    content: "";
    position: absolute;
    top: 0%;
    left: 45%;
    width: 1px;
    height: 30px;
    margin: 0;
    background: #666;
}
.lb-data .lb-close::before {
	transform: rotate(-45deg);
}
.lb-data .lb-close::after {
	transform: rotate(45deg);
}