.text-input__loading--line {
  height: 10px;
  -webkit-animation: pulse 1s infinite ease-in-out;
          animation: pulse 1s infinite ease-in-out;
}
.text-input__loading div:nth-child(1) {
    width: 40px;
    margin-bottom: 4px;
}
.text-input__loading div:nth-child(2) {
    width: 150px;
    height: 16px;
    margin-bottom: 15px;
}
.text-input__loading div:nth-child(3) {
    width: 250px;
    height: 14px;
}
.text-input__loading div:nth-child(4) {
    width: 0px;
}
.text-input__loading div:nth-child(5) {
    width: 270px;
    height: 13px;
    margin-bottom: 20px;
}
.text-input__loading div:nth-child(6) {
    width: 230px;
    height: 13px;
    margin-bottom: 20px;
}
.text-input__loading div:nth-child(7) {
    width: 550px;
    height: 13px;
    margin-bottom: 20px;
}
.text-input__loading div:nth-child(8) {
    width: 450px;
    height: 13px;
}

@-webkit-keyframes pulse {
  0% {
    background-color: rgba(165, 165, 165, 0.1);
  }
  50% {
    background-color: rgba(165, 165, 165, 0.3);
  }
  100% {
    background-color: rgba(165, 165, 165, 0.1);
  }
}

@keyframes pulse {
  0% {
    background-color: rgba(165, 165, 165, 0.1);
  }
  50% {
    background-color: rgba(165, 165, 165, 0.3);
  }
  100% {
    background-color: rgba(165, 165, 165, 0.1);
  }
}