/*
  general
*/

/* general
============================================================================ */
.bg-labels {
  background-color: var(--pos-color-page-background);
}

.labels-container {
  display: flex;
  max-width: 1440px;
  padding: var(--pos-gap-section-section, 240px) var(--pos-gap-page-content-x-margin, 40px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--pos-gap-section-elements, 40px);
  align-self: stretch;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.label-rows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  gap: 24px;
  /* align-self: stretch; */
  flex-wrap: wrap;
}

.label-groups {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.checkmark-item {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background-color: var(--pos-color-panel-background);
}

.checkmark-item p {
  color: var(--pos-color-normal, #374151);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .labels-container {
    align-items: flex-start;
    overflow-x: scroll;
  }
}

@media (max-width: 640px) {
  .label-groups, .label-rows {
    flex-wrap: nowrap;
  }
}
