.img-magnifier-container {
  position: relative;
  max-width: 832px;
}
.img-magnifier-container .img-magnifier-glass {
  position: absolute;
  border: 3px solid rgba(0, 0, 0, 0.2);
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 300px;
  height: 200px;
  visibility: hidden;
}
.img-magnifier-container:hover .img-magnifier-glass {
  visibility: visible;
}