:host {
  position: relative;
  box-sizing: border-box;
}
:host *, :host *::before, :host *::after {
  box-sizing: inherit;
}

/* stylelint-disable */ /**
* WARNING: Some spacing properties in this file weren't associated to a token
* on purpose. These values only serve the purpose of aligning icons and
* should not change if spacing token values change.
*/
:host {
  display: inline-block;
  width: 100%;
}

.text-field {
  /* ------------------------------------ *\
    # Size modifiers
  \* ------------------------------------ */
  /* ------------------------------------ *\
    # State modifiers
  \* ------------------------------------ */
  /* ------------------------------------ *\
    # Others
  \* ------------------------------------ */
}
.text-field__wrapper {
  position: relative;
}
.text-field__wrapper:hover .text-field__input {
  border: 1px solid #111111;
}
.text-field__wrapper:focus .text-field__input {
  border: 1px solid #111111;
  outline: none;
  box-shadow: 0 0 0 4px #dddfe4;
}
.text-field__label {
  display: inline-block;
  width: auto;
  margin-bottom: 6px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111111;
  text-align: left;
}
.text-field__input {
  width: 100%;
  padding: 12px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  background: #ffffff;
  border: 1px solid #dddfe4;
  border-radius: 8px;
  transition: border 250ms ease-in, box-shadow 250ms ease-in;
}
.text-field__input:hover {
  border: 1px solid #111111;
}
.text-field__input:focus {
  border: 1px solid #111111;
  outline: none;
  box-shadow: 0 0 0 4px #dddfe4;
}
.text-field__input::-moz-placeholder {
  font-size: 0.875rem;
  color: #babec9;
}
.text-field__input::placeholder {
  font-size: 0.875rem;
  color: #babec9;
}
.text-field__input[type=search]::-webkit-search-cancel-button {
  display: none;
}
.text-field__hint {
  display: inline-block;
  margin: 6px 0 0 4px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #636b7e;
  text-align: left;
}
.text-field__adornment {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: inherit;
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  color: #636b7e;
  transition: color 150ms ease-in;
}
.text-field__adornment--clickable {
  cursor: pointer;
}
.text-field__adornment--state {
  right: 12px;
}
.text-field__adornment--prefix {
  left: 12px;
}
.text-field__adornment--prefix ~ .text-field__input {
  padding-left: 40px;
}
.text-field__adornment--suffix {
  right: 12px;
}
.text-field__adornment--suffix ~ .text-field__input {
  padding-right: 40px;
}
.text-field__adornment--suffix ~ .text-field__adornment--state {
  right: 42px;
}
.text-field__adornment--suffix ~ .text-field__adornment--state ~ .text-field__input {
  padding-right: 72px;
}
.text-field--small .text-field__input {
  height: 40px;
  padding-left: 36px;
}
.text-field--medium .text-field__input {
  height: 40px;
}
.text-field--large .text-field__input {
  height: 48px;
}
.text-field--focus .text-field__input {
  background: #f4f4f5;
}
.text-field--focus .text-field__adornment {
  color: #111111;
}
.text-field--success .text-field__label {
  color: #1a7b41;
}
.text-field--success .text-field__input {
  padding-right: 40px;
  border: 1px solid #0ab15f;
}
.text-field--success .text-field__input:focus {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px #dff7f1;
}
.text-field--success .text-field__adornment {
  color: #111111;
}
.text-field--success .text-field__adornment--state {
  color: #1a7b41;
}
.text-field--error .text-field__label {
  color: #e72369;
}
.text-field--error .text-field__input {
  padding-right: 40px;
  border: 1px solid #e72369;
}
.text-field--error .text-field__input:focus {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px #ffd6d6;
}
.text-field--error .text-field__hint {
  color: #e72369;
}
.text-field--error .text-field__adornment {
  color: #111111;
}
.text-field--error .text-field__adornment--state {
  color: #e72369;
}
.text-field--disabled .text-field__label {
  color: #babec9;
}
.text-field--disabled .text-field__input:disabled {
  color: #babec9;
  cursor: not-allowed;
  background: #f4f4f5;
  border: 1px solid #dddfe4;
}
.text-field--disabled .text-field__adornment {
  color: #babec9;
  cursor: not-allowed;
}
.text-field--disabled .text-field__hint {
  color: #babec9;
}
.text-field--custom-icon .text-field__input {
  padding-left: 46px;
}