/* fancybox gallery */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

::-moz-selection {
  color: #fff;
  background: #007bff;
}

::selection {
  color: #fff;
  background: #007bff;
}

body {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.wrapper {
  max-width: 1100px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery .image {
  padding: 7px;
  width: 33.3333333333%;
  cursor: pointer;
}

.gallery .image span {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.gallery .image:hover img {
  transform: scale(1.1);
}

.preview-box {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: 100%;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  color: #fff;
  transform-origin: top;
  display: flex;
  flex-direction: column;
}

.side-gallery-view {
  position: fixed;
  bottom: 4%;
  display: none;
  z-index: 5;
  margin: 0 auto;
}

.side-gallery-view img {
  margin-bottom: 1rem;
  width: 140px;
  cursor: pointer;
}

.side-gallery-view img.active {
  border: 3px solid #05ffe1;
}

.side-gallery-view.active {
  display: flex;
}

.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.preview-box .details {
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}

.preview-box .details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}

.details .title p {
  margin: 0 5px;
}

.details .title p.current-img {
  font-weight: 500;
}

.details .icon {
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}

.preview-box .image-box {
  display: flex;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.image-box .slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #231f1f;
  font-size: 30px;
  cursor: pointer;
  height: 42px;
  width: 40px;
  text-align: center;
  border-radius: 3px;
  background: #fff;
}

.slide.prev {
  left: 0px;
}

.slide.next {
  right: 0px;
}

.image-box img {
  width: 50%;
  border-radius: 0 0 3px 3px;
  margin: 0 auto;
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1000px) {
  .gallery .image {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .preview-box {
    top: 40%;
    gap: 5rem;
  }
  .preview-box .content-right i {
    font-size: 1.2rem;
  }
  .preview-box .details .title {
    font-size: 1rem;
  }
  .preview-box .image-box .slide {
    height: 30px;
    width: 30px;
    font-size: 22px;
  }
  .preview-box .image-box img {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .gallery .image {
    width: 100%;
    padding: 4px;
  }
}
.content-right {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}
.content-right i {
  cursor: pointer;
  font-size: 1.4rem;
}/*# sourceMappingURL=style.css.map */