/**
 * EasyZoom core styles
 */
.easyzoom {
  position: relative;
  /* 'Shrink-wrap' the element */
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 100%;
}

.easyzoom img {
  vertical-align: bottom;
}

.easyzoom.is-loading img {
  cursor: progress;
}

.easyzoom.is-ready img {
  cursor: zoom-in;
}

.easyzoom.is-error img {
  cursor: not-allowed;
}

.easyzoom-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: 10em;
  margin: -1em 0 0 -5em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
  position: absolute;
  z-index: 100;
  overflow: hidden;
  background: #fff;
}

/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
  top: 0;
  left: 100%;
  width: 85%;
  height: 85%;
  margin-left: 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.3);
}

/*---- bfo parches del pluggin para ajustarlo a HTTcommerce ----*/
.owl-carousel .easyzoom img {
  display: block;
  width: auto !important;
}
.ZoomAdjacent-HTT .owl-stage-outer.owl-height, .ZoomOverlay-HTT .owl-stage-outer.owl-height{
    height: auto !important;
}
.ZoomAdjacent-HTT .owl-stage-outer.owl-height{
    overflow: inherit;
}
.ZoomAdjacent-HTT .owl-item:not(.active){
    visibility: hidden;
    display: none;
}
.ZoomAdjacent-HTT .owl-stage{
    transform: none !important;
}
@media(min-width: 768px){
  .ZoomAdjacent-HTT .owl-stage{
      max-width: 500px;
  }
}
@media (max-width: 768px) {
  .not-move {
    transition-duration: 0ms !important;
    transform: none !important;
  }
}
/*----- eof -----*/
