.dbc-flex {
  display: flex;
}

.dbc-inline-flex {
  display: inline-flex;
}

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

.dbc-flex-wrap {
  flex-wrap: wrap;
}
.dbc-flex-nowrap {
  flex-wrap: nowrap;
}

.dbc-justify-start {
  justify-content: flex-start;
}
.dbc-justify-center {
  justify-content: center;
}
.dbc-justify-end {
  justify-content: flex-end;
}
.dbc-justify-between {
  justify-content: space-between;
}
.dbc-justify-around {
  justify-content: space-around;
}
.dbc-justify-evenly {
  justify-content: space-evenly;
}

.dbc-items-start {
  align-items: flex-start;
}
.dbc-items-center {
  align-items: center;
}
.dbc-items-end {
  align-items: flex-end;
}
.dbc-items-stretch {
  align-items: stretch;
}

.dbc-self-start {
  align-self: flex-start;
}
.dbc-self-center {
  align-self: center;
}
.dbc-self-end {
  align-self: flex-end;
}
.dbc-self-stretch {
  align-self: stretch;
}

.dbc-gap-xxs {
  gap: var(--spacing-xxs);
}
.dbc-gap-xs {
  gap: var(--spacing-xs);
}
.dbc-gap-sm {
  gap: var(--spacing-sm);
}
.dbc-gap-md {
  gap: var(--spacing-md);
}
.dbc-gap-lg {
  gap: var(--spacing-lg);
}
.dbc-gap-xl {
  gap: var(--spacing-xl);
}

.dbc-gap-2xl {
  gap: var(--spacing-2xl);
}

.dbc-gap-3xl {
  gap: var(--spacing-3xl);
}

.dbc-gap-4xl {
  gap: var(--spacing-4xl);
}

.dbc-flex-grow {
  flex-grow: 1;
}
.dbc-flex-shrink {
  flex-shrink: 1;
}
.dbc-flex-none {
  flex: none;
}

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