// These classes are borrowed from bootstrap. Importing the file in which they're found in bootstrap has other, unwanted code.

// Alignment
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-vertical-align-middle {
  vertical-align: middle !important;
}

.text-vertical-align-bottom {
  vertical-align: bottom !important;
}

.text-vertical-align-top {
  vertical-align: top !important;
}

.text-nowrap {
  white-space: nowrap;
}

.text-pre {
  white-space: pre;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

// Transformation
.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text--large-line-height {
  line-height: 25px;
}

.text--medium-line-height {
    line-height: 20px;
}

//Highlight filter
.text--highlighted {
  font-weight: bold;
}

.text-break-word {
  word-break: break-word;
}

.text-default-line-height {
  line-height: initial !important;
}

.text-double-line-height {
  line-height: 2;
}