@progress-prefix-cls: ~"@{css-prefix}progress";
@primary-color: @color-brand-primary;
@success-color: @color-functional-success;
@subsidiary-color: @color-functional-pause;
@error-color: @color-functional-fail;

.@{progress-prefix-cls} {
  display: inline-block;

  width: 100%;
  &-vertical {
    height: 100%;
    width: auto;
  }

  font-size: @font-size-small;
  position: relative;

  &-outer {
    display: inline-block;
    width: 100%;
    margin-right: 0;
    padding-right: 0;

    .@{progress-prefix-cls}-show-info & {
      padding-right: 65px;
      margin-right: -65px;
    }
  }
  &-vertical &-outer {
    height: 100%;
    width: auto;
  }

  &-inner {
    display: inline-block;
    width: 100%;
    background-color: @gray-100;
    border-radius: 8px;
    vertical-align: middle;
    position: relative;
    &-text{
      display: inline-block;
      // vertical-align: middle;
      color: @color-functional-white;
      font-size: @font-size-small;
      margin: 0 6px;
    }
  }
  &-vertical &-inner {
    height: 100%;
    width: auto;

    & > *, &:after {
      display: inline-block;
      vertical-align: bottom;
    }

    &:after {
      content: '';
      height: 100%;
    }
  }

  &-bg {
    text-align: right;
    border-radius: 100px;
    background-color: @primary-color;
    transition: all @transition-time linear;
    position: relative;
    &:after{
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
    }
  }
  &-success-bg{
    border-radius: 100px;
    background-color: @success-color;
    transition: all @transition-time linear;
    position: absolute;
    top: 0;
    left: 0;
  }

  &-text {
    display: inline-block;
    margin-left: 10px;
    text-align: left;
    font-size: 14px;
    // vertical-align: middle;
    color: @color-complementary-4;
    .haloe-icon{
      font-size: 20px;
    }
  }

  &-active {
    .@{progress-prefix-cls}-bg:before {
      content: '';
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: @color-functional-white;
      border-radius: 10px;
      animation: haloe-progress-active 2s @ease-in-out infinite;
    }
  }

  &-vertical&-active{
    .@{progress-prefix-cls}-bg:before {
      top: auto;
      animation: haloe-progress-active-vertical 2s @ease-in-out infinite;
    }
  }

  &-wrong {
    .@{progress-prefix-cls}-bg {
      background-color: @error-color;
    }
    .@{progress-prefix-cls}-text {
      color: @error-color;
    }
  }

  &-success {
    .@{progress-prefix-cls}-bg {
      background-color: @success-color;
    }
    .@{progress-prefix-cls}-text {
      color: @success-color;
    }
  }
  &-status-text {
    color: @color-complementary-4;
    margin-left: 5px;
  }
}

@keyframes haloe-progress-active {
  0% {
    opacity: .3;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}

@keyframes haloe-progress-active-vertical {
  0% {
    opacity: .3;
    height: 0;
  }
  100% {
    opacity: 0;
    height: 100%;
  }
}
