/* Basic */
/* html, body {
  margin: 0;
  padding: 0;
} */

/* Styling for xzoom and placement */
.xzoom-source img, .xzoom-preview img, .xzoom-lens img {
  display: block;
  max-width: none;
  max-height: none;
}

/* --------------- */
/* xZoom Styles below */
.xzoom-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* width: 50%;*/
  /* height: 100vh;  */
}

.xzoom-thumbs {
  text-align: center;
  margin-bottom: 10px;
}

.xzoom, .xzoom2, .xzoom3, .xzoom4, .xzoom5 {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

/* Thumbs */
.xzoom-gallery, .xzoom-gallery2, .xzoom-gallery3, .xzoom-gallery4, .xzoom-gallery5 {
  border: 1px solid #cecece;
  margin-left: 5px;
  margin-bottom: 10px;
}

.xzoom-source {
  display: block;
  position: static;
  float: none;
  clear: both;
}

.xzoom-hidden {
  display: block;
  position: static;
  float: none;
  clear: both;
  overflow: hidden;
}

/* Everything out of border is hidden */
/* Preview */
.xzoom-preview {
  border: 1px solid #888;
  background: #2f4f4f;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Lens */
.xzoom-lens {
  border: 1px solid #555;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
}

/* Loading */
.xzoom-loading {
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100%;
  opacity: 0.7;
  background: url(../images/xloading.gif) center no-repeat;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
}

/* Additional class that applied to thumb when it is active */
.xactive {
  box-shadow: 0px 0px 3px 0px #4aa9d2;
  border: 1px solid #4aaad2;
}

/* Caption */
.xzoom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  width: 100%;
  text-align: left;
}
.xzoom-caption span {
  color: #fff;
  font-family: Arial, sans-serif;
  display: block;
  font-size: 0.75em;
  font-weight: bold;
  padding: 10px;
}

@media (max-width: 500px) {
  img.xzoom {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }

  .xzoom-thumbs .xzoom-gallery {
    width: 100%;
    max-width: 50px;
  }
}