@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600&display=swap");
.size-1 {
  font-size: 12px;
  line-height: 20px;
}

.size-2 {
  font-size: 14px;
  line-height: 22px;
}

.size-3 {
  font-size: 16px;
  line-height: 24px;
}

.size-4 {
  font-size: 20px;
  line-height: 28px;
}

.size-5 {
  font-size: 24px;
  line-height: 32px;
}

.size-6 {
  font-size: 30px;
  line-height: 38px;
}

.size-7 {
  font-size: 38px;
  line-height: 46px;
}

.size-8 {
  font-size: 46px;
  line-height: 54px;
}

.size-9 {
  font-size: 56px;
  line-height: 64px;
}

.weight-regular {
  font-weight: 400;
}

.weight-semibold {
  font-weight: 500;
}

/**
 * Generator
 */
.input-size-large {
  height: 40px;
}

.input-size-medium {
  height: 32px;
}

.input-size-small {
  height: 24px;
}

.resize-none textarea {
  resize: none;
}

.resize-vertical textarea {
  resize: vertical;
}

.resize-auto textarea {
  height: auto;
  resize: none;
}

.textarea-size-large {
  padding: 4px 0 0 4px;
  min-height: 40px;
}
.textarea-size-large .bcm-input-element {
  min-height: calc((40px - 8px) + 2px);
}
.textarea-size-large .input-clear-button {
  height: calc( 40px - 16px );
  top: 8px;
  padding: 0;
  margin-right: 8px;
}

.textarea-size-medium {
  padding: 4px 0 0 4px;
  min-height: 32px;
}
.textarea-size-medium .bcm-input-element {
  min-height: calc((32px - 8px) + 2px);
}
.textarea-size-medium .input-clear-button {
  height: calc( 32px - 16px );
  top: 8px;
  padding: 0;
  margin-right: 8px;
}

.textarea-size-small {
  padding: 0px 0 0 4px;
  min-height: 24px;
}
.textarea-size-small .bcm-input-element {
  min-height: calc((24px - 8px) + 2px);
}
.textarea-size-small .input-clear-button {
  height: calc( 24px - 16px );
  top: 8px;
  padding: 0;
  margin-right: 8px;
}

* {
  box-sizing: border-box;
}

.bcm-progress {
  --bcm-progress-color: var(--bcm-new-ds-color-blue-500);
  display: inline-block;
  min-width: 50px;
  width: 100%;
  max-width: 256px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: calc(14px + 8px);
  font-weight: 400;
}
.bcm-progress.full-width {
  width: 100%;
  max-width: 100%;
  min-width: auto;
}
.bcm-progress__line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  min-height: 8px;
}
.bcm-progress__line .value {
  margin-left: 8px;
  color: var(--bcm-new-ds-color-slate-500);
  min-width: 32px;
  font-size: 14px;
  min-height: calc(14px + 8px);
  font-weight: 500;
}
.bcm-progress__line-progress {
  width: 100%;
  flex: 1;
  height: 8px;
  border: 0 none;
  background: var(--bcm-new-ds-color-slate-200);
  appearance: none;
}
.bcm-progress__line-progress.small {
  height: 6px;
}
.bcm-progress__line-progress.line-rounded, .bcm-progress__line-progress.line-rounded::-webkit-progress-value {
  border-radius: 8px;
}
.bcm-progress__line-progress.line-rounded::-moz-progress-bar {
  border-radius: 8px;
}
.bcm-progress__line-progress.completed::-webkit-progress-value {
  background-color: var(--bcm-progress-color);
}
.bcm-progress__line-progress.completed::-moz-progress-bar {
  background-color: var(--bcm-progress-color);
}
.bcm-progress__line-progress.error::-webkit-progress-value {
  background-color: var(--bcm-new-ds-color-red-500);
}
.bcm-progress__line-progress.error::-moz-progress-bar {
  background-color: var(--bcm-new-ds-color-red-500);
}
.bcm-progress__line-progress.error .value {
  color: var(--bcm-new-ds-color-red-500);
}
.bcm-progress__line-progress::-webkit-progress-bar {
  background: transparent;
}
.bcm-progress__line-progress::-webkit-progress-value {
  background-color: var(--bcm-progress-color);
  transition: 0.3s;
}
.bcm-progress__line-progress::-moz-progress-bar {
  background-color: var(--bcm-progress-color);
  transition: 0.3s;
}
.bcm-progress__circle {
  position: relative;
}
.bcm-progress__circle bcm-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bcm-progress__circle text {
  fill: var(--bcm-new-ds-color-slate-500);
  font-size: 18px;
  line-height: calc(18px + 8px);
  font-weight: 500;
}
.bcm-progress__circle-circle {
  transition: 0.35s stroke-dashoffset, 0.1s stroke;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke: #F5F5F5;
  stroke-width: 6px;
  fill: transparent;
}
.bcm-progress__circle-circle.bar {
  stroke: var(--bcm-progress-color);
}
.bcm-progress__circle-circle.completed {
  stroke: var(--bcm-new-ds-color-emerald-500);
}
.bcm-progress__circle-circle.error {
  stroke: var(--bcm-new-ds-color-red-500);
}