/* Countdown timer */

.countdown>*:before {
    position: relative;
    content: "0\a 1\a 2\a 3\a 4\a 5\a 6\a 7\a 8\a 9\a";
    white-space: pre;
    top: calc(var(--value) * -1em);
    text-align: center;
    transition: all 0.75s cubic-bezier(1,0,0,1);
  }
  
  .countdown>*{
    height: 1em;
    display: inline-block;
    overflow-y: hidden;
  }
  
  .countdown {
    font-family: monospace;
    padding: 1.5rem;
    background:#B41F21;
    border-radius: 1rem;
    color: white;
    line-height: 1em;
    display:inline-flex;
  }