@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400&display=swap");
/** Theme **/
/** Dimensions **/
/** Font Sizes **/
/** mixins **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #2F2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .hint {
  position: absolute;
  bottom: 25px;
  color: #D9D9D9;
}
.container .mobile {
  width: 100vw;
  height: 100vh;
}
.container .mobile .content {
  position: relative;
  width: 100vw;
  height: 100vh;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  overflow: hidden;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container .mobile .content .book {
  position: relative;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .mobile .content .book .cover {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-image: url("stories-of-the-saints_sxtxjl.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  border-top-left-radius: 5px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.4), -8px 12px 6px -6px rgba(0, 0, 0, 0.2), 8px 12px 6px -6px rgba(0, 0, 0, 0.2);
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.container .mobile .content .book .cover.active {
  width: 100%;
  height: 100%;
  transform: rotateY(-180deg);
  transform-origin: top left;
}
.container .mobile .content .book .cover .bend {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
}
.container .mobile .content .book .cover:hover {
  cursor: pointer;
}
.container .mobile .content .book .pages {
}
.container .mobile .content .book .pages .page {
  position: relative;
  background-color: #fff;
}
.container .mobile .content .book .pages .pages-content {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center center;
}
.container .mobile .content .book .pages .pages-content .content-inner {
  text-align: center;
  opacity: 0;
}
.container .mobile .content .book .pages .pages-content .content-inner .title {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  color: #444444;
}
.container .mobile .content .book .pages .pages-content .content-inner .text {
  text-align: justify;
  font-size: 12px;
  font-weight: 300;
  color: #444444;
}
.container .mobile .content .book .pages .pages-content .page-number {
  position: absolute;
  bottom: 0;
  font-size: 12px;
  font-weight: 300;
  color: #444444;
}

.container .mobile .content .book .pages .pages-content .page-number img{
	width:100%;
}

.container .mobile .content .book .pages:hover {
  cursor: pointer;
}
.container .mobile .content.active {
  position: relative;
}

.hide {
  display: none !important;
}