body {
    background: linear-gradient(#00A7E2, #145887);
    color: white;
    overflow: hidden;
    height: 100%;
}

.dropShadow {
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.5);
}

.textShadow {
    text-shadow: 2px 3px rgba(0, 0, 0, 0.5);
}

.textShadowSkinny {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
}

.topInfo {
    margin-top: 5px;
    margin-left: 20px;
    height: 205px;
}

.bookInfo {
    position: relative;
    z-index: 1;
    margin-left: -2px;
    height: 206px;
    padding-top: 2.6em;
}

.chapterStyle {
    margin-top: 29px;
}

.subtitleStyle {
    margin-top: -20px;
}

.chapterBox {
    height: 40px;
}

.text-center {
    text-align: center;
}

.chapterButtons {
    color: white;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background: #005B99;
    width: 60px;
    height: 50px;
    margin-left: 20px !important;
    text-shadow: 2px 2px 3px #000;
}

.storyButtons p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%
}

.storyAuthor {
    margin-top: -19px !important;
    margin-left: 5px;
    text-shadow: 2px 1px 2px #000;
}

.storyBox {
    min-height: 80px;
}

.storyButtons {
    color: white;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background: #005B99;
    width: 60px;
    height: 95px;
    margin-left: 20px !important;
}

.questionButton {
    color: white;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background: #009960;
    height: 50px;
    margin-top: -35px;
    cursor: pointer;
    /*    margin-left: 20px !important;*/
}

.questionButton p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%
}

.selected {
    color: white;
    background: orange !important;
    text-shadow: 2px 2px 3px #000;
}

.selected p {
    text-shadow: 2px 1px 2px #000;
}

.centerChapter {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.topPadding {
    margin-top: 15px;
}

.playerBox {
    position: absolute;
    bottom: -22px;
    right: 0px;
    right: 0px;
    background-color: transparent;
    width: 100%;
    height: 86px;
}

.topCorner {
    z-index: 2;
    position: absolute;
    top: 5;
    right: 5;
}

.topCorner button {
    z-index: 5;
    color: white;
    font-size: 16px;
    background-color: #20af4c;
    border-radius: 0px;
    border: 1px solid white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.playerBoxPadding {
    margin-top: 20px;
}

.storyName {
    font-weight: 600 !important;
    text-shadow: 2px 1px 2px #000;
}

.bookInfo h5 {
    width: 65%;
    font-size: 14pt;
}

/* --- Pop-Up Box --- */

.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 50px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.7);
    /* Black w/ opacity */
}

/* PopUp Content */

.popup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #2E2E2E;
}

.popup-content a {
    color: #225085;
}

/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */

.close {
    color: #fff !important;
    float: right;
    font-size: 58px;
    font-weight: bold;
    width: 40px;
    margin-right: 10px;
    position: absolute;
    left: 93%;
    top: -35px;
}

.close:hover,
.close:focus {
    color: #fff;
}

.popup-header {
    background-color: #225085;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 60px;
    margin-top: -20px;
}

.popup-header h2 {
    text-align: center;
    padding-top: 14px;
    font-size: 25pt;
}

.popup-body {
    margin-right: 3px;
    padding: 2px 16px;
    min-height: 520px;
    max-height: 521px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-y: scroll;
    width: 96%;
}

.popUpInfo {
    text-align: left;
}

.popUpInfo h2 {
    font-size: 20pt;
}

.popUpInfo h3 {
    font-size: 14pt;
    margin-bottom: 13px;
}

.pictureSlot {
    margin-top: 40%;
}

.questionTitle {
    font-weight: 600;
}

/* FOCUS */
@media (min-width: 1200px) {
    .container {
        width: 100%;
    }

    .storyButtons {
        margin-right: 6px;
    }

    div.jp-audio {
        width: 100% !important;
    }

    div.jp-interface ul.jp-controls li {
        margin-left: 60px;
    }

    a.jp-play {
        margin-right: -60px;
    }
}

/* ECLIPSE WINDOW */
@media (min-width: 1600px) {
    .storyButtons {
        margin-bottom: 10px;
    }
    
    .storyButtons p{
        font-size: 25px;
    }

    div.jp-audio div.jp-type-playlist div.jp-progress {
        width: 1000px;
    }

    div.jp-current-time {
        margin-left: -450px;
    }

    div.jp-duration {
        margin-right: 15px;
    }

    a.jp-pause {
        margin-left: -60px;
    }
    
    .questionButton p{
        font-size: 25px;
        line-height: 1.2;
        margin-top: 7px;
    }
    
    .subtitleStyle{
        font-size: 30px;
    }
    
    .bookInfo h5{
        font-size: 23px;
    }
}

/* ECLIPSE FULLSCREEN */
@media (min-width: 1800px) {
    
}
