/* -----------------------------------------------------------
   Common Slider Base for JIGO App (.slide) & Books (.bookslide)
----------------------------------------------------------- */

#splashScreen .container,
#bookScreen .container {
    position: relative;
    overflow: hidden;
}

/* All slides MUST stack on top of each other */
.slide,
.bookslide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

/* The visible slide */
.slide.active,
.bookslide.active {
    opacity: 1;
    position: absolute;
}

/* Make sure slides fill height */
#splashScreen .container > .slide,
#bookScreen .container > .bookslide {
    width: 100%;
}

/* Prevent content shift */
#splashScreen .container {
    min-height: 90vh;
}

#bookScreen .container {
    min-height: 90vh;
}
