.flex {
  display: flex;
}
.f1 {
  flex: 1;
  flex-grow: 1;
}
.fw {
  flex-wrap: wrap;
}
.f-ss {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.f-sc {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.f-cs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.f-es {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.f-ce {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.f-cc {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.f-sb {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.f-cb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.f-css {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.f-csc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.f-ccs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.f-ccc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.f-csb {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.f-ccb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
