.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
	transition: transform 0.4s, opacity 0.4s;
	opacity: 0;
	position: absolute;
	border: 3px solid #555555;
	border-radius: 50%;
	box-shadow: 0px 0px 15px #000000a0;
	cursor: none;
	/*Set the size of the magnifier glass:*/
	width: 100px;
	height: 100px;
	z-index: 1;
	transform: scale(0.5);
}

.img-magnifier-glass:hover {
	opacity: 1;
	transform: scale(1);
}