.placeholderRow{
    height:20px;
  }

  .userInputLabel {
    font-family: sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-right: 5px;
}

.userInput {
    height: 44px;
    border: 1px solid #e4e4e4;
    padding-left: 10px;
    background-color: var(----bodyColor);
}

.userInputValue {
    line-height: 40px;
    color: var(--bodyTextColor);
    font-size: 13px;
    flex: 1;
    width: 20px;
    font-family: var(--defaultFont);
}

.userInputIconBox {
    width: 22px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--deselectedBtnColor);
    fill: var(--deselectedBtnColor);
    margin-right: 5px;
}

.userInputUserWindow {
    background-color: var(--white);
    position: absolute;
    width: 350px;
    display: flex;
    flex-direction: column;
    min-height: 75px;
    border: 1px solid #e4e4e4;
    max-height: 150px;
}

.userInputUserListSearch {
    margin: 10px;
    min-height: 40px;
}

.userInputUserListSearchIconBox {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 13px;
    top: 12px;
    display: flex;
    align-items: center;
    color: var(--deselectedBtnColor);
    cursor: pointer;
}

.userInputUserListSearchIcon {
    margin-left: auto;
    margin-right: auto;
}

.userInputUserList {
    display: flex;
    flex-direction: column;
}

.stateInputStateList {
    max-height: 150px;
    overflow-y: scroll;
}

.userInputUserListItem {
    height: 35px;
    cursor: pointer;
    background-color: var(--bodyColor);
    padding-left: 5px;
    padding-right: 5px;
    line-height: 35px;
    font-family: var(--defaultFont);
    font-size: 12px;
}

