/* The Modal (background) */
.modal-container {
  position: fixed;
  z-index: 100;
  display: none;/*display flex on click*/
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

.product-img.modal {
  height: 90%;
  width: auto;
  max-width: 1200px;
}
/* The Close Button */
.close-image, .left-image, .right-image {
  position: absolute;
  color: #ccc;
  font-size: 50px;
  font-weight: bold;
}
.close-image {
  top: 3%;
  right: 3%;
}
.left-image, .right-image {
  top: 50%;
}
.left-image {
  left: 5%;
}
.right-image {
  right: 5%;
}
.close-image:hover, .close-image:focus,
.left-image:hover, .left-image:focus,
.right-image:hover, .right-image:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.2);
}
