.wrapper {
  width: 100%;
  overflow: hidden;
}

.container {
  display: flex;
  width: calc(100% + 30px);
  margin: 10px -15px 0;
  overflow: hidden;

  &.canWrap {
    flex-wrap: wrap;
  }

  &.alignCenter {
    justify-content: space-evenly;
  }

  &.alignSides {
    justify-content: space-between;
  }

  &.alignLeft {
    justify-content: flex-start;
  }

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

  &.alignColumn {
    display: block;
  }
}

// Margins for LabelValue children
.container > div {
  margin: 0 15px 10px;
}
