.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_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;
    max-height: 35px;
}

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

.selected_data {
    padding: 5px 10px;
    margin: 3px 3px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    width: auto;
    display: inline-block;
}

.selected_data p {
    margin: 0;
}

.selected_data_section {
    display: block;
}

.selected_data_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.selected_data_item svg {
    padding: 3px 5px;
}