img[data-action="zoom"] {
  cursor: zoom-in;
}
.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 660;
  transition: all 300ms cubic-bezier(.2,0,.2,1);
/*	box-shadow: 0px 0px 1px 16px rgba(0,0,0,0.05);*/
	outline: 16px solid #FFF;
	outline-offset: -1px;
	background: #FFF;
}
img.zoom-img {
  cursor: zoom-out;
}
.zoom-overlay {
  cursor: zoom-out;
  z-index: 420;
  background: rgba(255,255,255,0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: "alpha(opacity=0)";
  opacity: 0;
  transition: opacity 300ms cubic-bezier(.2,0,.2,1);

}
.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";

  opacity: 1;
}

