.load-doc{
  &__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    @include font(normal, normal, rem(14px), 1.4, $color-dark-grey);
  }

  &__file{
    display: flex;
    align-items: center;
    width: calc(100% - 40px);
  }

  &__icon{
    flex: 0 0 36px;
    width: 30px;
    margin-left: -5px;
    margin-top: 3px;
  }

  &__text{
    //width: calc(100% - 36px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  &__progress{
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    border: solid 1px $color-light-grey;
    background: $color-sort-grey;
    position: relative;
  }

  &__progress-line{
    display: block;
    height: calc(100% + 2px);
    width: 0;
    border-radius: 4px;
    background: $color-purple;
    position: absolute;
    top: -1px;
    left: -1px;
  }

  &__progress-line.animate{width: calc(100% + 2px);}

  &_green &__progress-line{background: $color-green;}
  &_blue &__progress-line{background: $color-blue;}
}
