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

.img-magnifier-container img {
    max-width: 100%;
}

.img-magnifier-container .img-magnifier-glass {
    visibility: hidden;
}

.img-magnifier-container:hover .img-magnifier-glass {
    visibility: visible;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 250px;
    height: 250px;
}