$spaceamounts: (0, 1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 15, 16, 18, 20, 100);

@each $space in $spaceamounts {
  .f-#{$space} {
    font-size: #{$space}px !important;
  }
}

@each $space in $spaceamounts {
  .lh-#{$space} {
    line-height: #{$space}rem !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px !important;
}

.h1 {
  font-size: 2em;
  font-weight: bold;
}

.h2 {
  font-size: 1.5em;
  font-weight: bold;
}

.h3 {
  font-size: 1.17em;
  font-weight: bold;
}

.h4 {
  font-size: 1em;
  font-weight: bold;
}

.h5 {
  font-size: 0.83em;
  font-weight: bold;
}

.h6 {
  font-size: 0.75em;
  font-weight: bold;
}

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

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

.font-bold {
  font-weight: bold !important;
}

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

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

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline !important;
}

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

.text-danger {
  color: #ea6569;
}

.text-warning {
  color: #e6a23c;
}

.text-primary {
  color: $primary;
}

.text-white {
  color: white !important;
}

.text-success {
  color: #67c23a;
}

.text-green {
  color: #12c270;
}

.text-muted {
  color: #6c757d;
}
