.magnifier {
  position: relative;
  cursor: crosshair;
}

.magnifier-view,
.magnifier-cursor {
  position: absolute;
  z-index: 99;
	display: none;
}

.magnifier-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.magnifier-cursor {
  width: 200px;
	height: 200px;
	background: rgba(0, 0, 0, 0.2);
  opacity: 0 !important;
}

.magnifier-view {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
	/* box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.8),
    inset 0 0 10px 2px rgba(0, 0, 0, 0.1); */
  background-color: #fff;
	background-repeat: no-repeat;
}
