body {
  margin: 0;
}

#flipbook .even {
  background-color: #fefefe;
}

#flipbook .odd {
  background-color: #efefef;
}

#flipbook .page img {
  width: 100%;
  height: 100%;
}

#flipbook .link-data {
  position: absolute;
  bottom: 10%;
  right: 25%;
  padding: 6px 30px;
  color: #fff;
  background: #cf322b;
  text-decoration: underline;
  font-size: 18px;
  font-family: sans-serif;
  border-radius: 25px;
}

#flipbook .link-data.link-data-center {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#flipbook .link-data.link-data-right {
  left: auto;
  right: 10%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#flipbook .link-data.link-data-left {
  left: 10%;
  right: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#rotate-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2em;
  color: red;
  background-color: white;
  padding: 20px;
  z-index: 9999;
  font-size: 30px;
  font-family: sans-serif;
}

#controls {
  display: none;
  z-index: 999;
  position: fixed;
  bottom: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#controls.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#controls button {
  border: none;
  background: #eee;
  padding: 5px 10px;
  border-radius: 5px;
}

#controls button:disabled {
  background: #ddd;
}
/*# sourceMappingURL=style.css.map */