/* Magnifying Glass Code                                   */
/* Adapted from http://codepen.io/StefanHiienurm/pen/hGLlt */
/* by Stefan Hiienurm                                      */
/* without permission                                      */

.magnifier .large {
  width: 250px; 
  height: 250px;
  position: absolute;
  border-radius: 100%;
    
  /* Multiple box shadows to achieve the glass effect */
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 
    0 0 7px 7px rgba(0, 0, 0, 0.25), 
    inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    
  background-repeat: no-repeat;
  display: none;
}

.magnifier .small { 
  display: block;
}