@layer components {
  /*
   * Progress bar
   */
  
  .progress-bar-container {
    background-color: var(--color-grey-100);
    height: 0.375rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  
    @media (max-width: 639.98px) {
      height: 0.25rem;
    }
  
    .progress-bar {
      background-color: var(--color-green);
      height: 0.375rem;
      width: 0%;
  
      @media (max-width: 639.98px) {
        height: 0.25rem;
      }
    }
  }
}
