*,
*:before,
*:after {
  box-sizing: border-box;
}

.product-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  /*max-width: 600px;*/
}

.vert-carousel {
  position: relative;
  width: 60px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .vert-carousel {
    display: none;
  }
  .hor-carousel-nav {
    display: flex;
  }
  .hor-carousel {
    width: 100%;
  }
  .hor-carousel-image-container {
    max-height: 480px;
    touch-action: pan-y;
  }
  .hor-carousel-image-container > div {
    max-height: 480px;
  }
}

@media (min-width: 768px) {
  .hor-carousel-nav {
    display: none;
  }
  .hor-carousel-image-container {
    height: 480px;
  }
  .hor-carousel-image-container > div {
    height: 480px;
  }
}

.hor-carousel-nav {
  width: 90%;
  margin: 40px auto 20px;
  justify-content: space-around;
}

.hor-carousel-indicator {
  height: 25px;
  cursor: pointer;
}

.indicator-tab {
  height: 3px;
  background-color: #dadcdf;
}

.indicator-tab-big {
  width: 30px;
}

.indicator-tab-mid {
  width: 18px;
}

.indicator-tab-small {
  width: 10px;
}

.hor-carousel-indicator.active > .indicator-tab-big,
.hor-carousel-indicator.active > .indicator-tab-mid,
.hor-carousel-indicator.active > .indicator-tab-small {
  background-color: #84734d;
}

.vert-carousel-content {
  position: relative;
  overflow: hidden;
  transition: width 0.4s;
  height: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

.vert-carousel-content-move,
.vert-carousel-content-enter-active,
.vert-carousel-content-leave-active {
  transition: all 0.5s ease;
}

.vert-carousel-content-enter-from,
.vert-carousel-content-leave-to {
  opacity: 0;
  transform: translateY(30px);
}

/* ensure leaving items are taken out of layout flow so that moving
   animations can be calculated correctly. */
.vert-carousel-content-leave-active {
  position: absolute;
}

.vert-slide {
  /*TODO: potentially make dyanmic height*/
  height: 75px;
  width: 46px;
  position: absolute;
  z-index: 1;
  transition: top 0.4s cubic-bezier(0.47, 0.13, 0.15, 0.89);
  cursor: pointer;
  padding: 3px;
  cursor: pointer;
}

.vert-slide > img {
  align-items: center;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.vert-slide.active {
  border: solid #000 3px;
  padding: 0px;
}

.vert-nav {
  position: absolute;
  margin-top: -10px;
  z-index: 2;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  display: block;
  background-color: #000;
  color: #fff;
  width: 30px;
  height: 20px;
  font-weight: 400;
  border-radius: 0px;
  border: none;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.vert-nav-top {
  top: -20px;
}

.vert-nav-bottom {
  bottom: -24px;
}

.vert-carousel-arrow-icon-up {
  margin-left: 1px;
  margin-top: 1px;
}

.vert-carousel-arrow-icon-down {
  margin-left: 1px;
}

.hor-carousel {
  max-height: 500px;
  width: 700px;
  cursor: default;
}

.hor-carousel-image-container {
  max-width: 100%;
  padding: 0, 24px;
}

.hor-carousel-image-container > div {
  max-width: 100%;
  padding: 0, 24px;
}

.hor-carousel-image {
  height: 100%;
  width: 100%;
  /* TODO: needed for mobile view*/
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  aspect-ratio: 1 / 1;
}

.fade-right-enter-active, .fade-left-enter-active {
  transition: all 0.3s ease-out;
}

.fade-right-enter-from {
  transform: translateX(-20px);
  opacity: 0;
}

.fade-left-enter-from {
  transform: translateX(20px);
  opacity: 0;
}

/*# sourceMappingURL=ProductGallery.css.map */
