<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.booklet-container.booklet {
  background-color: #ffffff;
  width: 800px;
  height: 600px;
  position: relative;
  margin: 20px auto 10px;
  margin-top: 20px !important;
  z-index: 10;
  /* hover styles */
  /* for touch screen devices */
}
.booklet-container.booklet .b-wrap-right, .booklet-container.booklet .b-wrap-left {
    background: none;
}

.booklet-container.booklet *,
.booklet-container.booklet *:after,
.booklet-container.booklet *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.booklet-container.booklet .b-arrow&gt;div {
  display: none !important;
}

.booklet-container.booklet .b-arrow {
  text-indent: 0;
  font-size: 2em;
  font-weight: bold;
  color: white;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
}

.booklet-container.booklet .b-arrow::after{
  display: none !important;
  top: 40%;
  position: absolute;
  left: -30%;
  width: 30px;
  background-color: grey;
  line-height: 100px;
  content: "navigate_next";
  text-align: center;
}

.booklet-container.booklet .b-arrow-prev::after {
  content: "navigate_before";
  right: -30%;
  left: auto;
}
.booklet-container.booklet .b-page {
  box-shadow: -1px 2px 10px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: -1px 2px 10px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: -1px 2px 10px rgba(0, 0, 0, 0.12);
  background: white;
}

.booklet-container.booklet .b-wrap&gt;div {
  height: 100%;
  margin: 0 !important;
}

.booklet-container.booklet .mdl-shadow--2dp {
  border: none;
}

.booklet-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0, 0.8);
  z-index: 100;
  height: 100%;
  width: 100%;
  overflow: scroll;
}

.booklet-lightbox .close,
.booklet-lightbox .prev,
.booklet-lightbox .next {
  display: block;
  background-color: gray;
  color: white;
  z-index: 10;
  font-size: 2.5em;
  cursor: pointer;
  position: fixed;
}

.booklet-lightbox .prev,
.booklet-lightbox .next {
  line-height: 100px;
  top: 50%;
}
.booklet-lightbox .prev{
  left: 15px;
}
.booklet-lightbox .next {
  right: 15px;
}

.booklet-lightbox .close {
  top: 15px;
  right: 15px;
}

.booklet-lightbox .container{
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px 0;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  min-height: calc(100% - 30px);
}

.booklet-lightbox .container canvas {
  max-width: 100%;
}

.booklet-lightbox .slider {
  position: fixed;
  top: 15px;
  left: 0;
  color: white;
  width: 100%;
  z-index: 9;
}

.booklet-lightbox .slider&gt;div {
  background-color: gray;
  margin: 0 auto;
  max-width: 100%;
  display: table;
  padding: 0 5px;
}

.booklet-lightbox .slider input{
  width: 250px;
  max-width: 100%;
  cursor: pointer;
}

.booklet-lightbox  .material-icons {
  line-height: 40px;
  cursor: pointer;
}

.booklet-open-lightbox {
  background-color: rgba(0,0,0, 0.8);
  color: white;
  display: block;
  font-size: 1.7em;
  height: auto;
  line-height: normal;
  margin: 0 auto;
  padding: 15px 35px;
  position: relative;
  text-transform: none;
  top:44%;
  z-index: 100;
}

.booklet-open-lightbox:hover {
  background-color: rgba(0,0,0, 0.7);
}
</pre></body></html>