.form-control.floating-control {
  display: block;
  width: 100%;
  height: auto;
  min-height: 40px;
  padding-left: 10px;
}

.floating-label {
  font-size: 16px;
  font-weight: 400 !important;
  color: #475F7B;
  opacity: 1;
  top: 8px;
  left: 20px;
  pointer-events: none;
  position: absolute;
  transition: 240ms;
  margin-bottom: 0;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 40px);
}

.floating-diff .floating-label {
  opacity: 0;
}

.floating-diff.focused .floating-label {
  opacity: 1;
}

.form-group.focused .floating-label {
  width: fit-content;
  background-color: white;
  padding: 0px 5px;
  opacity: 1;
  color: #7b7f82;
  top: -10px;
  left: 19px;
  font-size: 12px;
}
