@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-chip {
  --bcm-chip-color: var(--bcm-new-ds-color-slate-700);
  --bcm-chip-color-hover: var(--bcm-new-ds-color-slate-700);
  --bcm-chip-color-focus: var(--bcm-new-ds-color-slate-700);
  --bcm-chip-color-active: var(--bcm-new-ds-color-slate-700);
  --bcm-chip-color-disabled: var(--bcm-new-ds-color-slate-300);
  --bcm-chip-background-color: var(--bcm-new-ds-color-slate-100);
  --bcm-chip-background-color-hover: var(--bcm-new-ds-color-slate-200);
  --bcm-chip-background-color-focus: var(--bcm-new-ds-color-slate-300);
  --bcm-chip-background-color-active: var(--bcm-new-ds-color-slate-400);
  --bcm-chip-background-color-disabled: var(--bcm-new-ds-color-slate-100);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: calc(14px + 8px);
  font-weight: 400;
  padding: 0 8px;
  gap: 4px;
  color: var(--bcm-chip-color);
  background-color: var(--bcm-chip-background-color);
  border-radius: 100px;
  transition: background-color 0.1s ease-in-out;
  outline: none;
}
.bcm-chip:not(.bcm-chip--disabled):hover {
  background-color: var(--bcm-chip-background-color-hover);
}
.bcm-chip:not(.bcm-chip--disabled):focus {
  background-color: var(--bcm-chip-background-color-focus);
  color: var(--bcm-chip-color-focus);
}
.bcm-chip:not(.bcm-chip--disabled):active {
  background-color: var(--bcm-chip-background-color-active);
  color: var(--bcm-chip-color-active);
}
.bcm-chip--disabled {
  color: var(--bcm-chip-color-disabled);
  background-color: var(--bcm-chip-background-color-disabled);
}
.bcm-chip--avatar {
  padding-left: 2px;
}
.bcm-chip__type-dismissable-icon:hover {
  cursor: pointer;
  color: var(--bcm-chip-color-active);
}
.bcm-chip__size-small {
  font-size: 10px;
  line-height: calc(10px + 8px);
}
.bcm-chip__size-small .bcm-avatar {
  width: 14px;
  height: 14px;
}
.bcm-chip__size-small .bcm-chip--selected-icon {
  width: 8px;
}
.bcm-chip__size-medium {
  font-size: 12px;
  line-height: calc(12px + 8px);
}
.bcm-chip__size-medium .bcm-avatar {
  width: 16px;
  height: 16px;
}
.bcm-chip__size-medium .bcm-chip--selected-icon {
  width: 10px;
}
.bcm-chip__size-large {
  font-size: 14px;
  line-height: calc(14px + 8px);
}
.bcm-chip__size-large .bcm-avatar {
  width: 18px;
  height: 18px;
}
.bcm-chip__size-large .bcm-chip--selected-icon {
  width: 12px;
}