:global {
  .refresh-count {
    opacity: 0;
    transition: height 0.5s;
    height: 0;
    background-color: rgba(23, 134, 236, 0.7);
    color: #fff;
    font-size: 15px;
    line-height: 35px;
    text-align: center;
  }

  .refresh-count-enter-active,
  .refresh-count-enter-done {
    height: 35px;
    opacity: 1;
  }

  .refresh-count-exit,
  .refresh-count-exit-active,
  .refresh-count-exit-done {
    height: 0;
    opacity: 1;
  }
}
