/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 * {box-sizing: border-box;}

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

.img-magnifier-glass {
  position: absolute;
  border: 5px solid #691103;
  cursor: none;
  border-radius: 50%;
  width: 275px;
  height: 275px;
  display: block;
  z-index: 99;  
}
.img-magnifier-glass.sm {
  border-radius: 50%;
  width: 225px;
  height: 225px;
}
.img-magnifier-glass.xl {
  border-radius: 0%;
  width: 500px;
  height: 500px;
}