.search_select {
    display: block;
    width: 100%;
    position: relative;
    font-size: 14px;
    cursor: pointer;
}

.search_btn {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    padding: 4px 10px;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.error {
    width: 100%;
    border: 1px solid var(--red) !important;
    padding: 4px 10px;
    border-radius: 5px;
    position: relative;
}

.search_btn::after {
    content: '\25BC';
    color: inherit;
    font-size: 12px;
    float: right;
    width: 15px;
    height: 15px;
    font-weight: 500;
    display: flex;
    position: relative;
    justify-content: center;
}

.search_select ul {
    position: absolute;
    margin-top: 8px;
    margin-bottom: 0;
    background-color: #fff;
    box-shadow: 0 0 1px 1px #00000044;
    border-radius: 5px;
    padding: 0;
    list-style: none;
    z-index: 9999999;
    width: 100%;
    max-height: 200px;
    overflow: auto;
}

.search_select li {
    padding: 5px 10px;
    text-align: left;
}


.search_select li svg {
    margin-right: 5px;
    font-size: 16px;
}

.search_select li.selected {
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search_select li:hover {
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
}

.select_search {
    padding: 7px 10px 5px 10px;
}

.select_search input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #00000028;
    height: 30px;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.noData {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    color: var(--secondary-text);
}

.loader svg {
    width: 20px;
    height: 20px;
}

.disabled .search_btn::after {
    content: none !important;
}

.disabled .search_btn {
    color: #cccccc !important;
}