@use '../../../../mx-core/src/base/typography';

.mx-progress-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;

  &__text {
    @extend .gl-title-md;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
  }

  &__status-icon {
    width: 20px;
    height: 20px;
  }

  &__progress-container {
    width: 100%;
    height: 16px;
  }

  &__fill {
    height: 100%;
  }

  &__percentage {
    @extend .gl-body-md;
  }

  &__error-message {
    @extend .gl-body-md;
  }
}
