@import '../../../assets/scss/utils/variables';

.hawk-progress-bar {
  progress {
    width: 100%;
    background-color: #f3f3f3;
    border: 0;
    height: 8px;
    border-radius: 9px;
    &::-webkit-progress-bar {
      background-color: #f3f3f3;
      border-radius: 9px;
    }
    &::-webkit-progress-value {
      background: $blue-1;
      border-radius: 9px;
    }
    &::-moz-progress-bar {
      background: $blue-1;
      border-radius: 9px;
    }
    &.danger {
      &::-webkit-progress-value {
        background: $red-1;
        border-radius: 9px;
      }
      &::-moz-progress-bar {
        background: $red-1;
        border-radius: 9px;
      }
    }
    &.warning {
      &::-webkit-progress-value {
        background: $yellow-1;
        border-radius: 9px;
      }
      &::-moz-progress-bar {
        background: $yellow-1;
        border-radius: 9px;
      }
    }
    &.success {
      &::-webkit-progress-value {
        background: $green-2;
        border-radius: 9px;
      }
      &::-moz-progress-bar {
        background: $green-2;
        border-radius: 9px;
      }
    }
  }
  &__content {
    display: flex;
    justify-content: space-between;
    span {
      font-size: 14px;
      color: $blue-1;
      text-transform: capitalize;
      margin-top: 5px;
    }
  }
}
