.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;
}

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

.search_btn::after {
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' strokeWidth='1.5' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    color: #000;
    float: right;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    position: relative;
    top: 4px;
}

.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: 10;
    width: 100%;
    max-height: 200px;
    overflow: auto;
}

.search_select li {
    padding: 5px 10px;
}


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

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

.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 {
    max-width: 35px;
}

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