
/* The lb_modal (background) */
.lb_modal {
  display: none;
  position: fixed;
  z-index: 10000;
/*  padding-top: 100px;*/
  left: 0;
  top: 0;

  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* lb_modal Content */
.lb_modal-content {
/*  position: relative;*/
  background-color: none;
/*    display: table-cell;*/
/*  margin: auto;*/
/*  padding: 0;*/
/*  height: 100vh;*/

/*
  max-width: 1080px;
  max-height: 800px;
  
*/
 
}

.lb_modal-content img {
    display:block;
    margin: auto auto;
    max-height: 800px;
/*    vertical-align: middle;*/
  
 
    
}

.fullwidth{width: 100%; height: 1400px; }


/* The Close Button */
.lb_modal .close {
  color: white;
  position: fixed;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 20000;
}

.lb_modal .close:hover,
.lb_modal .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.lb_modal .cursor {
  cursor: pointer
}

/* Next & previous buttons */

.lb_modal .prev,
.lb_modal .next {
  cursor: pointer;
  position: fixed;
    top: 50%;
/*  top: 400px;*/
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}


/* Position the "next button" to the right */
.lb_modal .next {
  right: 0px;
  border-radius: 3px 0 0 3px;
}

.lb_modal .prev {
  left: 0px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.lb_modal .prev:hover,
.lb_modal .next:hover {
  background-color: rgba(150, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.lb_modal .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}



/*
.lb_modal .caption-container {
  text-align: center;
  background-color: none;
  padding: 2px 16px;
  color: white;
}
*/

/*
.lb_modal .demo {
  opacity: 0.6;
}

*/
/*
.lb_modal .active,
.lb_modal .demo:hover {
  opacity: 1;
}
*/



@media only screen and (max-width : 1025px) {
    .lb_modal-content img {
    width: 80%;
       
}
}

@media only screen and (max-width : 800px) {
   .lb_modal-content img {
    width: 100%;
       
}
}


