.zoomImg {
  cursor: pointer;
  float:right;
  margin-bottom: 2px;
  margin-left: 12px;
  margin-right: 2px;
  margin-top: 2px;
}

.zoomImg:hover {
  opacity: 0.5;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-right: 0px;
  margin-top: 0px;
  border-style: solid;
  border-width: 2px;
  border-color: #e62e00;
}

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

/* Modal Content (div) */
.modal-content {
  margin: auto;
  display: block;
  width:500px;
  padding: 6px 6px 6px 6px;
  background-color: #FFFFFF;
  opacity: 1;
  border-style: solid;
  border-width: 1px;
  border-color: #000000;
  text-align: center;
}

/* Add Animation */
.modal-content {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

.caption {
  text-align: left;
  padding: 0px 6px 0px 6px;
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
  text-align: justify;
}

@-webkit-keyframes zoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

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