.searchSelector {
  width: 100%;
  min-height: 25.5px;
  // max-height: 120px;
  // overflow: auto;

  .searchSelectorEntry {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;

    .plzSelect {
      color: rgba(51, 51, 51, 30%);
      font-size: 15px;
      font-weight: bold;
      line-height: 25.5px;
    }
  }

  .selectedItemWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    .selectedItem {
      font-size: 15px;
      line-height: 21px;
      font-weight: 500;
      margin-bottom: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 179px;

      &:last-of-type {
        margin-bottom: 0;
      }
    }
  }
}

.searchSelector::-webkit-scrollbar {
  display: none;
}

.searchSelectorModal {
  height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
  transition: 2s;

  .listWrapper {
    height: calc(65vh - 116px);
    overflow: auto;

    .loading {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }
  }
}
