.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-start-center {
  align-items: center;
  justify-content: flex-start;
}
.flex-end-center {
  align-items: center;
  justify-content: flex-end;
}
.flex-center-center {
  align-items: center;
  justify-content: center;
}
.flex-center-start {
  align-items: flex-start;
  justify-content: center;
}
.flex-center-end {
  align-items: flex-end;
  justify-content: center;
}
.flex-space-between-center {
  justify-content: space-between;
  align-items: center;
}
.flex-space-between-start {
  justify-content: space-between;
  align-items: flex-start;
}
.flex-space-between-end {
  justify-content: space-between;
  align-items: flex-end;
}
.flex-space-around-center {
  justify-content: space-around;
  align-items: center;
}
.flex-space-around-start {
  justify-content: space-around;
  align-items: flex-start;
}
.flex-space-around-end {
  justify-content: space-around;
  align-items: flex-end;
}

.light {
  color: var(--color-grey-80);
}

.responsive-flex-row-medium {
  display: flex;
  flex-direction: row;
  @media (max-width: 1200px) {
    flex-direction: column;
  }
}

.responsive-flex-row-small {
  display: flex;
  flex-direction: row;
  @media (max-width: 900px) {
    flex-direction: column;
  }
}
