.coast-row {
  display: flex;
  flex-wrap: wrap;

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

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

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

  &.coast-justify-space-around {
    justify-content: space-around;
  }

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