#AppPagePDF {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#AppPagePDF .top {

}

#AppPagePDF .bottom {
    display: flex;
    height: 70px;
    line-height: 70px;
    background: #EDEDED;
    padding: 0px 20px;
    white-space: nowrap;
}

#AppPagePDF .bottom > div {
    height: 70px;
}

#AppPagePDF .bottom .action {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -1px; /* jinak je tam scrollbar */
}

#AppPagePDF .bottom .action.inactive {
    opacity: 0.5;
}

#AppPagePDF .bottom .action.prev {
    background-image: url("../img/prev.svg");
    margin-right: 20px;
}

#AppPagePDF .bottom .action.next {
    background-image: url("../img/next.svg");
}

#AppPagePDF .bottom .action.zoomin {
    background-image: url("../img/zoom-in.svg");
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

#AppPagePDF .bottom .action.zoomout {
    background-image: url("../img/zoom-out.svg");
    width: 20px;
    height: 20px;
}

#AppPagePDF .bottom .left {
    width: 140px;
}

#AppPagePDF .bottom .center {
    flex: 1;
    text-align: center;
}

#AppPagePDF .bottom .right {
    width: 140px;
    text-align: right;
}

#AppPagePDF .bottom .right span {
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px; /* jinak je tam scrollbar */
}

#AppPagePDF .bottom .pages {
    font-size: 80%;
}

#AppPagePDF_CanvasContainer {
    flex: 1;
    overflow: auto;
}

#AppPagePDF_Canvas {
    direction: ltr;
}

