:root {
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

.light {
  font-family: var(--font);
}
.regular {
  font-family: var(--font);
  font-weight: normal;
}
.medium {
  font-family: var(--font);
  font-weight: 600;
}
.bold {
  font-family: var(--font);
  font-weight: bold;
}

.fz12 {
  font-size: 12px;
  line-height: 20px;
}

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

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

.fz18 {
  font-size: 18px;
  line-height: 26px;
}

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

.fz24 {
  font-size: 24px;
  line-height: 30px;
}

.fz28 {
  font-size: 28px;
  line-height: 34px;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.taj {
  text-align: justify;
}

.ttu {
  text-transform: uppercase;
}

.ttc {
  text-transform: capitalize;
}

.tdn {
  text-decoration: none;
}

.h1 {
  font-family: var(--font);
  font-size: 3rem;
}
.h2 {
  font-family: var(--font);
  font-size: 2rem;
}
.h3 {
  font-family: var(--font);
  font-size: 1.5rem;
}
.h4 {
  font-family: var(--font);
  font-size: 1.25rem;
}
.h5 {
  font-family: var(--font);
  font-size: 1rem;
}
.h6 {
  font-family: var(--font);
  font-size: 0.875rem;
}

.truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nowrap {
  white-space: nowrap;
}
