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

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color:rgba(1, 53, 115, 1);
  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;
  /* 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:rgba(255, 255, 255, 0.1);
}

.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 {
  width: 34%;
  left: 0;
  float: left;

  position:relative;
  left:-40px;
  rotate:180deg;
  background:url(../../../images/ic_arrow_05.webp) right top calc(50% - 10px) no-repeat;
  background-size:20px;

  /* background: url(../images/prev.png) left 48% no-repeat;
  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;

  position:relative;
  left:40px;
  background:url(../../../images/ic_arrow_05.webp) right top calc(50% - 10px) no-repeat;
  background-size:20px;

  /* background: url(../images/next.png) right 48% no-repeat;
  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-dataContainer {
  margin: 0 auto;
  padding:0;
  /* 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;
  color:rgba(255, 255, 255, 1);
  /* color: #ccc; */
}

.lb-data .lb-details {
  position:relative;
  /* width: 85%;
  float: left; */
  padding:3em 0 0;
  text-align: center;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  /* position:absolute;
  left:0;
  top:-2em; */
  font-size: 1rem;
  /* 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; */
  position:absolute;
  left:1em;
  top:-3.25em;
  padding:0.5em 1em;
  background-color:rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
}

.lb-data .lb-close {
  position:absolute;
  padding:0.85em;
  padding-left:1.75em;
  left:40px;
  top:-72px;
  /* display: block;
  float: right;
  height: 40px; */
  background: url(../../../images/ic_close.webp) left 0.5em top 0.6em no-repeat;
  background-size:1em;
  /* background: url(../images/close.png) top right no-repeat; */
  border:1px solid rgba(255, 255, 255, 1);
  border-radius:0.25rem;
  text-align: right;
  outline: none;
  font-size: 0.875rem;
  line-height:1;
  /* filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s; */
  cursor: pointer;
}
.lb-data .lb-close:before {
  content:'Close';
  display:inline-block;
  color:rgba(255, 255, 255, 1);
}

.lb-data .lb-close:hover {
  background-color:rgba(255, 255, 255, 0.1);
  /* cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; */
}


.lb-nav a, .lb-data .lb-close {
  transition:0.35s opacity;
  opacity:0.35;
}
.lb-nav a:hover,
.lb-data .lb-close:hover {opacity:1;}