body.noscroll {
  overflow: hidden;
}

/* -- --------Storyboards-------- -- */

.storyboard-section {
  margin-bottom: 15em;
}

.sb-cont {
  padding: 0 13%;
}

.clown-cont, .pearl-cont {
  margin-top: 18em;
}

.ch-sheets {
  max-width: 100%;
  border-radius: .2em;
}

.sb-text {
  text-align: center;
  font-size: 1em;
  margin:  1em 0 3.5em;
  color: #a6a6a6;
}

.sb-header {
  text-align: center;
  padding: 1em;
  color: white;
}

.sb-headerCont {
  width: 100%;
}

.sb-devider {
  width: 130%;
  border: .01em solid rgb(83, 83, 83);
  
}


/* -- --------Manga Lightbox-------- -- */
.manga-section {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  max-width: 83%;
  margin: 5em auto 1.9em;
  justify-content: space-evenly;
  align-items: center;



  .manga-text {
    display: block;
    text-align: center;
    max-width: 33rem;
    min-width: 20rem;
    margin: 0px 0px 0px 1em;
  }

  @media(max-width: 1040px) {
    .manga-text img {
      display: none;
    }
  }

  /* Hide all gallery images */
  .manga-gallery-images {
    display: none;
  }

  .manga-preview {
    margin-top: 3em;
    max-width: 22em;
    cursor: pointer;
    border: 10px solid rgb(7, 7, 7);
    border-radius: 8px;
    transition: transform 0.2s;
  }

  .manga-preview:hover {
    transform: scale(1.015);
  }

  .manga-lightbox {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .manga-lightbox-image-wrapper {
    padding: 20px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
  }

  .manga-lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
  }

  .manga-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;

  }

  .manga-prev,
  .manga-next {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
  }

  .manga-prev {
    left: 30px;
  }

  .manga-next {
    right: 30px;
  }

}
