@keyframes infinite-load {
  0% {
    width: 20%;
    margin-left: -20%;
  }
  /* 50% {
    width: 50%;
    margin-left: 20%;
  } */
  100% {
    width: 40%;
    margin-left: 100%;
  }
}

.it-progress-wrapper {
  display: inline-block;
  width: 100%;
}

.it-progress-text {
  display: inline-block;
}

.it-progress-bar {
  @apply bg-neutral-300;
  border-radius: 4px;
  width: 100%;

  &--infinite {
    overflow: hidden;

    .it-progress-line {
      animation: infinite-load 1.15s ease-in-out infinite;
    }
  }
}

.it-progress-line {
  @apply bg-primary-500;
  transition: all 0.2s ease-out;
  border-radius: 4px;
  height: 100%;
  position: relative;
  max-width: 100%;
}

.it-progress-tooltip {
  @apply rounded text-black;
  position: absolute;
  right: 0;
  transform: translate(50%, 0);
  z-index: 10;
  padding: 8px;
  box-shadow: @popup-shadow;
  width: max-content;
  font-size: 13px;
  line-height: 1;
  background-color: #fff;
  word-wrap: break-word;

  &--top {
    margin-bottom: 12px;
    bottom: 100%;
  }

  &--bottom {
    margin-top: 12px;
    top: 100%;
  }
}
