.magnify {
  position: relative;
  display: inline-block;
  cursor: none;
}
.magnify .magnify-lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.25), 0 8px 20px rgba(0,0,0,.25);
  background-repeat: no-repeat;
  background-color: #fff;
  display: none;
  z-index: 20;
  pointer-events: none;
}
.magnify .magnify-lens.show { display: block; }
