/* -----------------------------------------------
Utils: Text
----------------------------------------------- */

// Text Alignment
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

// Text Color
.text-danger {
  color: #f04437;
}

.text-info {
  color: #016597;
}

.text-light {
  color: #fff;
}

.text-muted {
  color: #6c757d;
}
.text-primary {
  color: #00abf7;
}

.text-success {
  color: #56be43;
}

.text-warning {
  color: #fc751a;
}

// Font
.font-monospace {
  font-family: monospace;
}
