.flex {
  height: 100%;
  display: flex;
  align-items: center;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.flex_end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_c_b {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shrink {
  flex-shrink: 0;
}

.flex_right {
  display: flex;
  justify-content: flex-end;
}/*# sourceMappingURL=flex.css.map */