.eqlpo-fields {
  margin: 16px 0;
  display: grid;
  gap: 16px;
  max-width: 100%;
}

.eqlpo-group {
  background: #fafafafa;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 20px 24px;
  max-width: 100%;
  overflow: hidden;
}

.eqlpo-group__layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.eqlpo-group__header {
  display: grid;
  gap: 8px;
  align-content: start;
}

.eqlpo-group__title {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
}

.eqlpo-group__content {
  min-width: 0;
}

.eqlpo-required {
  color: #b42318;
}

.eqlpo-description {
  margin: 0;
  color: #4a4a4a;
}

.eqlpo-choices {
  display: grid;
  gap: 14px;
}

.eqlpo-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  column-gap: 6px;
  margin: 0;
}

.eqlpo-choice input[type="checkbox"] {
  margin-top: 4px;
  align-self: start;
}

.eqlpo-choice__label {
  display: block;
  line-height: 1.25;
}

.eqlpo-dropdown-group {
  max-width: 100%;
}

.eqlpo-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1025px) {
  .eqlpo-group__layout {
    grid-template-columns: minmax(120px, 25%) minmax(0, 1fr);
    column-gap: 16px;
  }
}

@media (max-width: 1024px) {
  .eqlpo-group {
    padding: 16px;
  }
}
