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

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

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

.txt-align-end {
  text-align: end;
}

.txt-white {
  color: var(--white);
}

.txt-black {
  color: var(--black);
}

.txt-danger {
  color: var(--danger);
}

.txt-secondary {
  color: var(--secondary);
}

.txt-success {
  color: var(--success);
}

.txt-warning {
  color: var(--warning);
}

.txt-primary {
  color: var(--primary);
}

.txt-info {
  color: var(--info);
}

.txt-dark {
  color: var(--text-dark);
}

.txt-dark-light {
  color: var(--dark-light);
}

.bold {
  font-weight: bold;
}

.bold500 {
  font-weight: 500;
}

.bold400 {
  font-weight: 400;
}

.hover:hover {
  color: var(--primary);
}

.txt-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.txt-capitalize {
  text-transform: capitalize;
}

.txt-uppercase {
  text-transform: uppercase;
}

.txt-preline {
  white-space: pre-line;
}
