.row, .row--reverse, .row--column, .row--column-reverse {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 0;
  margin: auto;
  height: 100%;
  max-height: 100%;
  align-items: stretch;
}

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

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

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

@media (max-width: 375px) {
  .row {
    margin: 0 -1rem;
    max-width: calc(100% + (2 * 1rem));
  }
}

@media only screen and (min-width: 568px) {
  .row {
    margin: 0 -1rem;
    max-width: calc(100% + (2 * 1rem));
  }
}

@media only screen and (min-width: 768px) {
  .row {
    margin: 0 -1.6rem;
    max-width: calc(100% + (2 * 1.6rem));
  }
}

@media only screen and (min-width: 1024px) {
  .row {
    margin: 0 -1.6rem;
    max-width: calc(100% + (2 * 1.6rem));
  }
}

@media only screen and (min-width: 1280px) {
  .row {
    margin: 0 -1.6rem;
    max-width: calc(100% + (2 * 1.6rem));
  }
}

/*# sourceMappingURL=row.css.map */
