.listSelect {
    position: relative;
    display: inline-block;
    width: 200px;
}

.lS_main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dropdown-toggle {
    width: 100%;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent; /* Left side of the arrow */
    border-right: 5px solid transparent; /* Right side of the arrow */
    border-top: 5px solid #333; /* Top side of the arrow (colored part) */
    margin-left: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    margin: 0;
    z-index: 1000;
    max-height: 300px;
}

.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
}

.dropdown-menu li:hover {
    background-color: #f8f9fa;
}

.dropdown-menu.show {
    display: block;
}

.listSelect .dropdown-menu.show {
    width: 100%;
    overflow: hidden;
}

.lS_overflow_min_h {
    min-height: 24px;
    text-overflow: ellipsis;
}

.lS_searchbox input {
    width:100%;
}

.lS_ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lS_ul_c {
    position: relative;
}

.lS_ul_scroll {
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1 1 auto;
}

.lS_ul li {
    user-select: none;
    font-size: 13px;
    padding: 5px;
    margin-top: 5px;
}

.lS_ul li:last-child {
    margin-bottom: 0 !important;
}

.lS_ul li:hover,
.lS_ul li.scrlSelect {
    background: #eeeeee;
    border-radius: 5px;
}

.filter_page {
    display: inline-block;
    margin-right: 10px;
}

.filter_page .dropdown-toggle {
    padding: 6px;
}