body.scpopshow {
  overflow: hidden;
}

.scpop {
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.scpop.show {
  top: 0px;
  visibility: visible;
  opacity: 1;
}
.scpop__toolbar {
  position: absolute;
  z-index: 10001;
  width: calc(100% - 20px);
  padding: 10px;
  top: 0px;
  left: 0px;
}
.scpop__toolbar a {
  text-decoration: none;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 10002;
}
.scpop__toolbar_close {
  top: 10px;
  right: 15px;
}
.scpop__toolbar_prev {
  top: calc(50vh - 20px);
  left: 15px;
}
.scpop__toolbar_next {
  top: calc(50vh - 20px);
  right: 15px;
}
.scpop__inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.scpop__inner::-webkit-scrollbar {
  display: none;
}
.scpop__item {
  scroll-snap-align: start;
  width: calc(100vw - 40px);
  height: calc(100vh - 40px);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.scpop__item_caption {
  position: absolute;
  padding: 10px;
  width: calc(100% - 20px);
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  bottom: 0px;
  left: 0px;
}
.scpop__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.scpop__item iframe {
  display: block;
  width: 90%;
  height: 90%;
}/*# sourceMappingURL=scpop.css.map */