body {
  /* Typography */
  /* font-family: 'Neue Haas Unica', 'Noto Sans', sans-serif; */
  font-family: 'Satoshi-Variable', 'Noto Sans', sans-serif;
}

h1 {
  /* Typography */
  font-weight: 400;
}

/* INPUTS */
.input-label-combo {
  /* Variables */
  --input-height:             48px;
  --input-vertical-padding:   14px;
  --input-horizontal-padding: 16px;
  --input-vertical-margin:    16px;
  --font-size:                16px;
  --line-height:              20px;
  /* Positioning */
  position: relative;
  /* Creating positioning context */
  /* Box Model */
  margin: var(--input-vertical-margin) 0 0;
}

.input-label-combo:first-child {
  /* Box Model */
  margin-top: 0;
}

input {
  /* Variables */
  /* Box Model */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: var(--input-vertical-padding) var(--input-horizontal-padding);
  /* Typography */
  font-size: var(--font-size);
  line-height: var(--line-height);
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Other */
  background-color: white;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 1px #BDBDBD;
          box-shadow: 0 0 0 1px #BDBDBD;
  outline: none;
}

label.is--placeholder {
  /* Other */
  cursor: text;
}

.input-label-combo label.is--placeholder {
  /* Variables */
  /* Typography */
  color: #757575;
  font-size: var(--font-size);
  line-height: var(--line-height);
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Positioning */
  position: absolute;
  top: var(--input-vertical-padding);
  left: var(--input-horizontal-padding);
}

.input-label-combo input:focus + label.is--placeholder,
.input-label-combo input.tiene-valor + label.is--placeholder {
  /* Variables */
  /* Box Model */
  padding: 0 3px;
  /* Positioning */
  top: calc( ( 16px / 2 ) * -1);
  /* Typography */
  font-size: 12px;
  line-height: 16px;
  /* Other */
  background-image: linear-gradient(to top, white, white calc( ( 16px / 2 ) + 1px), rgba(0, 0, 0, 0) calc( ( 16px / 2 ) + 1px), rgba(0, 0, 0, 0) 16px);
}

.visibility-control {
  /* Variables */
  content: '';
  /* Box Model */
  height: 24px;
  width: 24px;
  /* Positioning */
  position: absolute;
  top: calc( ( var(--input-height) - 24px ) / 2);
  right: calc( var(--input-horizontal-padding) / 2);
  /* Other */
  background-image: url("/assets/icon--eye.svg");
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  outline: none;
}

.feedback--positive,
.feedback--warning {
  /* Variables */
  /* Box Model */
  padding: 0;
  margin: calc( 16px / 4) 0 0;
  /* Typography */
  font-size: 12px;
  line-height: 16px;
}

.input-label-combo .feedback--positive,
.input-label-combo .feedback--warning {
  /* Positioning */
  position: relative;
  left: var(--input-horizontal-padding);
}

.feedback--positive::before,
.feedback--warning::before {
  /* Variables */
  content: '';
  /* Box Model */
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: calc( 16px / 2.6);
  /* Positioning */
  position: relative;
  top: calc( 16px / 4);
  /* Other */
  background-image: url("/assets/icon--info-warning.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.feedback--positive {
  /* Typography */
  color: #00973C;
}

.feedback--positive::before {
  /* Other */
  background-image: url("/assets/icon--check-circle.svg");
}

.feedback--warning {
  /* Typography */
  color: #FF6042;
}

.feedback--warning::before {
  /* Other */
  background-image: url("/assets/icon--info-warning.svg");
}
/*# sourceMappingURL=elements.css.map */