body.lb-disable-scrolling {
  overflow: hidden;
  padding-right: 17px;
}

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

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

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

  /* Image border */
  border: 10px 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: none;
}

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

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

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

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 20px;
    float: left;
    background: #ffffff;
    border-radius: .25rem;
}
.lb-nav a.lb-next {
    left: 100%;
    margin-left: -60px;
}
.lb-nav a.lb-prev:before,
.lb-nav a.lb-next:before{
    content: "";
    display: block;
    width: 8px;
    height: 14px;
    background: url(../../images/icon/arrow.svg) 0 0 no-repeat;
    margin: 13px 15px;
    background-size: 18px;
}
.lb-nav a.lb-next:before{
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-left: 17px;
}
.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
  background: #28a745;
}
.lb-nav a.lb-prev:hover:before,
.lb-nav a.lb-next:hover:before {
  background-position: 0 -16px;
}

.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: 100%;
  float: left;
  text-align: left;
  line-height: 1.1em;
  text-align: center;
}

.lb-data .lb-caption {
    color: #444444;
    font-weight: normal;
}

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

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

.lb-data .lb-close {
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../../images/icon/icon-close.svg);
  position: absolute;
  top: -30px;
  right: 37px;
  cursor: pointer;
  transition: all .55s ease;
}

.lb-data .lb-close:hover {
  transform: rotate(270deg);
}
