.shipber-layout-box {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 16px;
  &.row {
    > *:not(:last-child) {
      margin-right: 8px;
      margin-left: 0;
    }
  }

  &.column {
    > *:not(:last-child) {
      margin-bottom: 8px;
      margin-top: 0;
    }
  }

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

    .left,
    .right {
      display: flex;
      align-items: center;

      > * {
        margin-left: 0;
      }

      > *:not(:last-child) {
        margin-right: 8px;
      }
    }

    .left {
      flex: 1 1 auto;
    }

    .right {
      flex: 0 0 auto;
    }
  }

  &.right {
    width: 100%;
    display: block;

    .float-r {
      float: right;
    }
  }

  &:last-child {
    padding-bottom: 0;
  }
}
