.ffl-wrapper {
  position: relative;
  display: block;
  padding-top: 1rem;
}

.ffl-wrapper .ffl-label {
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  position: absolute;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  top: 1.25rem;
}

.ffl-wrapper.ffl-floated .ffl-label {
  top: 0;
}

.ffl-label {
  font-size: 15px;
  color: #7F7F7F;
  line-height: 1.2;
}

.ffl-floated .ffl-label {
  color: #000;
  font-size: 0.85rem;
}

.ffl-input, .ffl-area, .ffl-select {
  transition: border-bottom 100ms ease;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border-style: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  height: 1.875rem;
  font-size: 15px;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.ffl-input:hover, .ffl-area:hover, .ffl-select:hover {
  border-bottom-width: 1px;
  border-bottom-color: #7F7F7F;
}

.ffl-input:focus, .ffl-area:focus, .ffl-select:focus {
  border-bottom-width: 1px;
  border-bottom-color: #000;
}