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

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

.lightbox {
  position: absolute;
  left: 0;
  width: calc(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;
  
  /* Image border */
  border-left:60px solid #fff;
  border-right:60px solid #fff;
  border-top:25px solid #fff;
}

.lightbox a img {
  border: none;
}

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

  /* 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 {
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 10;
  margin-top:10px;
}

.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: 50%;
  left: 0;
  float: left;
  background: url(../images/prev.png) 90% top no-repeat;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  background-size: 40px auto;
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 50%;
  right: 0;
  float: right;
  background: url(../images/next.png) 10% top no-repeat;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  background-size: 40px auto;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding: 20px 0 0px 0;
  *zoom: 1;
  width: 100%;
  background: #fff;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 60px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  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-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-container{
  position:relative;
  padding-bottom: 70px;
  background: #fff;
}

.lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
    background-size: auto;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  background-size: 30px auto;
  position: absolute;
  z-index:9999999999;
  right: 17px;
  top: 13px;
}

.lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
 
.lb-caption-head{
  text-align:left;
}

.lb-caption-head h2{
  color:#6bb643 !important;
  margin:0 0 10px 0;
  padding:30px 60px 0 60px;
  line-height: 37px;
}

.lb-caption-head h3{
  color:#6bb643 !important;
  margin:0;
  font-size:20px;
  font-weight:normal;
  padding:0 60px;
  text-transform:none;
}

.lb-caption p,
.lb-caption ul{margin:0;font-weight:normal;color:#898c8c;font-size:20px;margin-bottom:20px;line-height: 1.3em;}

@media screen and (max-width:1000px){
	
  .lb-caption-head h2 {
    font-size: 28px;
    line-height: 33px;
  }

}

@media screen and (max-width:650px){
	
  .lb-caption-head h2 {
    font-size: 20px;
    line-height: 25px;
  }

}

@media screen and (max-width:550px){
	
  .lightbox .lb-image {
    border-left: 30px solid #fff;
    border-right: 30px solid #fff;
  }

  .lb-caption-head h2 {
    padding: 30px 30px 0 30px;
  }

  .lb-caption-head h3 {
    padding: 0 30px;
  }

  .lb-data {
    padding: 0 30px;
  }

  .lb-close {
    background-size: 15px auto;
  }

}


