.button-container {
  display: flex;
}
.button-container button {
	margin-bottom: 0;
}
.button-container button + button {
	margin-left 1rem;
}

/* Aligment */
.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .justify-content-start--mobile {
    justify-content: flex-start;
  }

  .justify-content-center--mobile {
    justify-content: center;
  }

  .justify-content-end--mobile {
    justify-content: flex-end;
  }

}

.body-container--default .dnd-section > .row-fluid > .span6:first-of-type .button-container {
  margin-right: 4rem;
}
.body-container--default .dnd-section > .row-fluid > .span6:last-of-type .button-container {
  margin-left: 4rem;
}