:root {
  --md-primary-fg-color:        #03a1ce;
  --md-primary-fg-color--light: #5fd2ff;
  --md-primary-fg-color--dark:  #00729d;

  --md-accent-fg-color:         #03d6b3;
  --md-accent-fg-color--light:  #64ffe5;
  --md-accent-fg-color--dark:   #00a483;
}

@keyframes tx-heart {
  0%, 40%, 80%, 100% {
    transform: scale(1);
  }
  20%, 60% {
    transform: scale(1.15);
  }
}

.tx-content__footer {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.tx-content__footer hr {
  display: inline-block;
  width: 40px;
  margin: 16px;
  vertical-align: middle;
  background-color: currentColor;
  border: none;
}

.tx-content__footer .tx-heart {
  animation: tx-heart 1000ms infinite;
}

/* This is applied globally because the first column usually consists of a field name that should not wrap around for the sake of readability  */
table > tbody > tr > td:nth-child(1) {
  white-space: nowrap;
}

.md-footer .md-footer-meta a.footer-link {
  color: var(--md-accent-fg-color--light);
}

.md-footer .md-footer-meta a.footer-link:hover {
  color: var(--md-accent-fg-color);
}
