/*Eliminates padding, centers the thumbnail */
/* body, html {
	padding: 0;
	margin: 0;
	text-align: center;
}*/
/* Styles the thumbnail */
/* Styles the lightbox, removes it from sight and adds the fade-in transition */
/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
/* Styles the close link, adds the slide down transition */
/* Provides part of the "X" to eliminate an image from the close link */
/* Provides part of the "X" to eliminate an image from the close link */
/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
.screenshot-group {
  float: left;
  display: block;
  max-width: 25%; }

.screenshot-text {
  margin-left: 20px;
  margin-right: 20px; }

a.lightbox img {
  height: 150px;
  max-width: 150px;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  margin: 20px 20px 20px 20px; }

.lightbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity .5s ease-in-out;
  overflow: hidden; }
  .lightbox-target img {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 0%;
    max-width: 0%;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    transition: .5s ease-in-out; }
  .lightbox-target:target {
    opacity: 1;
    top: 0;
    bottom: 0;
    margin-left: -10%; }
    .lightbox-target:target img {
      max-height: 100%;
      max-width: 85%; }
    .lightbox-target:target a.lightbox-close {
      top: 32px; }

a.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  transition: .5s ease-in-out; }
  a.lightbox-close:before {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top: 10px;
    transform: rotate(45deg); }
  a.lightbox-close:after {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top: 10px;
    transform: rotate(-45deg); }

/*# sourceMappingURL=lightbox.css.map */
