/* font weight */

.fw-300 {
    font-weight: 300 !important;
}

.fw-350 {
    font-weight: 350 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-700 {
    font-weight: 700 !important;
}



/* font size */

.fs-12px {
 font-size: 12px;
}

.fs-14px {
 font-size: 14px;
}

.fs-16px {
    font-size: 16px;
}

.fs-18px {
    font-size: 18px;
}

.fs-24px {
    font-size: 24px;
}

.fs-30px {
    font-size: 30px;
}

.fs-36px {
    font-size: 36px;
}



/* line height */

.lh-14px {
    line-height: 14px;
}

.lh-18px {
    line-height: 18px;
}

.lh-20px {
    line-height: 20px;
}

.lh-24px {
    line-height: 24px;
}

.lh-28px {
    line-height: 28px;
}

.lh-32px {
    line-height: 32px;
}

.lh-38px {
    line-height: 38px;
}

.lh-44px {
    line-height: 44px;
}



/* letter spacing */

.letter-spacing-n-small {
    letter-spacing: -0.02em;
}



/* Font classes */

.text-small-light {
    font-size: 12px;
    font-weight: 350;
    line-height: 18px;
    color: var(--gray-600);
}

.text-small {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--gray-500);
}

.text-normal-lighter {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-600);
}

.text-small-semibold-lighter {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--gray-600);
}

.text-small-semibold {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: var(--gray-700);
}

.text-normal {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray-900);
}

.text-normal-thin {
    font-size: 16px;
    font-weight: 350;
    line-height: 24px;
    color: var(--gray-900);
}

.text-normal-bolder {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: var(--gray-900);
}

.text-title-larger {
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: var(--gray-900);
}

.text-title-large {
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: var(--gray-900);
}

.text-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-900);
}

.text-title-modal {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: var(--gray-900);
}

.text-title-small {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-900);
}



/* alignment */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-start {
    text-align: start;
}

.text-left {
    text-align: left;
}



/* text utils */

.ellipsis-one-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-decoration-none {
    text-decoration: none;
}
