.pdf__ui__button, .pdf__ui__select, .pdf__ui__input {
  padding: .5rem;
}

.pdf__ui__button {
  cursor: pointer;
}

.pdf__ui__button--icon {
  text-align: center;
  vertical-align: middle;
  padding: .25rem;
}

.pdf__ui__icon {
  display: inline-block;
}

.pdf__ui__icon svg {
  width: 1rem;
  height: 1rem;
}

.pdf__ui__toolbar {
  z-index: 99;
  background-color: #fff;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: .25rem;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 1px #ccc;
}

.pdf__ui__toolbar__item__group {
  flex: 1;
}

.pdf__ui__form__field {
  padding: .5rem;
}

.pdf__ui__dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pdf__ui__dialog__header {
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.pdf__ui__dialog__header__title {
  flex: 1;
}

.pdf__ui__dialog__content {
  padding: 1rem 0;
}

.pdf__ui__dialog__footer {
  padding: 1rem;
}

.pdf__document {
  position: relative;
}

.pdf__drawable canvas {
  width: 100%;
  height: 100%;
}

.pdf__page__annotation {
  pointer-events: all;
  box-sizing: border-box;
  position: absolute;
}

.pdf__page__annotation__canvas--ink, .pdf__page__annotation__canvas--polygon, .pdf__page__annotation__canvas--polyline, .pdf__page__annotation__canvas--line {
  background: none;
  width: 100%;
  height: 100%;
}

.pdf__page__annotation--link {
  user-select: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.pdf__page__annotation--link a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.pdf__page__annotation--link a:hover {
  background-color: #ffff0040;
}

.pdf__page__annotation__highlight {
  opacity: .5;
  background-color: #ff0;
  width: 100%;
  height: 100%;
}

.pdf__page__annotation--text {
  user-select: none;
  color: #0000;
  position: absolute;
}

.pdf__page__annotation--freetext span {
  height: 100%;
  line-height: 1;
  display: block;
}

.pdf__page__annotation[data-subtype="20"] {
  position: absolute;
}

.pdf__form__field {
  width: 100%;
  height: 100%;
}

.pdf__form__field input, .pdf__form__field select, .pdf__form__field textarea {
  background-color: #0000;
  border: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__form__field textarea {
  resize: none;
}

.pdf__form__field button {
  width: 100%;
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__page__annotation__stamp {
  background: none;
}

.pdf__page__annotation--popup {
  user-select: none;
  display: none;
  position: absolute;
}

.pdf__page__annotation__circle {
  border: 1px solid #000;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.pdf__page__annotation__square {
  border: 1px solid #000;
  width: 100%;
  height: 100%;
}

.pdf__page__annotation__squiggly {
  border-bottom: 1px solid #000;
}

.pdf__page__annotation__underline {
  border-bottom: 1px solid #000;
  width: 100%;
  height: 100%;
}

.pdf__page__annotation__strikeout {
  background: linear-gradient(#0000 calc(50% - 1px), #000 50%, #0000 50%);
  width: 100%;
  height: 100%;
}

.pdf__page__annotation--editor {
  cursor: move;
  box-shadow: 0 0 1px #000;
}

.pdf__page__annotation__mover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__page__annotation__resizer {
  position: absolute;
}

.pdf__page__annotation__resizer--topleft {
  top: 0;
  left: 0;
}

.pdf__page__annotation__resizer--topright {
  top: 0;
  right: 0;
}

.pdf__page__annotation__resizer--bottomright {
  bottom: 0;
  right: 0;
}

.pdf__page__annotation__resizer--bottomleft {
  bottom: 0;
  left: 0;
}

.pdf__page__annotations--editor {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pdf__page__annotations--editor.pdf__page__annotations--droptarget {
  box-shadow: 0 0 1px #000;
}

.pdf__editor__canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__editor__canvas--inactive {
  pointer-events: none;
}

.pdf__editor__panel {
  height: 80%;
  position: fixed;
  top: 10%;
  left: 0;
}

.pdf__editor__panel__tools {
  flex-direction: column;
  display: flex;
}

.pdf__thumbnails {
  position: relative;
}

.pdf__thumbnails__grid {
  background-color: #fff;
  display: grid;
  position: relative;
}

.pdf__thumbnail {
  text-align: center;
  cursor: pointer;
  padding: .5rem;
  position: relative;
}

.pdf__thumbnail img {
  border: 1px solid #000;
  display: inline-block;
}

.pdf__thumbnail:hover img, .pdf__thumbnail.pdf__thumbnail--current img {
  box-shadow: 0 0 1px #000;
}

.pdf__thumbnail__checkbox {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.pdf__thumbnail span {
  width: 100%;
  display: block;
}

.pdf__thumbnails__footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.pdf__editor__extractor {
  background-color: #fff;
  flex-direction: column;
  width: 80%;
  height: 80%;
  display: flex;
  position: fixed;
  top: 10%;
  left: 10%;
  box-shadow: 0 0 .25rem gray;
}

.pdf__editor__extractor .pdf__thumbnails {
  flex: 1;
}

.pdf__editor__extractor__footer {
  border-top: 1px solid #ececec;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  display: flex;
}

.pdf__editor__stamps {
  background-color: #fff;
  flex-direction: column;
  width: 10rem;
  height: 80%;
  display: flex;
  position: fixed;
  top: 10%;
  left: 0;
  box-shadow: 0 0 1px #000;
}

.pdf__editor__stamps__header {
  border-bottom: 1px solid gray;
  padding: .5rem;
}

.pdf__editor__stamps__list {
  flex: 1;
  padding: .5rem;
  overflow-y: scroll;
}

.pdf__editor__stamp {
  cursor: move;
  border: 1px solid gray;
}

.pdf__editor__stamp canvas {
  width: 100%;
}

.pdf__editor__stamp.pdf__editro__stamp--dragging {
  opacity: 0;
}

.pdf__editor__stamp__canvas, .pdf__page__layer--canvas {
  width: 100%;
  height: 100%;
}

.pdf__page__layer--text {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__text__rect {
  color: #0000;
  cursor: text;
  pointer-events: auto;
  line-height: 1;
  position: absolute;
  overflow: hidden;
}

.pdf__text__rect__content {
  transform-origin: 0 0;
  display: inline-block;
}

.pdf__text__rect__content::selection {
  color: #0000;
  background-color: #0000ff26;
}

.pdf__page__layer--annotations {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__page__layer--editor, .pdf__page__layer--editor .pdf__editor__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pdf__page__layer--decorations {
  pointer-events: none;
}

.pdf__decoration__rect {
  position: absolute;
}

.pdf__decoration__rect--highlight {
  opacity: .5;
  background-color: #00f;
}

.pdf__toolbar__item__group {
  display: flex;
}

.pdf__toolbar__item__group--left {
  justify-content: left;
}

.pdf__toolbar__item__group--center {
  justify-content: center;
}

.pdf__toolbar__item__group--right {
  justify-content: right;
}

.pdf__metadata {
  background-color: #fff;
}

.pdf__metadata table {
  width: 100%;
}

.pdf__metadata table td {
  padding: .5rem;
}

.pdf__metadata td:last-child {
  font-weight: bold;
}

.pdf__bookmarks {
  background-color: #fff;
}

.pdf__bookmarks ol {
  padding: .5rem 1rem;
  list-style: none;
}

.pdf__bookmarks__entry__header {
  cursor: pointer;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.pdf__bookmarks__entry__header:hover {
  color: #fff;
  background-color: #00000080;
}

.pdf__bookmarks__entry .title {
  flex: 1;
  display: inline-block;
}

.pdf__bookmarks__entry.pdf__bookmarks__entry--current span {
  font-weight: bold;
}

.pdf__search, .pdf__attachments {
  background-color: #fff;
}

.pdf__attachments td {
  padding: .5rem;
}

.pdf__pages {
  background-color: #f0f0f0;
  max-height: 100%;
}

.pdf__pages__begin, .pdf__pages__end {
  overflow: hidden;
}

.pdf__page {
  margin: 0 auto;
}

.pdf__page__content {
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}

.pdf__signatures {
  background-color: #fff;
}

.pdf__signatures td {
  padding: .5rem;
}

.pdf__downloader {
  background-color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pdf__downloader__message {
  flex: 1;
  padding: .5rem;
}

.pdf__downloader__action {
  padding: .5rem;
}

.pdf__printer {
  background-color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pdf__printer__message {
  flex: 1;
  padding: .5rem;
}

.pdf__printer__action {
  padding: .5rem;
}

.pdf__merger__toolbar {
  padding: 1rem;
  display: flex;
}

.pdf__merger__toolbar .pdf__toolbar__item__group--left {
  justify-content: left;
  display: flex;
}

.pdf__merger__toolbar .pdf__toolbar__item__group--center {
  justify-content: center;
  display: flex;
}

.pdf__merger__toolbar .pdf__toolbar__item__group--right {
  justify-content: right;
  display: flex;
}

.pdf__merger p {
  text-align: center;
  padding: 1rem;
}

.pdf__merger table {
  width: 100%;
  padding: .5rem;
}

.pdf__merger table td:last-child {
  text-align: right;
}
/*# sourceMappingURL=index.css.map */
