:root {
  --height-input--40:40px;
  --height-input--56:56px ;
}

.text-field-with-button .label-container:has(input:not(:focus)) + .button {
  background: rgb(var(--color-on-surface--rgb)/0.7);
}
.text-field-with-button .label-container:has(input:invalid) + .button {
  cursor: not-allowed;
}
.text-field-with-button .text-field.outlined input {
  border-radius: var(--shape-corner-extra-small-default-size) 0 0 var(--shape-corner-extra-small-default-size);
}
.text-field-with-button .text-field.outlined input + span::after {
  border-radius: 0;
  border-right: 0;
}
.text-field-with-button .button {
  min-height: 50px;
  border-radius: 0 var(--shape-corner-extra-small-default-size) var(--shape-corner-extra-small-default-size) 0;
}
.text-field-with-button .button:hover {
  box-shadow: none;
}

.input-search--container {
  position: relative;
  min-width: 180px;
  flex: 1;
}
.input-search--container .lst {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 16px 16px;
  padding: 8px 0;
  transition: background-color 0.2s ease 0s;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
}
.input-search--container .lst p.body-small {
  font-size: 14px;
  padding: 12px 16px;
}
.input-search--container .lst .lst-filtered--item {
  font-size: 14px;
  padding: 12px 16px;
  cursor: pointer;
  position: relative;
  list-style-type: none;
}
.input-search--container .lst .lst-filtered--item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
.input-search--container .lst .lst-filtered--item:hover:before {
  opacity: 8%;
  background: rgb(var(--color-on-background--rgb)/0.64);
}
.input-search--container .lst .lst-filtered--item:focus {
  background: rgba(0, 0, 0, 0.1333333333);
}
.input-search--container .lst > .lst-action {
  text-align: center;
  padding: 16px;
  cursor: pointer;
}
.input-search--container .lst:not(.opened) {
  display: none;
}
.input-search--container .lst-filtered {
  overflow-y: auto;
  max-height: 180px;
}

.lst-filtered > div:hover, .lst > .lst-action:hover {
  color: rgb(55, 95, 196);
}

