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

.img-magnifier-glass {
    position: absolute;
    border: 1px solid #ccc;
    /* border-radius: 50%; */
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 100px;
    height: 100px;
    display: none;
}
.img-magnifier-container:hover .img-magnifier-glass{
    display: inline-block;
}