.pcGalleryContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}
.pcGalleryContainer,
.pcGalleryContainer .swiper {
  width: 100%;
  max-width: 100%;
}
.pcGalleryContainer:not(.pcActive) {
  display: none;
}
.pcGalleryContainer .swiper .swiper-wrapper,
.pcGalleryContainer .swiper .swiper-wrapper .swiper-slide {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pcGalleryContainer .swiper .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pcGalleryContainer .swiper .swiper-wrapper .swiper-slide img {
  margin: 0 auto;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.pcGalleryContainer .swiper .pcCloseButton {
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 0px;
  border-radius: 30px;
  outline: none;
  z-index: 101;
}
.pcGalleryContainer .swiper .pcCloseButton svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

.pcGalleryList .pcItem {
  cursor: pointer;
}
.pcGalleryList .pcItem .pcItemContent,
.pcGalleryList .pcItem .pcItemContent .pcImageContainer {
  position: relative;
}
.pcGalleryList .pcItem .pcItemContent .pcInfo {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pcGalleryList .pcItem .pcItemContent .pcInfo .pcButton {
  display: block;
  text-align: center;
}
.pcGalleryList .pcItem:not(:hover) .pcInfo {
  opacity: 0;
  visibility: hidden;
}
.pcGalleryList .pcItem:hover .pcInfo {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 580px) {
  .pcGalleryContainer {
    padding: 0px 35px;
  }
  .pcGalleryContainer .swiper .swiper-wrapper .swiper-slide {
    max-height: 80vh;
  }
  .pcGalleryContainer .swiper .swiper-wrapper .swiper-slide img {
    max-width: 75%;
  }
}
@media only screen and (max-width: 579px) {
  .pcGalleryContainer {
    padding: 0px 15px;
  }
  .pcGalleryContainer .swiper .swiper-wrapper .swiper-slide {
    max-height: 90vh;
  }
  .pcGalleryContainer .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
  }
}