/* SIZE */
.text-xsmall { font-size: x-small; }
.text-small { font-size: small; }
.text-medium { font-size: medium; }
.text-large { font-size: large; }
.text-xlarge { font-size: x-large; }
.text-xxlarge { font-size: xx-large; }
.text-size-inherit { font-size: inherit; }

/* FONT */
.text-lighter { font-weight: lighter; }
.text-normal { font-weight: normal; }

/* DISPLAY */
.flex { display: flex; }
.inline-block { display: inline-block; }
.justify-between { justify-content: space-between; }
.w-100 { width: 100%; }

/* CORE */
.color-error { color: var(--red); }
.background-color-error { background-color: var(--red); }
.border-color-error { border-color: var(--red); }
