.manga-view {
    position: absolute;
}

.manga-view-base {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    user-select: none;
    z-index: 1;
    display: table;
    touch-action: none;
}

.manga-view-inner {
    position: absolute;
    background-size: cover;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto 0 auto;
    pointer-events: none;
    user-select: none;

    display: flex;
    flex-direction: row;
}

.manga-view-inner-left {
    background-size: cover;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto 0 auto;
    pointer-events: none;
    user-select: none;

}

.manga-view-inner-right {
    background-size: cover;
    vertical-align: middle;
    text-align: center;
    margin: 0 auto 0 auto;
    pointer-events: none;
    user-select: none;
}

.manga-view-control {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0em;
    width: 100vw;
    height: 5em;
    line-height: 5em;
    padding: 0 1em 0 1em;
    margin: 0;
    color: #fff;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 1) 80%);
    z-index: 99;
}

.manga-view-control-lr {
    text-align: center;
    position: absolute;
    display: table-cell;
    left: 0;
    top: 0em;
    width: 2em;
    height: 100vh;
    line-height: 100vh;
    padding: 0 0.5em 0 0.5em;
    margin: 0;
    color: #fff;
    z-index: 99;
    font-size: 3em;
    font-weight: 800;
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
    pointer-events: none;
    user-select: none;
    transform: scale(0.5, 1);
}

.manga-view-loader {
    display: none;
    position: absolute;
    width: 84px;
    height: 84px;
    background-color: #fff;
    border: 1px solid #777;
    padding: 10px;
    pointer-events: none;
    user-select: none;
}

.manga-view-return {
    cursor: pointer;
}