@keyframes here {
  from { opacity: 1 }
  to { opacity: 0.75 }
}

.here {
  .content-summary {
    .pilot.bold {
      background: var(--color7);
      color: var(--base3);
      border-radius: 0.25rem;
      animation-name: here;
      animation-duration: 1s;
      animation-iteration-count: infinite;
      animation-direction: alternate;
      animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
      padding: 0.25rem 0;
      margin: 0.25rem 0;
    }
  }
}
