.customDropDown {
    border: 1px solid #ccc;
    position: relative;
    box-sizing: border-box;
}

.customDropDown > :first-child {
    display: inline-block;
    border: none;
    width: calc(100% - 15px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customDropDown .list-item {
    padding: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customDropDown > .dropdown-container {
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    background-color: #fff;;
}

.customDropDown.active > .dropdown-container {
    height: fit-content;
    max-height: 200px;
    min-width: 100%;
    border: 1px solid #ccc;
    padding: 4px;
    white-space: nowrap;
}

/*.customDropDown .list-item:not(:last-child) {
    padding: 4px;
    border-bottom: 1px solid #ccc;
}*/

.customDropDown .list-item:hover, .customDropDown .list-item.selected {
    background-color: #00f;
    color: #fff;
}