/**handles:styles-flex**/
/* flex */
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex--top {
  align-items: flex-start;
}
.flex--bottom {
  align-items: flex-end;
}
.flex--left {
  justify-content: flex-start;
}
.flex--right {
  justify-content: flex-end;
}
.flex--strech {
  flex: 1 1 auto;
}
.flex--inline {
  display: inline-flex;
}
.flex--mobile {
  display: flex;
}
@media (max-width: 999px) {
  .flex--no-mobile {
    display: block;
  }
}
.flex--column {
  flex-direction: column;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}/*# sourceMappingURL=flex.css.map */