.content {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column nowrap;
  gap: 12px;

  max-width: 1390px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-flow: row nowrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;

  span {
    color: var(--color-gray-888);
  }

  &.x-left {
    justify-content: flex-start;
  }

  &.x-right {
    justify-content: flex-end;
  }

  &.y-center {
    align-items: center;
  }
}

.info {
  color: var(--color-gray-888);
}
