/* TEXT-FIELDS */

/* Removes arrows from numeric inputs */
/* Chrome, Safari, Edge, Opera */
.text-field input::-webkit-outer-spin-button,
.text-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.text-field input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.text-field {
  position: relative;
  margin-bottom: 50px;
}

.text-field input {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--black);
  border-radius: 3px 3px 0 0;
  padding: 10px;
  padding-left: 5px;
  font-family: 'neue-haas-unica';
  font-size: 12px;
  color: var(--black);
  transition: background-color 150ms ease-in;
}

.text-field input[type='file'] {
  height: 39px;
}

.text-field input:focus {
  background-color: #e5e5e533;
  border-color: var(--blue-indigo);
  transition: background-color 150ms ease-in;
}

.text-field label {
  position: absolute;
  cursor: text;
  color: var(--text-disabled);
  font-family: 'neue-haas-unica';
  font-size: 12px;
  top: 10px;
  left: 5px;
  transition: top 150ms ease-in, left 150ms ease-in, color 150ms ease-in, font-size 150ms ease-in;
}

.text-field .label-focus {
  color: var(--blue-indigo);
  cursor: default;
  font-size: 10px;
  top: -16px;
  left: 2px;
  transition: top 150ms ease-in, left 150ms ease-in, color 150ms ease-in, font-size 150ms ease-in;
}

.text-field .label-active {
  color: var(--black);
  cursor: default;
  font-size: 10px;
  top: -16px;
  left: 2px;
  transition: top 150ms ease-in, left 150ms ease-in, color 150ms ease-in, font-size 150ms ease-in;
}

.text-field input:not(:focus)::placeholder {
  opacity: 0;
}

.text-field input[id^='claim-']:not(:focus)::placeholder {
  opacity: 1;
}

/* SELECT-FIELDS */

.select-field {
  position: relative;
  margin-bottom: 50px;
}

.select-appearance {
  appearance: auto !important;
  height: 39px;
  border: none;
  border-bottom: 1px solid var(--black) !important;
  border-radius: 3px 3px 0 0;
  box-shadow: unset;
  font-size: 12px;
  padding: 10px;
  padding-left: 5px;
  transition: border-color 150ms ease-in, background-color 150ms ease-in;
}

.select-appearance:focus {
  box-shadow: unset;
  border-color: var(--blue-indigo) !important;
  background-color: #e5e5e533;
  transition: border-color 150ms ease-in, background-color 150ms ease-in;
}

.select-field label {
  position: absolute;
  color: var(--text-disabled);
  font-family: 'neue-haas-unica';
  font-size: 12px;
  top: 10px;
  left: 10px;
  transition: top 150ms ease-in, left 150ms ease-in, color 150ms ease-in, font-size 150ms ease-in;
}

.select-field .label-focus {
  color: var(--blue-indigo) !important;
  cursor: default;
  font-size: 10px;
  top: -16px;
  left: 2px;
  transition: top 150ms ease-in, left 150ms ease-in, color 150ms ease-in, font-size 150ms ease-in;
}

.select-field .label-active {
  color: var(--black) !important;
  cursor: default;
  font-size: 10px;
  top: -16px;
  left: 2px;
  transition: top 150ms ease-in, left 150ms ease-in, color 150ms ease-in, font-size 150ms ease-in;
}

/* VALIDATION ERROR MESSAGE */

/* .text-field .error-message,
.select-field .error-message {
  display: none;
  width: 100%;
  font-family: "neue-haas-unica";
  font-size: 14px;
  font-weight: 500;
  background-color: var(--error-light);
  color: var(--error);
  padding: 7px 8px;
  border-radius: 0px 0px 3px 3px;
}

.text-field .error-message.active,
.select-field .error-message.active {
  display: block;
}

.text-field .input-validation-error {
  border-color: var(--error);
}

.select-field .input-validation-error {
  border-bottom: 2px solid var(--error) !important;
}

.text-field .helper-text {
  position: absolute;
  color: var(--text-grey-light);
  font-size: 14px;
  font-family: "neue-haas-unica";
  left: 10px;
  bottom: -21px;
} */

.alert-success {
  padding-right: 32px;
}

.alert-success .btn-close {
  position: absolute;
  top: 7px;
  right: 7px;
}
