.display--none {
  display: none !important;
}

.display--inline {
  display: inline !important;
}

.display--inline-block {
  display: inline-block !important;
}

.display--block {
  display: block !important;
}

.display--flex {
  display: flex !important;
}

.display--inline-flex {
  display: inline-flex !important;
}

.display--table {
  display: table !important;
}

.display--align-items-center {
  align-items: center;
}
.display--align-items-start {
  align-items: flex-start;
}
.display--align-items-end {
  align-items: flex-end;
}

.display--justify-content-center {
  justify-content: center;
}
.display--justify-content-between {
  justify-content: space-between;
}
.display--justify-content-around {
  justify-content: space-around;
}
.display--justify-content-start {
  justify-content: flex-start;
}
.display--justify-content-end {
  justify-content: flex-end;
}


