#images-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  z-index: -1;
}

#images-gallery.act {
  opacity: 1;
  z-index: 1000;
}

#images-gallery .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.6);
}

#images-gallery .images-inner {
  width: 98%;
  max-width: 977px;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  #images-gallery .images-inner {
    padding: 10px;
  }
}

#images-gallery .images-inner .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 10px;
}

#images-gallery .images-inner .top p {
  color: #1e1e1e;
}

#images-gallery .images-inner .top button {
  cursor: pointer;
  color: #4b4b4b;
}

#images-gallery .images-inner .swiper.imageSwiper .swiper-slide {
  aspect-ratio: 937 / 474;
}

#images-gallery .images-inner .swiper.imageSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

#images-gallery .images-inner .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-position: center;
  background-size: contain;
  background-image: url("../../images/icon/icon_arrow_left.svg");
  right: 0;
}

#images-gallery .images-inner .swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-position: center;
  background-size: contain;
  background-image: url("../../images/icon/icon_arrow_right.svg");
  left: 0;
}

#images-gallery .images-inner .swiper .swiper-button-prev,
#images-gallery .images-inner .swiper .swiper-button-next {
  top: 45%;
}

#images-gallery .images-inner .swiper .swiper-button-prev::after,
#images-gallery .images-inner .swiper .swiper-button-next::after {
  display: none;
}

@media screen and (max-width: 599px) {
  #images-gallery .images-inner .swiper .swiper-button-prev,
  #images-gallery .images-inner .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

#images-gallery .images-inner #bottom-wrapper {
  margin-top: 7px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
          column-gap: 7px;
  height: 60px;
  overflow-x: scroll;
}

#images-gallery .images-inner #bottom-wrapper img {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 2px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
