.sweet-flex {
  display: flex;
  height: 100%;
  overflow: auto;
  .sf-item-fill {
    flex: 1;
  }
  .item-align-auto {
    align-self: auto
  }
  .item-align-start {
    align-self: flex-start
  }
  .item-align-end {
    align-self: flex-end
  }
  .item-align-center {
    align-self: center
  }
  .item-align-baseline {
    align-self: baseline
  }
  .item-align-stretch {
    align-self: stretch
  }
}

.sweet-flex-wrap {
  flex-wrap: wrap;
}

.sweet-justify-start {
  justify-content: flex-start;
}

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

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

.sweet-justify-between {
  justify-content: space-between;
}

.sweet-justify-around {
  justify-content: space-around;
}

.sweet-align-start {
  align-items: flex-start;
}

.sweet-align-end {
  align-items: flex-end;
}

.sweet-align-center {
  align-items: center;
}

.sweet-align-baseline {
  align-items: baseline;
}

.sweet-align-stretch {
  align-items: stretch;
}

.sweet-flex-row {
  flex-direction: row;
}

.sweet-flex-row-reverse {
  flex-direction: row-reverse;
}

.sweet-flex-column {
  flex-direction: column;
}

.sweet-flex-column-reverse {
  flex-direction: column-reverse;
}
