.load-progress-bar-container {
  display: flex;
  align-items: center;
  gap: 4px;

  .progress-bar-price {
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #919191;

    &.focus {
      color: #6f9ee0;
    }
  }

  .progress-bar-line {
    height: 8px;
    width: 24px;
    border-radius: 2px;
    overflow: hidden;

    &.disable {
      background-color: rgb(145, 145, 145, 0.2);
    }

    &.low {
      background-color: rgb(229, 113, 113, 0.2);
    }

    &.medium {
      background-color: rgb(255, 183, 77, 0.2);
    }

    &.high {
      background-color: rgb(78, 183, 163, 0.2);
    }
  }
}
