/**
 * imglightbox
 * @version 1.0.4
 * @author Ferenc Czigler <serrin.salamander@gmail.com>
 * @see https://github.com/Serrin/
 *
 * <link href="imglightbox.css" rel="stylesheet" type="text/css">
 * <script src="imglightbox.js"></script>
 */

#imgLightbox {
  font-family: Arial, Helvetica, sans-serif !important;
  background-image: url('');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: fixed;
  top: 0%;
  left: 0%;
  background-color: black;
  color: white;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  display: none;
  z-index: 9999998;
}

#imgLightbox a:link,
#imgLightbox a:hover,
#imgLightbox a:active,
#imgLightbox a:visited {
  text-decoration: none;
}

#imgLightbox-button-area {
  cursor: pointer;
  position: fixed;
  right: 15px;
  top: 0px;
  padding: 20px;
  color: white;
  font-size: 40px;
  z-index: 9999999;
}

.imgLightbox-button {
  display: inline-block;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.imgLightbox-button:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

#imgLightbox-button-download {
  display: none;
  color: white !important;
}
