.entityPickerContainer
{
    display:flex;
    flex-direction: column;
}
.entityPickerInputContainer
{
    display:flex;
}
.entityPickerMagIcon
{
    border: 1px solid black;
    padding: 0.5rem;
}
.entityPickerOptionList
{
    display:none;
    flex-direction: column;
    border-left:1px solid #BBBBBB;
    border-bottom:1px solid #BBBBBB;
    border-right:1px solid #BBBBBB;
    overflow-y: auto;
    max-height: 400px;
}
.entityChoiceItem
{
    background-color: #EEEEEE;
    border: 1px solid #EEEEEE;
    border-top:1px solid #BBBBBB;
    padding:1rem;
    cursor: pointer;
}
.entityChoiceItem:hover
{
    background-color: #90caf9ff;
}
.entityChoiceItemSelected
{
    border: 1px solid #0d47a1ff;
}
.entityPickerSearchContainer
{
    position:relative;
}
.entityPickerOptionOptionListContainer
{
    position:absolute;
    left:0;
    top:0;
    z-index: 99;
}