html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: "Source Sans Pro",sans-serif;
}

html {
  overflow: hidden;
}

body {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.reader-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-y: scroll;
}

.reader-body .page-wrapper {
  margin: 0 auto;
}

.reader-body .page-wrapper > div {
  width: 100%;
  border: 1px solid #cdcdcd;
  -webkit-box-shadow: 5px 5px 5px #e9e9e9;
          box-shadow: 5px 5px 5px #e9e9e9;
  padding-bottom: 129%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 0;
  background-size: contain;
}

.reader-body .page-wrapper .page-not-found {
  position: relative;
}

.reader-body .page-wrapper .page-not-found div {
  width: 50%;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer-bar {
  height: 45px;
  background: #f8f9fd;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #e9edf8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-bar .logo {
  background: url("../img/logo.png") center center no-repeat;
  background-size: 80px 29px;
  width: 80px;
  height: 29px;
  margin-right: 80px;
}

.footer-bar .center-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footer-bar .zoom-controls {
  padding-left: 20px;
}

.footer-bar .zoom-controls span {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 20px 20px;
  cursor: pointer;
  margin: 0 5px;
}

.footer-bar .zoom-controls span.zoom-in {
  background: url("../img/zoom-in.svg") center center no-repeat;
}

.footer-bar .zoom-controls span.zoom-out {
  background: url("../img/zoom-out.svg") center center no-repeat;
}

input[type=text] {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  margin-left: 6px;
  padding: 5px;
  color: #9e9e9e;
  background-color: #fff;
  width: 30px;
  -webkit-appearance: none;
  text-align: center;
}

button {
  border: 1px solid #eaeaea;
  background-color: #ff9500;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  margin-left: 4px;
  border-radius: 4px;
}

@media screen and (max-width: 450px) {
  .footer-bar .zoom-controls {
    display: none;
  }
  .footer-bar .chapter-selector {
    width: 33%;
  }
  .footer-bar .logo {
    margin-right: 0;
  }
}
/*# sourceMappingURL=reader.css.map */