.ls-progress-bar {
  position: sticky;
  width: 100%;
  height: 0.5rem;
  overflow: hidden;
  top: 0;
  z-index: 1;
  border-radius: 3rem;

  &__progress {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(45deg, $color-primary, $color-secondary);
    left: -100%;
    animation: table-load 1s linear infinite;
  }

  @keyframes table-load {

    0% {
      left: -100%;
    }

    100% {
      left: 100%;
    }
  }
}
