@import "index";

.fct-horizontal-layout {
  .display-flex();

  .direction-horizontal();

  .justify-content(flex-start);

  .align-items(flex-start);

  .flex-wrap();

  &._stretch {
    .align-items(stretch);
  }
  &._middle {
    .align-items(center);
  }
  &._bottom {
    .align-items(flex-end);
  }
  > * {
    position: relative;
    .flex-no-shrink();
  }
}
