 .conditional {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .conditional.show { max-height: 80px; opacity: 1; }