:import {
  -st-from: '../../../Foundation/stylable/colors.st.css';
  -st-named: B10;
}

:import {
  -st-from: '../../../Foundation/stylable/typography.st.css';
  -st-named: text-small-thin, text-tiny-thin;
}

@st-import [
  --wds-field-set-label-font-line-height-tiny,
  --wds-field-set-label-font-line-height-small,
] from "@wix/design-system-tokens/all.st.css";

.root {
  -st-states: labelSize(enum(tiny, small));
  display: inline-block;
  color: value(B10);
}

.root:labelSize(small) {
  -st-mixin: text-small-thin;
  font-size: 18px;
  line-height: var(--wds-field-set-label-font-line-height-small, 18px);
}

.root:labelSize(tiny) {
  -st-mixin: text-tiny-thin;
  font-size: 18px;
  line-height: var(--wds-field-set-label-font-line-height-tiny, 15px);
  margin-top: -1px;
}

/* st-namespace-reference="../../../../../src/FieldSet/components/Asterisk/Asterisk.st.css" */