:is(.text-field) {
  display: flex;
  position: relative;
}
:is(.text-field).has-input.small {
  height: 40px;
  min-height: 40px;
  max-height: 40px;
}
:is(.text-field).has-input.medium {
  height: 56px;
  min-height: 56px;
  max-height: 56px;
}
:is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > :where(input, textarea) {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  box-shadow: none;
  border-image: initial;
  font-family: inherit;
  font-weight: var(--typescale-body-small-font-weight);
  font-size: 16px;
  letter-spacing: var(--typescale-body-small-letter-spacing);
  text-align: start;
  line-height: var(--typescale-body-small-line-height);
  color: var(--color-on-background);
  caret-color: var(--comp-text-field-caret-color);
}
:is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > :where(input, textarea) + span {
  font-weight: var(--typescale-body-medium-font-weight);
  font-size: 16px;
  letter-spacing: var(--typescale-body-medium-letter-spacing);
  cursor: text;
  user-select: none;
}
:is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > :where(input, textarea):focus + span, :is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > :where(input, textarea):not(:placeholder-shown) + span {
  font-weight: var(--typescale-label-small-font-weight);
  font-size: 12px;
  letter-spacing: var(--typescale-label-small-letter-spacing);
}
:is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > :where(input, textarea)::placeholder {
  color: transparent;
}
:is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > :where(input, textarea):focus-visible {
  outline: none;
}
:is(.text-field) > input[disabled=disabled] {
  background-color: rgb(var(--color-outline--rgb)/0.1);
  border-color: rgb(var(--color-outline--rgb)/0.8);
  color: rgb(var(--color-outline--rgb)/0.8);
  cursor: not-allowed !important;
}
:is(.text-field) > input[disabled=disabled] + span {
  color: rgb(var(--color-outline--rgb)/0.8);
  cursor: not-allowed !important;
}
:is(.text-field):where(.basic, .color, .filled, .outlined, .basic-outlined) > input:-webkit-autofill {
  box-shadow: 0 0 0 50px var(--color-secondary-container) inset;
  -webkit-box-shadow: 0 0 0 50px var(--color-secondary-container) inset;
  border-top: none;
  align-content: normal;
  border-color: var(--color-outline);
}
:is(.text-field).icon > input {
  padding: 0 16px;
}
:is(.text-field).icon > input:not(:placeholder-shown) ~ .icon-secondary[data-action=cancel] {
  display: block;
}
:is(.text-field).icon .icon-primary, :is(.text-field).icon .icon-secondary {
  position: absolute;
  fill: var(--color-on-surface);
  cursor: pointer;
}
:is(.text-field).icon .icon-primary {
  left: 0;
  margin-left: 16px;
}
:is(.text-field).icon .icon-secondary {
  right: 0;
  margin-right: 16px;
}
:is(.text-field).icon .icon-secondary[data-action=cancel] {
  display: none;
}
:is(.text-field):not(.icon).has-input:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: none;
  right: 0;
  margin-right: 16px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'><path d='M480-290.77q13.731 0 23.019-9.288 9.288-9.289 9.288-23.019 0-13.731-9.288-23.019-9.288-9.288-23.019-9.288-13.731 0-23.019 9.288-9.288 9.288-9.288 23.019 0 13.73 9.288 23.019 9.288 9.288 23.019 9.288Zm-29.999-146.153h59.998v-240h-59.998v240Zm30.066 336.922q-78.836 0-148.204-29.92-69.369-29.92-120.682-81.21-51.314-51.291-81.247-120.629-29.933-69.337-29.933-148.173t29.92-148.204q29.92-69.369 81.21-120.682 51.291-51.314 120.629-81.247 69.337-29.933 148.173-29.933t148.204 29.92q69.369 29.92 120.682 81.21 51.314 51.291 81.247 120.629 29.933 69.337 29.933 148.173t-29.92 148.204q-29.92 69.369-81.21 120.682-51.291 51.314-120.629 81.247-69.337 29.933-148.173 29.933Z' fill='%23ba1a1a'/></svg>");
  background-repeat: no-repeat;
}
:is(.text-field):not(.icon).has-input.outlined:after {
  bottom: 13px;
}
:is(.text-field):not(.icon).has-input:where(.filled, .basic-outlined):after {
  bottom: 16px;
}
:is(.text-field):not(.icon).has-input:has(input:invalid:not(:placeholder-shown)) input {
  padding-right: 56px;
}
:is(.text-field):not(.icon).has-input:has(input:invalid:not(:placeholder-shown))::after {
  display: block;
}
:is(.text-field):not(.icon) > input {
  padding: 0 16px;
  min-width: 78px;
}
:is(.text-field).basic > :where(input, textarea) {
  border-radius: var(--shape-corner-extra-small-default-size);
  border: 1px solid rgb(var(--color-on-surface--rgb)/0.7);
  background: var(--color-background);
  color: var(--color-on-background);
}
:is(.text-field).basic > :where(input, textarea):focus {
  border-color: var(--color-primary);
  box-shadow: inset 1px 1px, inset -1px -1px var(--color-primary);
}
:is(.text-field).basic > :where(input, textarea):focus::placeholder {
  color: var(--color-primary);
}
:is(.text-field).basic > :where(input, textarea):focus:not(:placeholder-shown):not(:-webkit-autofill):invalid {
  box-shadow: inset 1px 1px, inset -1px -1px var(--color-error);
}
:is(.text-field).basic > :where(input, textarea):not(:placeholder-shown):not(:-webkit-autofill):invalid {
  border-color: var(--color-error);
}
:is(.text-field).basic > :where(input, textarea)::placeholder {
  color: rgb(var(--color-on-surface--rgb)/0.87);
}
:is(.text-field).basic > :where(input, textarea) + span {
  display: none;
}
:is(.text-field).basic.icon .icon-primary, :is(.text-field).basic.icon .icon-secondary {
  bottom: 16px;
}
:is(.text-field).color {
  flex-direction: column-reverse;
  cursor: pointer;
}
:is(.text-field).color input {
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--color-primary);
  border-radius: 8px;
}
:is(.text-field).color input::-webkit-color-swatch-wrapper {
  padding: 0;
  border: 0;
}
:is(.text-field).color input::-webkit-color-swatch {
  border: 0;
  cursor: pointer;
}
:is(.text-field).color span {
  padding-left: 16px;
  padding-bottom: 3px;
  color: var(--color-on-background);
  cursor: pointer;
  background: var(--color-background);
}
:is(.text-field).basic-outlined {
  border: 1px solid rgb(var(--color-on-surface--rgb)/0.7);
  border-radius: var(--shape-corner-extra-small-default-size);
  background-color: transparent;
  overflow: hidden;
}
:is(.text-field).basic-outlined:has(input:focus) {
  border-color: var(--color-primary);
  box-shadow: inset 1px 1px, inset -1px -1px var(--color-primary);
}
:is(.text-field).basic-outlined input {
  background-color: transparent;
}
:is(.text-field).basic-outlined input:focus, :is(.text-field).basic-outlined input:not(:placeholder-shown) {
  border-top: 18px solid transparent;
}
:is(.text-field).basic-outlined:has(input:focus:not(:placeholder-shown):not(:-webkit-autofill):invalid) {
  box-shadow: inset 1px 1px, inset -1px -1px var(--color-error);
}
:is(.text-field).basic-outlined:has(input:not(:placeholder-shown):not(:-webkit-autofill):invalid) {
  border-color: var(--color-error);
}
:is(.text-field).basic-outlined:has(input:not(:placeholder-shown):not(:-webkit-autofill):invalid) + span {
  color: var(--color-error);
}
:is(.text-field):where(.filled, .basic-outlined) > :where(input, textarea) {
  display: flex;
  padding: 8px 16px;
}
:is(.text-field):where(.filled, .basic-outlined) > :where(input, textarea) + span {
  position: absolute;
  box-sizing: border-box;
  padding: 8px 16px;
  display: flex;
  pointer-events: none;
  inset: 0;
  color: rgb(var(--color-on-surface--rgb)/0.7);
  transition: color 0.2s ease 0s, font-size 0.2s ease 0s, line-height 0.2s ease 0s;
}
:is(.text-field):where(.filled, .basic-outlined) > :where(input, textarea):focus + span {
  color: var(--color-primary);
}
:is(.text-field):where(.filled, .basic-outlined) > input:not(:focus):placeholder-shown + span {
  align-items: center;
}
:is(.text-field):where(.filled, .basic-outlined).icon .icon-primary + input {
  padding-left: 48px;
}
:is(.text-field):where(.filled, .basic-outlined).icon .icon-primary + input:focus + span, :is(.text-field):where(.filled, .basic-outlined).icon .icon-primary + input:not(:placeholder-shown) + span {
  padding-left: 48px;
}
:is(.text-field):where(.filled, .basic-outlined).icon .icon-primary + input:not(:focus):placeholder-shown + span {
  margin-left: 36px;
}
:is(.text-field):where(.filled, .basic-outlined).icon:has(.icon-secondary) > input {
  padding-right: 48px;
}
:is(.text-field):where(.filled, .basic-outlined).icon:has(.icon-secondary) > input:not(:focus):placeholder-shown + span {
  margin-right: 36px;
}
:is(.text-field):where(.filled, .basic-outlined).icon.small .icon-primary, :is(.text-field):where(.filled, .basic-outlined).icon.small .icon-secondary {
  bottom: 8px;
}
:is(.text-field):where(.filled, .basic-outlined).icon .icon-primary, :is(.text-field):where(.filled, .basic-outlined).icon .icon-secondary {
  bottom: 16px;
}
:is(.text-field).filled > :where(input, textarea) {
  border-right: none;
  border-bottom: solid 1px rgb(var(--color-on-surface--rgb)/0.7);
  border-left: none;
  border-radius: var(--shape-corner-extra-small-default-size) var(--shape-corner-extra-small-default-size) 0 0;
  display: flex;
  padding: 8px 16px;
  background-color: rgb(var(--color-on-surface--rgb)/0.04);
  transition: border-bottom 0.2s ease 0s, background-color 0.2s ease 0s;
}
:is(.text-field).filled > :where(input, textarea):hover {
  border-bottom-color: rgb(var(--color-on-surface--rgb)/0.87);
}
:is(.text-field).filled > :where(input, textarea):focus {
  border-bottom-color: var(--color-primary);
}
:is(.text-field).filled > :where(input, textarea):focus, :is(.text-field).filled > :where(input, textarea):focus:-webkit-autofill {
  box-shadow: inset 0 0, inset 0 0, inset 0 -1px var(--color-primary);
}
:is(.text-field).filled > :where(input, textarea):focus + span {
  color: var(--color-primary);
}
:is(.text-field).filled > input[disabled=disabled]:hover {
  border-color: rgb(var(--color-outline--rgb)/0.8);
}
:is(.text-field).filled > input:not(:focus):placeholder-shown + span {
  align-items: center;
}
:is(.text-field).filled > input:focus, :is(.text-field).filled > input:not(:placeholder-shown) {
  border-top: 18px solid transparent;
}
:is(.text-field).filled > input:-webkit-autofill {
  border-top-color: var(--color-secondary-container);
}
:is(.text-field).filled > input:focus:not(:placeholder-shown):not(:-webkit-autofill):invalid {
  box-shadow: inset 0 0, inset 0 0, inset 0 -1px var(--color-error);
}
:is(.text-field).filled > input:focus:-webkit-autofill {
  border-top-color: transparent;
}
:is(.text-field).filled > input:not(:placeholder-shown):not(:-webkit-autofill):invalid {
  border-bottom-color: var(--color-error);
}
:is(.text-field).filled > input:not(:placeholder-shown):not(:-webkit-autofill):invalid + span {
  color: var(--color-error);
}
:is(.text-field).filled > textarea {
  border-top: 30px solid transparent;
  padding-top: 4px;
  min-height: 124px;
}
:is(.text-field).filled > textarea + span {
  padding: 16px;
}
:is(.text-field).outlined {
  padding-top: 6px;
}
:is(.text-field).outlined:not(.icon) > :where(input, textarea):not(:focus):placeholder-shown + span {
  margin-left: 16px;
}
:is(.text-field).outlined > :where(input, textarea) {
  border: 1px solid rgb(var(--color-on-surface--rgb)/0.7);
  border-radius: var(--shape-corner-extra-small-default-size);
  background-color: transparent;
}
:is(.text-field).outlined > :where(input, textarea) + span {
  position: absolute;
  display: flex;
  border-color: rgb(var(--color-on-surface--rgb)/0.7);
  color: rgb(var(--color-on-surface--rgb)/0.7);
  transition: color 0.2s ease 0s, font-size 0.2s ease 0s, line-height 0.2s ease 0s !important;
}
:is(.text-field).outlined > :where(input, textarea) + span::before, :is(.text-field).outlined > :where(input, textarea) + span::after {
  content: "";
  display: none;
  min-width: 12px;
  height: 8px;
  margin-top: 6px;
  pointer-events: none;
  box-sizing: border-box;
  border-top: 1px solid;
  box-shadow: transparent 0 1px inset;
  transition: box-shadow 0.2s ease 0s;
}
:is(.text-field).outlined > :where(input, textarea) + span::before {
  margin-right: 4px;
  border-left: 1px solid transparent;
  border-radius: var(--shape-corner-extra-small-default-size) 0;
}
:is(.text-field).outlined > :where(input, textarea) + span::after {
  flex: 1;
  margin-left: 4px;
  border-right: 1px solid transparent;
  border-radius: 0 var(--shape-corner-extra-small-default-size);
}
:is(.text-field).outlined > :where(input, textarea):focus {
  border-color: var(--color-primary);
}
:is(.text-field).outlined > :where(input, textarea):focus, :is(.text-field).outlined > :where(input, textarea):focus:-webkit-autofill {
  box-shadow: inset 1px 0 var(--color-primary), inset -1px 0 var(--color-primary), inset 0 -1px var(--color-primary);
}
:is(.text-field).outlined > :where(input, textarea):focus + span {
  color: var(--color-primary);
}
:is(.text-field).outlined > :where(input, textarea):focus, :is(.text-field).outlined > :where(input, textarea):not(:placeholder-shown) {
  border-top-color: transparent;
}
:is(.text-field).outlined > :where(input, textarea):focus + span, :is(.text-field).outlined > :where(input, textarea):not(:placeholder-shown) + span {
  top: 0;
  width: 100%;
}
:is(.text-field).outlined > :where(input, textarea):focus + span::before, :is(.text-field).outlined > :where(input, textarea):focus + span::after, :is(.text-field).outlined > :where(input, textarea):not(:placeholder-shown) + span::before, :is(.text-field).outlined > :where(input, textarea):not(:placeholder-shown) + span::after {
  display: block;
}
:is(.text-field).outlined > :where(input, textarea):not(:-webkit-autofill) {
  transition: box-shadow 0.2s ease 0s;
}
:is(.text-field).outlined > input + span {
  align-self: center;
}
:is(.text-field).outlined > input:focus + span::before, :is(.text-field).outlined > input:focus + span::after {
  box-shadow: inset 0 1px var(--color-primary);
}
:is(.text-field).outlined > input:focus:not(:placeholder-shown):not(:-webkit-autofill):invalid {
  box-shadow: inset 1px 0 var(--color-error), inset -1px 0 var(--color-error), inset 0 -1px var(--color-error);
}
:is(.text-field).outlined > input:focus:not(:placeholder-shown):not(:-webkit-autofill):invalid + span::before, :is(.text-field).outlined > input:focus:not(:placeholder-shown):not(:-webkit-autofill):invalid + span::after {
  box-shadow: inset 0 1px var(--color-error), inset 0 1px var(--color-error);
}
:is(.text-field).outlined > input:not(:placeholder-shown):not(:-webkit-autofill):invalid {
  border-color: var(--color-error);
  border-top-color: transparent;
}
:is(.text-field).outlined > input:not(:placeholder-shown):not(:-webkit-autofill):invalid + span {
  color: var(--color-error);
}
:is(.text-field).outlined > input:not(:placeholder-shown):not(:-webkit-autofill):invalid + span::before, :is(.text-field).outlined > input:not(:placeholder-shown):not(:-webkit-autofill):invalid + span::after {
  border-color: var(--color-error);
}
:is(.text-field).outlined > textarea {
  min-height: 118px;
  padding: 12px 16px;
}
:is(.text-field).outlined > textarea + span::before {
  border-left-color: rgb(var(--color-on-surface--rgb)/0.6);
}
:is(.text-field).outlined > textarea + span::after {
  border-right-color: rgb(var(--color-on-surface--rgb)/0.6);
}
:is(.text-field).outlined > textarea:not(:focus):placeholder-shown + span {
  padding-top: 1.25rem;
}
:is(.text-field).outlined > textarea:focus + span::before {
  box-shadow: inset 1px 1px var(--color-primary);
  border-left-color: var(--color-primary);
}
:is(.text-field).outlined > textarea:focus + span::after {
  box-shadow: inset -1px 1px var(--color-primary);
  border-right-color: var(--color-primary);
}
:is(.text-field).outlined > textarea:not(:placeholder-shown) {
  border-top-width: 8px;
  padding-top: 8px;
}
:is(.text-field).outlined.icon .icon-primary + input {
  padding-left: 48px;
}
:is(.text-field).outlined.icon .icon-primary + input:not(:focus):placeholder-shown + span {
  margin-left: 48px;
}
:is(.text-field).outlined.icon:has(.icon-secondary) > input {
  padding-right: 48px;
}
:is(.text-field).outlined.icon:has(.icon-secondary) > input:not(:focus):placeholder-shown + span {
  margin-right: 48px;
}
:is(.text-field).outlined.icon > input:not(:focus):placeholder-shown + span {
  margin-left: 16px;
}
:is(.text-field).outlined.icon.small .icon-primary, :is(.text-field).outlined.icon.small .icon-secondary {
  bottom: 5px;
}
:is(.text-field).outlined.icon .icon-primary, :is(.text-field).outlined.icon .icon-secondary {
  bottom: 13px;
}
:is(.text-field).date .calendar {
  z-index: 20;
}

.label-container:has(.text-field.color) {
  max-width: 180px;
}

/*# sourceMappingURL=input.css.map */
