.fields_LEAN {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--extra_small);
  gap: var(--base);
  width: calc(100% - calc(var(--extra_small) * 2));
  height: auto;
  border-radius: var(--extra_small);
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.fields_LEAN.textarea {
  height: calc(calc(var(--base) * 24) - calc(var(--extra_small) * 2));
}

.fields_LEAN .labels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  padding: 0px;
  gap: var(--base);
  width: calc(100% - 0px);
  height: auto;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.fields_LEAN .labels .name {
  width: auto;
  max-width: calc(100% - 0px);
  height: auto;
  min-height: 0.75rem;
  font-family: var(--family_texts);
  font-style: normal;
  font-weight: 300;
  font-size: 0.59375rem;
  line-height: 0.75rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--texts);
  flex: none;
  flex-grow: 0;
}

.fields_LEAN .labels .required {
  width: auto;
  height: 0.75rem;
  aspect-ratio: 1 / 1;
  font-size: 0.75rem;
  color: red;
}

.fields_LEAN .labels .info {
  width: auto;
  height: 0.75rem;
  aspect-ratio: 1 / 1;
  font-size: 0.75rem;
  color: var(--texts);
}

.fields_LEAN .input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: calc(100% - 0px);
  height: 1rem;
  background: transparent;
  border: none;
  font-family: var(--family_texts);
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--texts);
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

@media (min-width: 1760px) {
  .fields_LEAN .input {
    font-size: 0.91vw;
    line-height: 1.36vw;
  }
}

.fields_LEAN .input::placeholder {
  color: var(--placeholder);
}

.fields_LEAN.textarea .input {
  height: var(--maximum);
  resize: none;
}

