img[data-action="zoom"] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  position: relative;
  z-index: 666;
box-shadow:0 0 0.5rem rgba(255, 255, 155, 0.5),0 0 2rem rgba(250, 150, 255,0.5);
border:1px solid rgb(200,100,50);
}

img[data-action="zoom"].none {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  position: relative;
  z-index: 666;
box-shadow:0 0 0.5rem rgba(255, 230, 167, 0.4),0 0 8px rgba(0, 0, 0, 0.3);
border: 4px solid rgba(255,255,255,1);
box-sizing: border-box;
}

img[data-action="zoom-out"] {
box-shadow:none;
border:none;
  position: relative;
}
.zoom-img,
.zoom-img-wrap {
  position: relative;
z-index: 700 !important;
  -webkit-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
img.zoom-img {
overflow:visible !important;
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  position: relative;
  z-index: 666;
}

.zoom-overlay {
  z-index: 669;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition:      opacity 300ms;
       -o-transition:      opacity 300ms;
          transition:      opacity 300ms;
}
.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=80)";
  opacity: 0.8;
}
.zoom-overlay-open,
.zoom-overlay-transitioning {
  cursor: default;
}
