img[data-action="zoom"] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  /* position: relative; */
  cursor: -moz-zoom-in;
}
.zoom-img-desc{
  font-family: 'Century Gothic Re', sans-serif;
  /* color: #b2b0b1; */
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  text-shadow: 1px 1px 2px hsl(0, 0%, 0%);
  /* text-shadow: 0 1px 0 hsla(0, 0%, 3%, 0.56); */
  color: red;
  display: none;
  position: fixed;
  text-align: center;
  /*  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;*/
  z-index: 5000;
  /* background-color: #000000; */
  bottom: 0px;
  padding: 10px;
  left: 0;
  width: 100%;
}
.zoom-img-wrap {
  display: flex;
  position: fixed;
  z-index: 5000;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
img.zoom-img {
  /* position: fixed; */
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}
.zoom-overlay {
  z-index: 2000;
  background: #000;
  background-color:rgba(0, 0, 0, 0.5);
  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=50)";
  opacity: 1;
}
.zoom-overlay-open,
.zoom-overlay-transitioning {
  cursor: default;
}