/**
 * Folha A4 branca no centro do palco.
 * Por que existe: a foto é um canvas paginado; aqui é HTML editável, sem kix-canvas.
 */
.tf-docs-folha {
  width: min(100%, var(--docs-folha-w));
  min-height: var(--docs-folha-h);
  margin: 0 auto;
  padding: 96px;
  background: var(--docs-paper);
  box-shadow:
    0 1px 2px rgba(60, 64, 67, 0.3),
    0 2px 6px 2px rgba(60, 64, 67, 0.15);
  outline: 0;
  font: 400 11pt/1.5 'Roboto', 'Arial', sans-serif;
  color: #000;
  cursor: text;
}

.tf-docs-folha:empty::before {
  content: '';
}

.tf-docs-folha h1 {
  margin: 0 0 12px;
  font: 700 20pt/1.3 'Roboto', sans-serif;
}

.tf-docs-folha h2 {
  margin: 18px 0 8px;
  font: 500 14pt/1.3 'Roboto', sans-serif;
}

.tf-docs-folha p {
  margin: 0 0 10px;
}

.tf-docs-folha ul {
  margin: 0 0 10px;
  padding-left: 1.4em;
}

.tf-docs-caret {
  display: inline-block;
  width: 2px;
  height: 18px;
  margin: 0;
  background: #000;
  animation: tf-docs-pisca 1.05s step-end infinite;
  vertical-align: text-top;
}

.tf-docs-folha:focus .tf-docs-caret,
.tf-docs-folha:not(.is-blank) .tf-docs-caret {
  display: none;
}

@keyframes tf-docs-pisca {
  50% {
    opacity: 0;
  }
}
