@use '../abstract/_all';
@use '../abstract/setup';

.progressbar {
  width: 100%;
  height: 8px;
  border-radius: setup.$obj-radius;
  background-color: setup.$c-middle-grey;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;

  .progressbar-status {
    min-width: 8px;
    height: 8px;
    border-radius: setup.$obj-radius;
    background-color: setup.$c-primary;
    transition: all 0.2s ease;
  }
}
