/* .heading() */
.text-overflow {
  display: inline-block;
}

.text-overflow-word {
  display: inline-flex;
}

.text-overflow {
  overflow: hidden;
  /* Make room for when animation "over shoots" */
  padding-top: 15%;
  margin-top: -15%;
}

.text-overflow-content {
  display: block;
}

[data-animate] .text-overflow-content {
  transform: translateY(105%);
}

the-app[show="true"] .animate .text-overflow-content,
the-app[show="true"] .active .text-overflow-content,
the-app[transition="true"] .animate .text-overflow-content,
the-app[transition="true"] .active .text-overflow-content,
the-menu .animate .text-overflow-content,
the-menu .active .text-overflow-content,
the-gallery .active .text-overflow-content {
  transition: transform 500ms var(--ani-delay, 0ms) var(--cb-over-shot);
  transform: translateY(0%);
}
