.centroid {
  text-align: center;

  &:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }

  .child {
    display: inline-block;
    vertical-align: middle;
    padding: 3px;
  }
}

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

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

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

.hidden {
  visibility: hidden !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.float-right {
  float: right !important;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 70%;
  white-space: nowrap;
  cursor: pointer;
}

.ellipsis:hover {
  width: 100%;
}

.pointer {
  cursor: pointer !important;
}

.no-margin {
  margin:0px !important;
}

.link-style {
  padding: 10px;
  cursor: pointer;
  color: #2e89df;
}