@charset "utf-8";
/* CSS Document � */

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  opacity: 0.8;
  display: none;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0;
  outline: none;
  font-weight: normal;
  font: normal normal 400 0.9rem/1.1 'Roboto Condensed', Arial, Helvetica, sans-serif;
  letter-spacing:0;
  z-index: 10000;
  -webkit-user-select: none;
				user-select: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  
  /* Image border */
  border: 4px solid white;

}

.lightbox a {
  border: none;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #262626 !important;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

/*------------zz--------------*/
.lb-loader {
  position: absolute;
  top: calc(50% - 50px);
  left: 4px;
  
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
/*------------zz--------------*/
.lb-loader .ping-loader {
	position: relative;
  margin: 0 auto;
}
/*------------zz--------------*/
.lb-closeContainer {  
	display: block;
	/*min-width:80px;*/
  text-align: right;
  padding-top:2px;
}

/*------------zz--------------*/
.lb-closeContainer > * { margin-left: 8px; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  /*------------zz--------------*/
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  padding:0; margin:0;
}

.lb-container > .nav { left: 0; }

.lb-nav a {
  outline: none;
  border: none;
  background-image: var(--empty);
}

.lb-prev, .lb-next { height: 100%; cursor: pointer; display: block; position:relative; }

.lb-nav a.lb-prev {
  width: 33%;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  				transition: opacity 0.6s;
}


.lb-nav a.lb-next {
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  				transition: opacity 0.6s;
  /*------------zz--------------*/
  flex:1;
}

.lbox-icon-next, .lbox-icon-prev {
	display:block;
	position:absolute;
	right:14px; 
	top: calc(50% - 18px);
  
	width:17px; height:37px;
	background-image: var(--shvr-next);
	
	-webkit-filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.6));
					filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.6));
  background-position:0 0;
  background-repeat:no-repeat;
	-webkit-animation: bounce-slow-right 3s infinite 0.3s;
					animation: bounce-slow-right 3s infinite 0.3s;
}

.lbox-icon-prev {
	left:14px;
	background-image: var(--shvr-prev);
	-webkit-animation: bounce-slow-left 3s infinite 0.3s;
					animation: bounce-slow-left 3s infinite 0.3s;
}

.lb-nav a.lb-prev:hover { opacity: 1; }

.lb-nav a.lb-next:hover { opacity: 1; }


.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  padding-bottom:5px;
  *zoom: 1;
  width: 100%;
}

/*.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}*/

.lb-data {
  padding: 0 4px;
  color: #ccc;
  /*------------zz--------------*/
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  
}

.lb-data .lb-details {
  /*width: 80%;*/
  float: left;
  text-align: left;
  line-height: 1.1em;
  flex:1;
}

.lb-data .lb-caption {
  /*font-size: 13px*;/
  /*font-weight: bold;*/
  margin-left:6px;
  /*font-size: 1rem;
  line-height: 1em;*/
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  margin-left:6px;
  /*padding-bottom: 0.3em;*/
  font-size: 12px;
  /*line-height: 14px;*/
  color: #999999;
}

