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

.text-decor {
  text-decoration: underline;
}

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

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


.parent::before,
.parent:after {
  clear: both;
  content: "";
  display: table;
  margin-top: -1px;
  height: 0;
}

.self-clear:after,
.self-clear:before {
  content: '';
  display: block;
  float: none;
  clear: both;
}


.align-middle {
  vertical-align: middle;
}


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

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

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

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

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

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

.align-bottom {
  vertical-align: bottom;
}

.align-top {
  vertical-align: top;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.inline-list li,
.inline-block {
  display: inline-block !important;
}

.block-display,
.block {
  display: block;
}


.pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

a {
  cursor: pointer;
}
