html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 99999999999;
  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: 4px solid white; */
}

.lightbox a img {
  border: none;
}


.lb-box {
  max-width: 700px !important;
  max-height: 450px !important
}

/* #lightbox img.lb-image, */
/* .lb-box {
  overflow: hidden;
} */

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
}

.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(../loading.html) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 36px;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999999999;
}

.lb-container>.nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
  width: 50%;
  height: 100%;
  cursor: pointer;
  display: block;
  float: left;
}

.lb-nav a.lb-prev {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  text-decoration: none;
}

.lb-nav img {
  position: relative;
}

.lb-nav a.lb-prev::before {
  position: absolute;
  top: 50%;
  left: -30px;
  content: '\f104';
  display: inline-block;
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 5rem;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 9999999999;
}

.lb-nav a.lb-next {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  text-decoration: none;
}

.lb-nav a.lb-next::before {
  position: absolute;
  top: 50%;
  right: -30px;
  bottom: auto;
  content: '\f105';
  display: inline-block;
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 5rem;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 9999999999;
}

.lb-nav a.lb-next {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.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 {
  color: #ccc;
}

.lb-data .lb-details {
  margin-top: 5px;
  text-align: left;
  line-height: 1.5em;
}

.lb-data .lb-caption {
  font-weight: 400;
}s

.lb-data .lb-number {
  display: block;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-closeContainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.lb-closeContainer .lb-close {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 -3px 7px 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../png/cars-thmub-close.png);
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}


.lb-closeContainer .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: .7;
}
