/* Need to check with designer */
/* Need to check with designer */
:host {
  font-family: var(--fw-font-family, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

:host {
  display: block;
}

.progress-content {
  margin-top: 9px;
  display: flex;
  flex-direction: row;
}
.progress-content .progress-content-icon {
  height: 26px;
  width: 26px;
}
.progress-content .progress-content-file {
  display: flex;
  flex-direction: row;
  padding-left: 4px;
  box-sizing: border-box;
  width: 258px;
  flex-wrap: wrap;
}
.progress-content .progress-content-file .progress-content-file-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #12344d;
  width: calc(100% - 50px);
}
.progress-content .progress-content-file .progress-content-file-percentage {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 10px;
  line-height: 20px;
  color: #92a2b1;
  width: 50px;
  text-align: right;
}
.progress-content .progress-content-file .progress-content-file-percentage fw-icon {
  cursor: pointer;
}
.progress-content .progress-content-file .progress-content-progress-bar {
  position: relative;
  height: 4px;
  width: 100%;
  background-color: #cfd7df;
  border-radius: 8px;
  margin-top: 4px;
}
.progress-content .progress-content-file .progress-content-progress-bar-fill {
  height: 4px;
  border-radius: 4px;
  background-color: #2c5cc5;
}
.progress-content .progress-content-file .progress-content-error {
  font-size: 12px;
  padding: 2px;
  color: #d72d30;
}