/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  position:absolute;
  background-color: #fefefe;
  margin: 15% 8% 1% 8%; /* top, left, bottom, right */
  padding: 8px;
  border: 1px solid #888;
  width: 83%; /* Could be more or less, depending on screen size */
  height: 70%;
}
                                                             
/* The Close Button */
.closeButton {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  z-index: 1;
}
                                                                             
.closeButton:hover,
.closeButton:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Both slide buttons */
.galeryButton {
  width:40px;
  height:40px;
  line-height:40px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  overflow: hidden;
  z-index: 1;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.galeryButton:hover {
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

/* The left slide button */
.galeryButtonLeft {
  position:absolute;
  top:50%;
  left:5px;
}

/* The right slide button */
.galeryButtonRight {
  position:absolute;
  top:50%;
  right:5px;
}

/* Photos */
img.galeryPhoto {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
