



/* Preload images */


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

.lightbox {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  top: 30px !important;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  
 /* -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;*/
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
   background-color:#000;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
 /* -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;*/
}

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

.lb-container {
   padding:0;
   background-color:#fff;

}

.lb-loader {
  position: absolute;
  top: 50%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
 
}

.lb-cancel {
	display: block;
	width: 50px;
	height: 50px;
	position:relative;
	top:-25px;
	-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
    border-radius:50%;
    background-color:#fff;
    margin: 0 auto;
	background-size:60%;
	background-image: url(../images/preloder.gif);
	background-repeat: no-repeat;
	background-position: center center;
}

.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%;
  margin:0 0 0 -70px;
  left: 0;
  float: left;
  background-size:50px !important;
  background: url(../images/icons/prev.svg) 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: 34%;
  right: 0;
  float: right;
  background-size:50px !important;
  background: url(../images/icons/next.svg) 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;
   margin:0 -70px 0 0;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top:0;
  *zoom: 1;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.lb-data {
  padding: 0;
  color: #fff;
  font-size:14px;
 
}

.lb-data .lb-details {
  width: 100%;
  float: left;
  text-align: left;
  line-height: normal;
  text-align:center;
}

.lb-data .lb-caption {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  color:#000;
}

.lb-data .lb-number {
  display: none;
  /*display:block;
   font-size: 14px;*/
  clear: left;
  padding-bottom: 1em;
  font-size:0;
  text-indent:-999999999px;
  color: #fff;
}

.data-title-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 40px;
    color: var(--white);
    position: relative;
    z-index: 10;
}
.prj-label {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: left;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
    line-height: 15px;
}
.data-title-wrap h3 {
    margin: 0;
}
.data-title-left,
.data-title-right {
  text-align: left;
}
.data-title-left ul {
    margin: 15px 0 0  0;
    text-align: left;
}
.data-title-left ul li {
    margin-bottom: 8px;
    font-size: 20px;
}
.data-title-left ul li span {
    font-weight: 200;
}
.data-title-left ul li:last-child {
  margin: 0;
}

.lb-dataContainer::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0, #000 100%);
    opacity: 0.8;
}

.lb-data .lb-close {
  display: block;
  position:fixed;
  top:20px;
  right:20px;
  /*float: right;*/
  width: 45px;
  height: 45px;
  background: url(../images/icons/close.svg) top right no-repeat;
  background-size:50px;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  /* z-index: 100001; */
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

@media only screen and (max-width: 1700px) {
.lb-data .lb-close {
    z-index: 100001;
}
.lb-nav a.lb-next {
    margin: 0 25px 0 0;
}
.lb-nav a.lb-prev {
    margin: 0 0 0 25px;
}

}

@media only screen and (max-width: 800px) {
.lb-nav a.lb-next {
    margin: 0 25px 0 0;
    background-size: 40px !important;
}
.lb-nav a.lb-prev {
    margin: 0 0 0 25px;
    background-size: 40px !important;
}

}
@media only screen and (max-width: 768px) {

.data-title-left ul li {
    font-size: 13px;
}
.data-title-wrap h3 {
    font-size: 18px;
}
.prj-label {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 14px;
}
}
@media only screen and (max-width: 640px) {

.grid li {
	width:50%;

}

.lb-dataContainer {
    position: relative;
    background-color: #000;
}
.data-title-wrap {
    padding: 20px;
    background: #000;
    gap: 15px 2%;
    align-items: flex-start;
}

}

@media only screen and (max-width: 480px) {

.grid li {
	width:100%;


}

.data-title-wrap {
  flex-direction: column;
}

}