// UTILITY CLASSES
// ---------------

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

// Quick floats

.pull-right {
  float: right;
}
.pull-left {
  float: left;
}

.object-left {
  float: left;
  clear: left;
}

.object-right {
  float: right;
  clear: right;
}

.object-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.embed-inline-left {
  float: left;
}

.embed-inline-right {
  float: right;
}

.block {
  .left {
    width: 48%;
    float: left;
    clear: left;
  }
  .right {
    width: 48%;
    float: right;
    clear: right;
  }
}

.button-left {
  float: left;
}

.button-right {
  float: right;
}

.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.break {
  clear: both;
}

.spamfilter {
  display: none;
}
