
@keyframes progress-bar-stripes {
    from {
      background-position: 0.5rem 0;
    }
    to {
      background-position: 0 0;
    }
  }
  .progress {
    display: flex;
    height: 0.5rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: #EFF2F7;
    border-radius: 50rem;
    box-shadow: inset 0 0.1rem 0.1rem rgba(31, 45, 61, 0.1);
  }
  
  .progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #FFF;
    text-align: center;
    white-space: nowrap;
    background-color: #27327b;
    transition: width 0.6s ease;
  }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none;
    }
  }
  
  .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 0.5rem 0.5rem;
  }
  
  .progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes;
  }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      animation: none;
    }
  }
  

  /** custom **/

  .progress-wrapper {
    position: relative;
    padding-top: 1.5rem;
  }
  .progress-wrapper .progress {
    margin-bottom: 1rem;
  }
  
  .progress-inverse {
    background-color: inverse(#EFF2F7);
  }
  
  .progress-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 2px;
    padding: 0;
  }
  
  .progress-text {
    margin-bottom: 0;
  }
  
  .progress-lg {
    height: 1rem;
  }
  
  .progress-md {
    height: 0.75rem;
  }
  
  .progress-sm {
    height: 0.375rem;
  }
  
  .progress-xs {
    height: 0.125rem;
  }
  
  .progress-group {
    position: relative;
  }
  
  .progress-prepend-icon {
    position: absolute;
    transform: translateY(-50%);
    font-size: 20px;
    top: 50%;
  }
  .progress-prepend-icon:not(:first-child) {
    right: -17px;
  }
  .progress-prepend-icon:not(:last-child) {
    left: -17px;
  }
  
  .progress-tooltip {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    color: #FFF;
    padding: 0.25rem 0.375rem;
    line-height: 1;
    font-size: 0.7rem;
    position: relative;
    bottom: 8px;
    border-radius: 3px;
    margin-left: -15px;
  }
  .progress-tooltip:after {
    top: 100%;
    left: 10px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(51, 51, 51, 0);
    border-top-color: rgba(0, 0, 0, 0.8);
    border-width: 5px;
  }
  
  .progress-label {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    color: #3C4858;
  }
  
  .progress-percentage {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .progress-circle {
    width: 100px;
    height: 100px;
  }
  .progress-circle .progressbar-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #8492A6 !important;
  }
  .progress-circle [class^=display],
  .progress-circle .h1, .progress-circle .h2, .progress-circle .h3 {
    color: #3C4858 !important;
  }
  .progress-circle svg path {
    stroke-linecap: round;
  }
  .progress-circle.progress-sm {
    width: 60px;
    height: 60px;
  }
  .progress-circle.progress-sm .progressbar-text {
    font-size: 0.875rem;
  }
  .progress-circle.progress-lg {
    width: 140px;
    height: 140px;
  }
  .progress-circle.progress-lg .progressbar-text {
    font-size: 1.25rem;
  }