/* Style the Image Used to Trigger the Modal */
#modal-image {
  	border-radius: 6px;
  	border: 6px solid #ababab;
  	cursor: pointer;
  	transition: 0.3s;
}

.lightbox {
	cursor: pointer;
}


/* #modal-image:hover {opacity: 0.7;} */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; 		/* Sit on top */
  padding-top: 80px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  	margin: auto;
  	display: block;
  
	max-width:2500px;
	max-height:1250px;
	width: auto;
	height: auto;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#modal-image-caption {
  margin: auto;
  display: block;
    
  text-align: center;
  color: #fff;
  padding: 10px 0;
  height: 20px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #modal-image-caption {
  animation-name: zoom;
  animation-duration: 0.3s;
}

@keyframes zoom {
  from {transform:scale(.8)}
  to {transform:scale(1)}
}

/* 100% Image Width on Smaller Screens */
/* @media only screen and (max-width: 700px){ */
/*   .modal-content { */
/*     width: 100%; */
/*   } */
/* } */