.pdf-textLayer, .pdf-slide-progress {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0; }

/* CSS classes used by TextLayerBuilder to style the text layer divs */
/* This stuff is important! Otherwise when you select the text,
   the text in the divs will show up! */
::selection {
  background: rgba(0, 0, 255, 0.3); }

::-moz-selection {
  background: rgba(0, 0, 255, 0.3); }

.pdf-textLayer {
  color: #000;
  font-family: sans-serif;
  overflow: hidden; }

.pdf-textLayer > div {
  color: transparent;
  position: absolute;
  line-height: 1;
  white-space: pre;
  cursor: text;
  /* Allow absolute positioning of the canvas and textLayer in the page. They
     will be the same size and will be placed on top of each other. */
  /* CSS classes used by TextLayerBuilder to style the text layer divs */
  /* This stuff is important! Otherwise when you select the text,
     the text in the divs will show up! */
  /* */
  /* your style */ }
  .pdf-textLayer > div body {
    font-family: arial, verdana, sans-serif; }
  .pdf-textLayer > div .pdfPage {
    position: relative;
    overflow: visible;
    border: 1px solid #000000; }
  .pdf-textLayer > div .pdf-page {
    position: relative; }
  .pdf-textLayer > div .pdfPage > canvas {
    position: absolute;
    top: 0;
    left: 0; }
  .pdf-textLayer > div ::selection {
    background: rgba(0, 0, 255, 0.3); }
  .pdf-textLayer > div ::-moz-selection {
    background: rgba(0, 0, 255, 0.3); }
  .pdf-textLayer > div .pdf-textLayer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #000;
    font-family: sans-serif;
    overflow: hidden; }
  .pdf-textLayer > div .pdf-textLayer > div {
    color: transparent;
    position: absolute;
    line-height: 1;
    white-space: pre;
    cursor: text; }
  .pdf-textLayer > div .pdf-annotationLayer a {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%; }
  .pdf-textLayer > div .pdf-annotationLayer a:hover {
    opacity: 0.2;
    background: #ff0;
    box-shadow: 0 2px 10px #ff0; }
  .pdf-textLayer > div .pdf-canvas {
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: width 0.3s ease-in;
    -moz-transition: width 0.3s ease-in;
    -o-transition: width 0.3s ease-in;
    transition: width 0.3s ease-in; }
  .pdf-textLayer > div .pdf-slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .pdf-textLayer > div .pdf-slide-progress-bar {
    width: 0;
    height: 3px;
    background-color: #44a4dd;
    -webkit-transition: width 0.05s ease-out;
    -moz-transition: width 0.05s ease-out;
    -o-transition: width 0.05s ease-out;
    transition: width 0.05s ease-out; }

.pdf-annotationLayer a {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%; }

.pdf-annotationLayer a:hover {
  opacity: 0.2;
  background: #ff0;
  box-shadow: 0 2px 10px #ff0; }

.pdf-canvas {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: width 0.3s ease-in;
  -moz-transition: width 0.3s ease-in;
  -o-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in; }

/* progress bar */
.pdf-slide-progress {
  height: 3px; }

.pdf-slide-progress-bar {
  width: 0;
  height: 8px;
  background-color: #44a4dd;
  -webkit-transition: width 0.05s linear;
  -moz-transition: width 0.05s linear;
  -o-transition: width 0.05s linear;
  transition: width 0.05s linear; }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.pdf-loading-hidden {
  display: none; }

.pdf-loading {
  margin-top: -1rem;
  margin-left: -1rem;
  border: 1px solid #797673;
  border-radius: 51%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  -webkit-animation: 1s linear infinite spin;
  animation: 1s linear infinite spin; }

.pdf-loading::before {
  display: block;
  position: absolute;
  width: 50%;
  height: 50%;
  content: "";
  background-color: #fff; }

/*# sourceMappingURL=pdf-slide.css.map */
