@import '../../app.less';

.progress {
  background: @cornflower_bg;
  width: 100%;
  height: 14px;
  overflow: hidden;

  .progress-item {
    height: 100%;
    background: @cornflower;
    transition: all 0.3s;
  }
}

.progress.basic {
  height: 14px;
}

.progress.small {
  height: 8px;
}

.progress.basic.radius {
  border-radius: 7px;
}

.progress.small.radius {
  border-radius: 4px;
}


.progress.theme {
  background: #8897A8;

  .progress-item {
    background: #217DFF;
  }
}